* {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
        font-family: 'Arial', sans-serif;
    }  
    .bg-hero-image {
        background-image: url('https://ethertechnology.tech/Media/screen.png');
        background-size: scale;
        background-position: center;
        position: absolute;
        inset-block-start: 0;
        inset-inline-start: 0;
        inline-size: 100%;
        block-size: 100%;
        z-index: -1;
        opacity: 1.0;
    }
    body {
      background-color: #0a0a0a;
      color: #ffffff;
      overflow-x: hidden;
      justify-content: center;
      align-items: center;     
    }

    /* Styles for the container */
    .container {
      max-inline-size: 800px;
      padding: 20px;
      background-color: rgba(0, 20, 0, 0.8);
      border-radius: 10px;
      box-shadow: 0 0 20px #0f0;
    }

    .container-sub {
      max-width: 1400px;
      margin: 0 auto;
    }

    .status-bar {
      background: rgba(31, 41, 55, 0.5);
      border: 1px solid rgba(52, 211, 153, 0.3);
      border-radius: 0.5rem;
      padding: 1.5rem;
      margin-bottom: 2rem;
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 1rem;
    }

    .status-info {
      display: flex;
      gap: 1rem;
      align-items: center;
      flex-wrap: wrap;
    }

    .tier-badge {
      padding: 0.5rem 1rem;
      border-radius: 0.5rem;
      font-weight: 600;
      font-size: 0.875rem;
    }

    .tier-free { background: #10b981; }
    .tier-professional { background: #3b82f6; }
    .tier-enterprise { background: #a855f7; }
    
    .api-response {
      background: rgba(31, 41, 55, 0.5);
      border: 1px solid rgba(52, 211, 153, 0.3);
      border-radius: 0.5rem;
      padding: 1.5rem;
      margin-bottom: 2rem;
      display: none;
    }

    .api-response.show {
        display: block;
    }

    .api-response pre {
        background: rgba(0, 0, 0, 0.5);
        padding: 1rem;
        border-radius: 0.5rem;
        color: #34d399;
        font-size: 0.875rem;
        overflow-x: auto;
        white-space: pre-wrap;
    }

    /* Styles for the tools grid */
    .tools-grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 1rem;
        margin-bottom: 2rem;
    }

    .tool-card {
        position: relative;
        background: rgba(31, 41, 55, 0.5);
        border: 2px solid;
        border-radius: 0.5rem;
        padding: 1rem;
        cursor: pointer;
        transition: all 0.3s;
    }

    .tool-card:hover {
        transform: scale(1.05);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    }

    .tool-card.tier-free-card {
        border-color: #10b981;
        background: rgba(16, 185, 129, 0.1);
    }

    .tool-card.tier-professional-card {
        border-color: #3b82f6;
        background: rgba(59, 130, 246, 0.1);
    }

    .tool-card.tier-enterprise-card {
        border-color: #a855f7;
        background: rgba(168, 85, 247, 0.1);
    }

    .tool-card.locked {
        opacity: 0.5;
        cursor: not-allowed;
    }

    .tool-badge {
        position: absolute;
        top: 0.5rem;
        left: 0.5rem;
        padding: 0.25rem 0.5rem;
        border-radius: 0.25rem;
        font-size: 0.625rem;
        font-weight: 600;
    }

    .lock-icon {
        position: absolute;
        top: 0.5rem;
        right: 0.5rem;
        color: #fbbf24;
    }

    .tool-content {
        margin-top: 2rem;
        text-align: center;
    }

    .tool-icon {
        width: 2rem;
        height: 2rem;
        margin: 0 auto 0.75rem;
    }

    .tool-name {
        font-weight: 600;
        margin-bottom: 0.25rem;
        font-size: 0.875rem;
    }

    .tool-category {
        font-size: 0.75rem;
        margin-bottom: 0.5rem;
    }

    .tool-description {
        font-size: 0.75rem;
        color: #9ca3af;
    }

    /* Styles for the stats grid */
    .stats-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 1.5rem;
        margin-bottom: 2rem;
    }

    .stat-card {
        background: rgba(31, 41, 55, 0.5);
        border: 1px solid;
        border-radius: 0.5rem;
        padding: 1.5rem;
        text-align: center;
    }

    .stat-value {
        font-size: 2.5rem;
        font-weight: bold;
        margin-bottom: 0.5rem;
    }

    .upgrade-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1.5rem;
        margin-top: 2rem;
    }

    .upgrade-card {
        border: 2px solid #4b5563;
        border-radius: 0.5rem;
        padding: 1.5rem;
    }

    .upgrade-card.active {
        border-color: #34d399;
        background: rgba(52, 211, 153, 0.1);
    }

    .price {
        font-size: 2.5rem;
        font-weight: bold;
        color: #34d399;
        margin: 1rem 0;
    }

        .features {
            list-style: none;
            margin: 1rem 0;
        }

        .features li {
            padding: 0.5rem 0;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .demo-controls {
            position: fixed;
            bottom: 1rem;
            right: 1rem;
            background: #1f2937;
            border: 1px solid rgba(52, 211, 153, 0.3);
            border-radius: 0.5rem;
            padding: 0.75rem;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
        }

        .demo-controls-title {
            font-size: 0.75rem;
            color: #9ca3af;
            margin-bottom: 0.5rem;
        }

        .demo-buttons {
            display: flex;
            gap: 0.5rem;
        }

        .demo-buttons button {
            padding: 0.25rem 0.5rem;
            font-size: 0.75rem;
        }

        .categories-legend {
            background: rgba(31, 41, 55, 0.5);
            border: 1px solid rgba(52, 211, 153, 0.3);
            border-radius: 0.5rem;
            padding: 1.5rem;
            margin-top: 2rem;
        }

        .categories-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
            gap: 1rem;
            margin-top: 1rem;
        }

        .category-item {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            font-size: 0.875rem;
        }

        .category-dot {
            width: 0.75rem;
            height: 0.75rem;
            border-radius: 50%;
        }

        @media (max-width: 768px) {
            .tools-grid {
                grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
            }

            .status-bar {
                flex-direction: column;
            }

            .button-group {
                flex-direction: column;
            }
        }

      
        /* Context Modal */
        .contextModal {
            display: none;
            position: fixed;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            background: linear-gradient(135deg, rgba(0, 20, 0, 0.98), rgba(0, 40, 0, 0.95));
            border: 2px solid var(--matrix-green);
            border-radius: 15px;
            box-shadow: 0 10px 40px rgba(0, 255, 65, 0.5), 0 0 80px rgba(0, 255, 65, 0.2);
            z-index: 1001;
            max-width: 600px;
            width: 90%;
            overflow: hidden;
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            animation: modalSlideIn 0.3s ease;
        }

        @keyframes modalSlideIn {
            from {
                opacity: 0;
                transform: translate(-50%, -45%);
            }
            to {
                opacity: 1;
                transform: translate(-50%, -50%);
            }
        }

        .contextModal.active {
            display: block;
        }

        .modal-header {
            background: rgba(0, 0, 0, 0.4);
            padding: 1rem 1.5rem;
            cursor: move;
            display: flex;
            justify-content: space-between;
            align-items: center;
            border-bottom: 1px solid rgba(0, 255, 65, 0.3);
            user-select: none;
            -webkit-user-select: none;
            -webkit-app-region: drag;
            -webkit-user-drag: auto;
        }

        .modal-header h2 {
            margin: 0;
            color: var(--matrix-green);
            text-transform: uppercase;
            font-size: 1.3rem;
            text-shadow: 0 0 10px rgba(0, 255, 65, 0.5);
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .modal-close-btn {
            background: none;
            border: none;
            color: var(--error);
            cursor: pointer;
            font-size: 1.5rem;
            padding: 0.25rem 0.5rem;
            transition: all 0.3s ease;
            border-radius: 5px;
            width: 35px;
            height: 35px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .modal-close-btn:hover {
            background: var(--error);
            color: white;
            transform: rotate(90deg);
        }

        .modal-body {
            padding: 2rem;
        }

        .modal-body p {
            margin: 0 0 1.5rem;
            color: var(--gray-300);
            line-height: 1.8;
            font-size: 1rem;
        }

        .modal-icon {
            font-size: 2.5rem;
            color: var(--matrix-green);
            text-align: center;
            margin-bottom: 1rem;
            animation: iconPulse 2s infinite;
        }

        @keyframes iconPulse {
            0%, 100% {
                opacity: 1;
                transform: scale(1);
            }
            50% {
                opacity: 0.7;
                transform: scale(1.05);
            }
        }

        .modal-footer {
            padding: 1rem 2rem;
            background: rgba(0, 0, 0, 0.3);
            border-top: 1px solid rgba(0, 255, 65, 0.3);
            display: flex;
            justify-content: flex-end;
            gap: 1rem;
        }

        .modal-footer button {
            background: var(--matrix-green);
            color: #000;
            padding: 0.75rem 2rem;
            border: none;
            border-radius: 8px;
            cursor: pointer;
            font-weight: bold;
            transition: all 0.3s ease;
            text-transform: uppercase;
            font-size: 0.9rem;
        }

        .modal-footer button:hover {
            background: var(--cyber-blue);
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(0, 255, 65, 0.4);
        }

        .modal-overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.85);
            z-index: 1000;
            backdrop-filter: blur(5px);
            -webkit-backdrop-filter: blur(5px);
            animation: fadeIn 0.3s ease;
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
            }
            to {
                opacity: 1;
            }
        }

        .modal-overlay.active {
            display: block;
        }

        /* Dragging cursor */
        .dragging {
            cursor: move !important;
        }

        .dragging * {
            cursor: move !important;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .control-panel {
                flex-direction: column;
            }

            .control-panel button {
                margin-block-end: 1rem;
            }
        }
    
    .loader {
      position: fixed;
      inline-size: 100vw;
      block-size: 100vh;
      background: #000000;
      display: flex;
      justify-content: center;
      align-items: center;
      z-index: 1000;
    }
    .loader-text {
      font-size: 2rem;
      color: #00ff00;
    }

    .logo {
      color: #00ff00;
      font-size: 1.5rem;
      font-weight: bold;
    }
    
    .navbar {
      position: fixed;
      inset-block-start: 0;
      inline-size: 100%;
      padding: 1rem 2rem;
      background: rgba(0, 0, 0, 0.8);
      backdrop-filter: blur(10px);
      -webkit-backdrop-filter: blur(10px);
      z-index: 100;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .nav-links {
      display: flex;
      gap: 2rem;
    }

    .nav-links a {
      color: #ffffff;
      text-decoration: none;
      transition: color 0.3s;
    }

    .nav-links a:hover {
      color: #00ff00;
    }

    .nav__list {
      list-style-type: none;
      margin: 0;
      padding: 0;
      display: flex;
      justify-content: center;
    }
    .nav__list li {
      margin: 0 15px;
    }
    .nav__list a {
      color: white;
      text-decoration: none;
    }
    .nav__list a:hover {
      text-decoration: underline;
    }
    .dropdown {
      position: relative;
      display: inline-block;
    }
    .dropdown__list {
      display: none;
      position: absolute;
      background-color: #333;
      padding: 10px;
      list-style-type: none;
      max-block-size: 200px;
      overflow-y: auto;
      z-index: 10000;
    }
    
    .dropdown:hover .dropdown__list {
      display: block;
    }
    
    .dropdown__list li {
      margin: 5px 0;
    }
    .dropdown__list a {
      color: white;
      text-decoration: none;
    }
    .dropdown__list a:hover {
      text-decoration: underline;
    }

    .hero {
      block-size: 100vh;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      position: relative;
      overflow: hidden;
    }

    .hero-container {
      max-inline-size: 1100px;
      margin: 0 auto;
      padding: 0 2rem;
    }

    .hero-content {
      z-index: 1;
    }

    .hero h1 {
      font-size: 4rem;
      margin-block-end: 1rem;
      opacity: 0;
    }

    .hero p {
      font-size: 1.5rem;
      margin-block-end: 2rem;
      opacity: 0;
    }

    .cta-button {
      padding: 1rem 2rem;
      background: #00ff00;
      color: #000000;
      border: none;
      border-radius: 5px;
      font-size: 1.2rem;
      cursor: pointer;
      transition: transform 0.3s;
      opacity: 0;
    }

    .cta-button:hover {
      transform: scale(1.1);
    }

    .services {
      padding: 5rem 2rem;
    }

    .offers {
      padding: 5rem 2rem;
    }

    .contact {
      padding: 5rem 2rem;
    }

    .contact-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .contact-content {
        grid-template-columns: 1fr 1fr;
    }
}

.contact-info h3 {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--matrix-green);
    margin-bottom: 1rem;
}

.contact-info p {
    color: var(--gray-300);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-method {
    color: var(--gray-300);
}

.contact-method strong {
    color: #ffffff;
}

/* Contact Form */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    color: #ffffff;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 5px;
    text-decoration-color: #ffffff;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--matrix-green);
    box-shadow: 0 0 0 2px rgba(0, 255, 65, 0.2);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--gray-400);
}

.submit-btn {
    margin-top: 1rem;
    padding: 1rem 2rem;
    background: #00ff00;
    color: #fcfcfb;
    border: none;
    border-radius: 5px;
    font-size: 1.2rem;
    cursor: pointer;
    transition: transform 0.3s;
    opacity: 0.9;
}

.submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}


    input, textarea {
      inline-size: 100%;
      padding: 1rem;
      background: rgba(255, 255, 255, 0.05);
      border: 1px solid rgba(0, 255, 0, 0.3);
      color: #ffffff;
      border-radius: 5px;
    }

    .cursor {
      inline-size: 20px;
      block-size: 20px;
      border: 2px solid #00ff00;
      border-radius: 50%;
      position: fixed;
      pointer-events: none;
      z-index: 9999;
    }
    .booking-button:hover {
      background-color: #45a049;
    }
    .booking {
      margin-block-start: 20px;
      display: flex;
      justify-content: center;
    }
      

    @media (max-inline-size: 768px) {
      .hero h1 {
        font-size: 2.5rem;
      }

      .hero p {
        font-size: 1.2rem;
      }

      .nav-links {
        display: none;
      }
      .hero-container {
        margin: 0;
      }      
    }
     

.hud-overlay {
    position: relative;
    inset-block-start: 6;
    inset-inline-start: 0;
    inline-size: 100%;
    block-size: 100%;
    z-index: 2;
    pointer-events: none;
}
.threat-alert {
    position: absolute;
    inset-block-start: 20px;
    inset-inline-end: 20px;
    background: rgba(255, 0, 0, 0.2);
    border: 2px solid #ff0000;
    padding: 10px;
    border-radius: 5px;
    animation: pulse 2s infinite;
    pointer-events: all;
}

.threat-alert.active {
    background: rgba(255, 0, 0, 0.4);
    box-shadow: 0 0 20px #ff0000;
}

.system-status {
    position: absolute;
    inset-block-start: 20px;
    inset-inline-start: 20px;
    background: rgba(0, 255, 0, 0.1);
    border: 1px solid #00ff00;
    padding: 15px;
    border-radius: 5px;
    font-size: 12px;
    line-height: 1.4;
}

.network-traffic {
    position: absolute;
    inset-block-end: 20px;
    inset-inline-start: 20px;
    background: rgba(0, 255, 255, 0.1);
    border: 1px solid #00ffff;
    padding: 15px;
    border-radius: 5px;
    font-size: 12px;
    inline-size: 300px;
}

.controls-info {
    position: absolute;
    inset-block-end: 20px;
    inset-inline-end: 20px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid #ffffff;
    padding: 15px;
    border-radius: 5px;
    font-size: 11px;
    color: #ffffff;
}
    @keyframes pulse {
        0%, 100% { opacity: 1; }
        50% { opacity: 0.5; }
    }

    @keyframes dataFlow {
        0% { transform: translateX(-100%); }
        100% { transform: translateX(100%); }
    }

.data-stream {
    position: absolute;
    block-size: 2px;
    background: linear-gradient(90deg, transparent, #00ff00, transparent);
    animation: dataFlow 3s linear infinite;
}
        
.loading-screen {
            position: fixed;
            inset-block-start: 0;
            inset-inline-start: 0;
            inline-size: 100%;
            block-size: 100%;
            background: #000;
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 1000;
            font-family: 'Courier New', monospace;
            color: #00ff00;
        }

        .loading-text {
            text-align: center;
            font-size: 18px;
        }

        .progress-bar {
            inline-size: 300px;
            block-size: 20px;
            border: 2px solid #00ff00;
            margin: 20px 0;
            position: relative;
        }

        .progress-fill {
            block-size: 100%;
            background: linear-gradient(90deg, #00ff00, #00ffff);
            inline-size: 0%;
            transition: width 0.3s ease;
        }

       

        .nav-item {
            display: block;
            color: #00ff00;
            text-decoration: none;
            padding: 10px 15px;
            margin: 5px 0;
            border: 1px solid transparent;
            border-radius: 5px;
            transition: all 0.3s ease;
            text-align: center;
            font-size: 14px;
        }

        .nav-item:hover {
            border-color: #00ff00;
            background: rgba(0, 255, 0, 0.1);
            box-shadow: 0 0 10px rgba(0, 255, 0, 0.5);
        }

        .nav-item.active {
            background: rgba(0, 255, 0, 0.2);
            border-color: #00ff00;
        }

        @media (max-inline-size: 768px) {
            .nav-menu {
                position: fixed;
                inset-block-start: 10px;
                inset-inline-start: 10px;
                transform: none;
                padding: 10px;
            }
            
            .nav-item {
                font-size: 12px;
                padding: 8px 12px;
            }
            
            .system-status, .network-traffic, .controls-info {
                font-size: 10px;
                padding: 10px;
            }
        }
        #main-shield-view::before {
          content: '\e9e0';
          font-family: 'Material Icons';
          position: absolute;
          inset-block-start: 50%;
          inset-inline-start: 0%;
          transform: translate(20%, -50%) rotate(-15deg);
          font-size: 20rem;
          opacity: 0.5;
        }
                
        .blob {
          box-shadow: 0 0 0 0 rgba(0, 0, 0, 1);
          animation: pulse-orange 2s infinite;
          margin: 10px;
          block-size: 30px;
          inline-size: 30px;
          border-radius: 50%;
        }
                
        .animate-icon {
          margin: 10px;
          block-size: 30px;
          inline-size: 30px;
        }
        .animate-icon:hover {
          transform: scale(1.1);
        }
                
      @keyframes pulse-orange {
        0% {
            transform: scale(1);
            box-shadow: 0 0 0 0 rgba(5, 192, 11, 0.7);
            }
                
        70% {
            transform: scale(1);
            box-shadow: 0 0 0 10px rgba(255, 121, 63, 0);
            }
                
        100% {
              transform: scale(1);
              box-shadow: 0 0 0 0 rgba(255, 121, 63, 0);
              }
            }
.webInspector-container {
            max-width: 1400px;
            margin: 0 auto;
            background: linear-gradient(135deg, rgba(0, 20, 0, 0.9), rgba(0, 40, 0, 0.8));
            border: 2px solid rgba(0, 255, 65, 0.4);
            border-radius: 20px;
            padding: 2.5rem;
            backdrop-filter: blur(15px);
            -webkit-backdrop-filter: blur(15px);
            box-shadow: 0 8px 32px rgba(0, 255, 65, 0.2);
        }

        h1 {
            font-size: 2rem;
            color: var(--matrix-green);
            text-align: center;
            margin-bottom: 1rem;
            text-shadow: 0 0 20px rgba(0, 255, 65, 0.5);
            text-transform: uppercase;
            letter-spacing: 2px;
        }

        h1 span {
            color: var(--gray-400);
            font-size: 1.2rem;
        }

        .badge {
            display: inline-flex;
            align-items: center;
            padding: 0.4rem 1rem;
            border-radius: 20px;
            font-size: 0.75rem;
            font-weight: bold;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-left: 1rem;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .badge-error {
            background: linear-gradient(135deg, var(--error), #dc2626);
            color: white;
            box-shadow: 0 0 15px rgba(239, 68, 68, 0.4);
        }

        .badge-success {
            background: linear-gradient(135deg, var(--success), #059669);
            color: white;
            box-shadow: 0 0 15px rgba(16, 185, 129, 0.4);
        }

        .badge-warning {
            background: linear-gradient(135deg, var(--warning), #d97706);
            color: white;
            box-shadow: 0 0 15px rgba(245, 158, 11, 0.4);
        }

        .badge-info {
            background: linear-gradient(135deg, var(--info), #2563eb);
            color: white;
            box-shadow: 0 0 15px rgba(59, 130, 246, 0.4);
        }

        .badge-primary {
            background: linear-gradient(135deg, #8b5cf6, #7c3aed);
            color: white;
            box-shadow: 0 0 15px rgba(139, 92, 246, 0.4);
        }

        .badge-secondary {
            background: linear-gradient(135deg, #ec4899, #db2777);
            color: white;
            box-shadow: 0 0 15px rgba(236, 72, 153, 0.4);
        }

        .badge:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 20px rgba(0, 255, 65, 0.4);
        }

        /* Search Section */
        .search-section {
            margin: 3rem 0;
        }

        .search-container {
            position: relative;
            max-width: 900px;
            margin: 0 auto;
        }

        .search-input-wrapper {
            position: relative;
        }

        .search-icon {
            position: absolute;
            left: 1rem;
            top: 50%;
            transform: translateY(-50%);
            color: var(--gray-400);
            pointer-events: none;
            z-index: 1;
            width: 20px;
            height: 20px;
        }

        .search-input {
            width: 100%;
            padding: 1rem 10rem 1rem 3rem;
            background: rgba(0, 0, 0, 0.6);
            border: 1px solid rgba(0, 255, 65, 0.3);
            border-radius: 12px;
            color: #ffffff;
            font-size: 1rem;
            font-family: 'Share Tech Mono', monospace;
            transition: all 0.3s ease;
        }

        .search-input:focus {
            outline: none;
            border-color: var(--matrix-green);
            box-shadow: 0 0 20px rgba(0, 255, 65, 0.3);
        }

        .search-actions {
            position: absolute;
            right: 0.5rem;
            top: 50%;
            transform: translateY(-50%);
            display: flex;
            gap: 0.5rem;
            align-items: center;
        }

        .icon-btn {
            background: none;
            border: none;
            color: var(--gray-400);
            padding: 0.5rem;
            cursor: pointer;
            transition: all 0.3s ease;
            border-radius: 6px;
        }

        .icon-btn:hover {
            color: var(--matrix-green);
            background: rgba(0, 255, 65, 0.1);
        }

        .icon-btn svg {
            width: 16px;
            height: 16px;
        }

        .btn-success {
            background: linear-gradient(135deg, var(--success), #059669);
            color: white;
            padding: 0.5rem 1rem;
            border: none;
            border-radius: 8px;
            font-weight: bold;
            cursor: pointer;
            font-size: 0.875rem;
            transition: all 0.3s ease;
        }

        .btn-success:hover {
            background: linear-gradient(135deg, #059669, #047857);
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(16, 185, 129, 0.4);
        }

        /* Quick Links */
        .quick-links {
            display: flex;
            flex-wrap: wrap;
            gap: 1rem;
            justify-content: center;
            margin: 1.5rem 0;
        }

        .quick-links a {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            color: var(--gray-400);
            text-decoration: none;
            padding: 0.5rem 1rem;
            border: 1px solid rgba(0, 255, 65, 0.2);
            border-radius: 8px;
            transition: all 0.3s ease;
            font-size: 0.875rem;
        }

        .quick-links a:hover {
            color: var(--matrix-green);
            border-color: var(--matrix-green);
            background: rgba(0, 255, 65, 0.05);
        }

        /* Control Panel */
        .control-panel {
            display: flex;
            gap: 1rem;
            margin: 2rem 0;
            flex-wrap: wrap;
        }

        .side-badges {
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
        }

        .side-badges .badge {
            margin: 0;
            padding: 0.75rem 1rem;
            min-width: 120px;
            justify-content: center;
        }

        .input-section {
            flex: 1;
            min-width: 300px;
        }

        textarea {
            width: 100%;
            padding: 1rem;
            background: rgba(0, 0, 0, 0.6);
            border: 1px solid rgba(0, 255, 65, 0.3);
            border-radius: 12px;
            color: #ffffff;
            font-family: 'Share Tech Mono', monospace;
            resize: vertical;
            min-height: 100px;
            transition: all 0.3s ease;
        }

        textarea:focus {
            outline: none;
            border-color: var(--matrix-green);
            box-shadow: 0 0 20px rgba(0, 255, 65, 0.3);
        }

        .action-buttons {
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
        }

        /* Buttons */
        .btn {
            padding: 0.75rem 1.5rem;
            border: none;
            border-radius: 8px;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s ease;
            text-transform: uppercase;
            font-size: 0.875rem;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            white-space: nowrap;
        }

        .btn-error {
            background: linear-gradient(135deg, var(--error), #dc2626);
            color: white;
            box-shadow: 0 4px 15px rgba(239, 68, 68, 0.3);
        }

        .btn-error:hover {
            background: linear-gradient(135deg, #dc2626, #b91c1c);
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(239, 68, 68, 0.4);
        }

        .btn-warning {
            background: linear-gradient(135deg, var(--warning), #d97706);
            color: white;
            box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3);
        }

        .btn-warning:hover {
            background: linear-gradient(135deg, #d97706, #b45309);
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(245, 158, 11, 0.4);
        }

        .btn-outline {
            background: transparent;
            border: 2px solid var(--matrix-green);
            color: var(--matrix-green);
        }

        .btn-outline:hover {
            background: var(--matrix-green);
            color: #000;
        }

        /* Button Group */
        .button-group {
            display: flex;
            gap: 1rem;
            align-items: center;
            margin: 1.5rem 0;
            flex-wrap: wrap;
        }

        .loading {
            display: none;
            width: 2rem;
            height: 2rem;
            border: 3px solid rgba(0, 255, 65, 0.3);
            border-top-color: var(--matrix-green);
            border-radius: 50%;
            animation: spin 1s linear infinite;
        }

        .loading.active {
            display: block;
        }

        @keyframes spin {
            to { transform: rotate(360deg); }
        }

        /* Results Container */
        .results-container {
            background: rgba(0, 0, 0, 0.6);
            border: 1px solid rgba(0, 255, 65, 0.3);
            border-radius: 12px;
            padding: 1.5rem;
            margin: 2rem 0;
            max-height: 500px;
            overflow-y: auto;
        }

        .alert {
            padding: 1rem;
            border-radius: 8px;
            display: flex;
            align-items: center;
            gap: 0.75rem;
            margin-bottom: 1rem;
        }

        .alert-info {
            background: rgba(59, 130, 246, 0.1);
            border: 1px solid rgba(59, 130, 246, 0.3);
            color: #60a5fa;
        }

        /* Utility Buttons */
        .utility-buttons {
            display: flex;
            justify-content: center;
            gap: 1rem;
            margin: 2rem 0;
            flex-wrap: wrap;
        }

        /* Advanced Options */
        .advanced-options {
            background: rgba(0, 0, 0, 0.4);
            border: 1px solid rgba(0, 255, 65, 0.2);
            border-radius: 12px;
            padding: 0;
            margin: 2rem 0;
            overflow: hidden;
        }

        .collapse-header {
            text-align: center;
            color: var(--gray-400);
            cursor: pointer;
            padding: 1.5rem;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
            background: rgba(0, 0, 0, 0.3);
            border-bottom: 1px solid transparent;
        }

        .collapse-header:hover {
            color: var(--matrix-green);
            background: rgba(0, 255, 65, 0.05);
        }

        .collapse-header.active {
            border-bottom-color: rgba(0, 255, 65, 0.2);
        }

        .collapse-content {
            display: none;
            padding: 2rem;
        }

        .collapse-content.active {
            display: block;
        }

        .options-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 2rem;
            margin: 1.5rem 0;
        }

        .option-item {
            text-align: center;
        }

        .option-label {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 0.75rem;
        }

        /* Toggle Switch */
        .toggle-wrapper {
            position: relative;
            display: inline-block;
            width: 50px;
            height: 24px;
        }

        .toggle-wrapper input {
            opacity: 0;
            width: 0;
            height: 0;
        }

        .toggle-slider {
            position: absolute;
            cursor: pointer;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-color: var(--gray-600);
            transition: 0.4s;
            border-radius: 24px;
        }

        .toggle-slider:before {
            position: absolute;
            content: "";
            height: 18px;
            width: 18px;
            left: 3px;
            bottom: 3px;
            background-color: white;
            transition: 0.4s;
            border-radius: 50%;
        }

        .toggle-wrapper input:checked + .toggle-slider {
            background-color: var(--success);
        }

        .toggle-wrapper input:checked + .toggle-slider:before {
            transform: translateX(26px);
        }

        /* Range Slider */
        .range-container {
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
        }

        .range-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .range-label {
            color: var(--gray-400);
            font-size: 0.875rem;
        }

        .range-value {
            background: var(--gray-700);
            color: var(--matrix-green);
            padding: 0.25rem 0.75rem;
            border-radius: 12px;
            font-size: 0.75rem;
        }

        input[type="range"] {
            width: 100%;
            height: 4px;
            background: var(--gray-700);
            outline: none;
            border-radius: 2px;
            -webkit-appearance: none;
        }

        input[type="range"]::-webkit-slider-thumb {
            -webkit-appearance: none;
            appearance: none;
            width: 16px;
            height: 16px;
            background: var(--matrix-green);
            cursor: pointer;
            border-radius: 50%;
            box-shadow: 0 0 10px rgba(0, 255, 65, 0.5);
        }

        input[type="range"]::-moz-range-thumb {
            width: 16px;
            height: 16px;
            background: var(--matrix-green);
            cursor: pointer;
            border-radius: 50%;
            border: none;
            box-shadow: 0 0 10px rgba(0, 255, 65, 0.5);
        }

        .range-markers {
            display: flex;
            justify-content: space-between;
            color: var(--gray-400);
            font-size: 0.75rem;
            margin-top: 0.5rem;
        }

        /* Checkbox */
        .checkbox-label {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            cursor: pointer;
            color: var(--gray-300);
        }

        input[type="checkbox"] {
            width: 18px;
            height: 18px;
            cursor: pointer;
            accent-color: var(--matrix-green);
        }

        /* Context Modal */
        .contextModal {
            display: none;
            position: fixed;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            background: linear-gradient(135deg, rgba(0, 20, 0, 0.98), rgba(0, 40, 0, 0.95));
            border: 2px solid var(--matrix-green);
            border-radius: 15px;
            box-shadow: 0 10px 40px rgba(0, 255, 65, 0.5), 0 0 80px rgba(0, 255, 65, 0.2);
            z-index: 1001;
            max-width: 600px;
            width: 90%;
            overflow: hidden;
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            animation: modalSlideIn 0.3s ease;
        }

        @keyframes modalSlideIn {
            from {
                opacity: 0;
                transform: translate(-50%, -45%);
            }
            to {
                opacity: 1;
                transform: translate(-50%, -50%);
            }
        }

        .contextModal.active {
            display: block;
        }

        .modal-header {
            background: rgba(0, 0, 0, 0.4);
            padding: 1rem 1.5rem;
            cursor: move;
            display: flex;
            justify-content: space-between;
            align-items: center;
            border-bottom: 1px solid rgba(0, 255, 65, 0.3);
            user-select: none;
            -webkit-user-select: none;
            -webkit-user-drag: auto;
        }

        .modal-header h2 {
            margin: 0;
            color: var(--matrix-green);
            text-transform: uppercase;
            font-size: 1.3rem;
            text-shadow: 0 0 10px rgba(0, 255, 65, 0.5);
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .modal-close-btn {
            background: none;
            border: none;
            color: var(--error);
            cursor: pointer;
            font-size: 1.5rem;
            padding: 0.25rem 0.5rem;
            transition: all 0.3s ease;
            border-radius: 5px;
            width: 35px;
            height: 35px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .modal-close-btn:hover {
            background: var(--error);
            color: white;
            transform: rotate(90deg);
        }

        .modal-body {
            padding: 2rem;
        }

        .modal-body p {
            margin: 0 0 1.5rem;
            color: var(--gray-300);
            line-height: 1.8;
            font-size: 1rem;
        }

        .modal-icon {
            font-size: 2.5rem;
            color: var(--matrix-green);
            text-align: center;
            margin-bottom: 1rem;
            animation: iconPulse 2s infinite;
        }

        @keyframes iconPulse {
            0%, 100% {
                opacity: 1;
                transform: scale(1);
            }
            50% {
                opacity: 0.7;
                transform: scale(1.05);
            }
        }

        .modal-footer {
            padding: 1rem 2rem;
            background: rgba(0, 0, 0, 0.3);
            border-top: 1px solid rgba(0, 255, 65, 0.3);
            display: flex;
            justify-content: flex-end;
            gap: 1rem;
        }

        .modal-footer button {
            background: var(--matrix-green);
            color: #000;
            padding: 0.75rem 2rem;
            border: none;
            border-radius: 8px;
            cursor: pointer;
            font-weight: bold;
            transition: all 0.3s ease;
            text-transform: uppercase;
            font-size: 0.9rem;
        }

        .modal-footer button:hover {
            background: var(--cyber-blue);
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(0, 255, 65, 0.4);
        }

        .modal-overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.85);
            z-index: 1000;
            backdrop-filter: blur(5px);
            -webkit-backdrop-filter: blur(5px);
            animation: fadeIn 0.3s ease;
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
            }
            to {
                opacity: 1;
            }
        }

        .modal-overlay.active {
            display: block;
        }

        /* Dragging cursor */
        .dragging {
            cursor: move !important;
        }

        .dragging * {
            cursor: move !important;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .control-panel {
                flex-direction: column;
            }

            .action-buttons {
                flex-direction: row;
            }

            .button-group {
                flex-wrap: wrap;
            }

            .options-grid {
                grid-template-columns: 1fr;
            }

            .webInspector-container {
                padding: 1.5rem;
            }

            h1 {
                font-size: 1.5rem;
            }

            .search-input {
                padding-right: 9rem;
            }
        }

        @media (max-width: 480px) {
            body {
                padding: 1rem;
            }

            .webInspector-container {
                padding: 1rem;
            }

            .btn {
                padding: 0.5rem 1rem;
                font-size: 0.75rem;
            }

            .search-actions {
                flex-direction: column;
                right: 0.25rem;
            }
        }

        /* Graph Container */
        #graph-container {
            display: none;
            background: rgba(0, 0, 0, 0.6);
            border: 1px solid rgba(0, 255, 65, 0.3);
            border-radius: 12px;
            margin: 2rem 0;
            height: 700px;
            position: relative;
            overflow: hidden;
        }

        .graph-legend {
            position: absolute;
            top: 1rem;
            right: 1rem;
            background: rgba(0, 20, 0, 0.9);
            padding: 1rem;
            border-radius: 8px;
            border: 1px solid rgba(0, 255, 65, 0.3);
            z-index: 10;
            font-size: 0.85rem;
        }

        .legend-item {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            margin-bottom: 0.5rem;
            color: var(--gray-300);
        }

        .legend-color {
            width: 12px;
            height: 12px;
            border-radius: 2px;
        }

        .alert {
            padding: 1rem;
            border-radius: 8px;
            display: flex;
            align-items: center;
            gap: 0.75rem;
            margin-bottom: 1rem;
        }

        .alert-info {
            background: rgba(59, 130, 246, 0.1);
            border: 1px solid rgba(59, 130, 246, 0.3);
            color: #60a5fa;
        }