 @import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;700;900&family=Rajdhani:wght@300;500;700&family=Share+Tech+Mono&display=swap');
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            background: #0a0a0a;
            color: #c5c8cf;
            font-family: 'Rajdhani', sans-serif;
            overflow-x: hidden;
            height: 100vh;
            cursor: crosshair;
        }
        
        /* Scanline overlay */
        body::before {
            content: "";
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: repeating-linear-gradient(
                0deg,
                rgba(0, 0, 0, 0.15),
                rgba(0, 0, 0, 0.15) 1px,
                transparent 1px,
                transparent 2px
            );
            pointer-events: none;
            z-index: 1000;
        }
        
        /* Main container - darker, more premium */
        .main-container {
            width: 100vw;
            min-height: 100vh;
            background: linear-gradient(90deg, #0a0a0a 0%, #0f1820 50%, #0a0a0a 100%);
            position: relative;
            display: flex;
            flex-direction: column;
        }
        
        /* Tech grid background - more subtle */
        .grid-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: 
                linear-gradient(rgba(65, 132, 196, 0.02) 1px, transparent 1px),
                linear-gradient(90deg, rgba(65, 132, 196, 0.02) 1px, transparent 1px);
            background-size: 50px 50px;
            pointer-events: none;
            z-index: 1;
        }
        
        /* Circuit lines - blue instead of cyan */
        .circuit-lines {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: 
                radial-gradient(circle at 20% 50%, rgba(65, 132, 196, 0.08) 0%, transparent 50%),
                radial-gradient(circle at 80% 50%, rgba(25, 90, 180, 0.08) 0%, transparent 50%);
            pointer-events: none;
            z-index: 1;
        }
        
        /* Top navigation bar */
        .top-nav {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 32px;
            background: linear-gradient(180deg, #111820 0%, #0a0f15 100%);
            border-bottom: 1px solid #1a2430;
            display: flex;
            align-items: center;
            padding: 0 10px;
            z-index: 100;
            font-family: 'Share Tech Mono', monospace;
            font-size: 10px;
            letter-spacing: 1px;
            text-transform: uppercase;
            overflow-x: auto;
        }
        
        .nav-item {
            color: #777474;
            margin-right: 15px;
            cursor: pointer;
            transition: color 0.3s;
            position: relative;
            white-space: nowrap;
            border: none;
            background: none;
            padding: 0;
            font-family: 'Share Tech Mono', monospace;
            font-size: 15px;
            text-transform: uppercase;
        }
        
        .nav-item:hover {
            color: #4184c4;
            text-shadow: 0 0 10px rgba(65, 132, 196, 0.4);
        }
        
        .nav-item.active {
            color: #fff;
            border-bottom: 2px solid #4184c4;
        }
        
        .nav-separator {
            color: #333;
            margin-right: 15px;
        }
        
        /* Viewport for content */
        .content-viewport {
            position: relative;
            top: 32px;
            left: 0;
            width: 100%;
            min-height: calc(100vh - 72px);
            overflow-y: auto;
            overflow-x: hidden;
            z-index: 10;
        }
        
        /* State content */
        .state-content {
            position: relative;
            width: 100%;
            min-height: 100%;
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.5s ease-in-out;
            display: none;
        }
        
        .state-content.active {
            opacity: 1;
            pointer-events: auto;
            display: block;
        }
        
        /* Section styling */
        .section {
            width: 100%;
            min-height: 100vh;
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 40px 20px;
        }
        
        /* Hero section */
        .hero-section {
            background: 
                linear-gradient(135deg, rgba(10, 24, 42, 0.95) 0%, rgba(15, 24, 32, 0.9) 100%),
                url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><rect fill="none" stroke="rgba(65,132,196,0.08)" stroke-width="0.5" x="0" y="0" width="100" height="100"/></svg>');
        }
        
        .hero-content {
            position: relative;
            width: 90%;
            max-width: 1200px;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }
        
        /* Character area */
        .character-area {
            position: relative;
            height: 400px;
            background: linear-gradient(90deg, transparent 0%, rgba(65, 132, 196, 0.04) 50%, transparent 100%);
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .character-placeholder {
            width: 350px;
            height: 350px;
            background: linear-gradient(180deg, rgba(255,255,255,0.05) 0%, transparent 100%);
            background-image: url('hackzur.png');
            background-size: cover;
            border: 1px solid rgb(65, 133, 196);
            position: relative;
            overflow: hidden;
        }
        
        .character-placeholder::before {
            background-color: #00000057;
            border: 5px ridge rgba(0, 0, 0, 0.555);
            border-radius: 40px;
            padding: 15px;
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            color: rgb(255, 255, 255);
            text-shadow: 12px -12px 2px black, -11px 11px 2px black;
            font-family: 'Orbitron', sans-serif;
            font-size: 14px;
            text-align: center;
            line-height: 2;
            font-weight: bolder;
            letter-spacing: 1px;
        }
        
        /* Asian text decoration */
        .asian-text {
            position: absolute;
            color: rgba(65, 132, 196, 0.25);
            font-size: 12px;
            letter-spacing: 5px;
            writing-mode: vertical-rl;
            text-orientation: upright;
        }
        
        .asian-text.top {
            top: 20%;
            left: 10%;
        }
        
        .asian-text.bottom {
            bottom: 20%;
            right: 10%;
            color: rgba(40, 100, 180, 0.2);
        }
        
        /* Right side info panel */
        .info-panel {
            position: relative;
        }
        
        /* Monitor */
        .monitor {
            width: 200px;
            height: 120px;
            background: #000;
            border: 2px solid #2a3840;
            border-radius: 5px;
            position: relative;
            margin-bottom: 30px;
            box-shadow: 
                0 0 20px rgba(65, 132, 196, 0.15),
                inset 0 0 20px rgba(65, 132, 196, 0.03);
        }
        
        .monitor-screen {
            position: absolute;
            top: 10px;
            left: 10px;
            right: 10px;
            bottom: 25px;
            background: #0a1420;
            border: 1px solid #2a3840;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
        }
        
        .loading-bar {
            width: 80%;
            height: 4px;
            background: #222;
            position: relative;
            overflow: hidden;
        }
        
        .loading-progress {
            position: absolute;
            top: 0;
            left: 0;
            height: 100%;
            width: 60%;
            background: linear-gradient(90deg, #4184c4, #1a5fb0);
            animation: loading 2s infinite;
        }
        
        @keyframes loading {
            0% { width: 0%; }
            50% { width: 60%; }
            100% { width: 100%; opacity: 0; }
        }
        
        .monitor-label {
            position: absolute;
            bottom: 5px;
            left: 50%;
            transform: translateX(-50%);
            font-size: 8px;
            color: #555;
            letter-spacing: 2px;
        }
        
        /* Logo area */
        .logo-area {
            text-align: right;
        }
        
        .logo-text {
            font-family: 'Orbitron', sans-serif;
            font-size: 42px;
            font-weight: 900;
            color: #fff;
            letter-spacing: 8px;
            text-shadow: 
                0 0 20px rgba(65, 132, 196, 0.3),
                2px 2px 0px rgba(25, 90, 180, 0.3);
            margin-bottom: 5px;
            line-height: 33px;
        }
        
        .logo-sub {
            font-size: 20px;
            color: #4184c4;
            letter-spacing: 4px;
            text-transform: uppercase;
        }
        
        .logo-dots {
            display: flex;
            justify-content: flex-end;
            gap: 8px;
            margin-bottom: 10px;
        }
        
        .dot {
            width: 8px;
            height: 8px;
            background: #4184c4;
            border-radius: 50%;
            box-shadow: 0 0 10px rgba(65, 132, 196, 0.6);
        }
        
        /* Bottom control bar */
        .bottom-bar {
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 40px;
            background: linear-gradient(180deg, #1a2430 0%, #111820 100%);
            border-top: 1px solid #2a3840;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0 20px;
            z-index: 100;
            font-family: 'Share Tech Mono', monospace;
            font-size: 20px;
            text-transform: uppercase;
            overflow-x: auto;
        }
        
        .bottom-nav {
            display: flex;
            gap: 20px;
            white-space: nowrap;
        }
        
        .bottom-nav-item {
            color: #666;
            cursor: pointer;
            transition: all 0.3s;
            position: relative;
            border: none;
            background: none;
            font-family: 'Share Tech Mono', monospace;
            font-size: 12px;
            text-transform: uppercase;
        }
        
        .bottom-nav-item::before {
            content: ">>";
            margin-right: 5px;
            color: #4184c4;
            opacity: 0;
            transition: opacity 0.3s;
        }
        
        .bottom-nav-item:hover {
            color: #fff;
        }
        
        .bottom-nav-item:hover::before {
            opacity: 1;
        }
        
        .audio-control {
            display: flex;
            align-items: center;
            gap: 10px;
            color: #555;
            white-space: nowrap;
            margin-left: 5px;
        }
        
        /* Content sections */
        .content-section {
            padding: 60px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            width: 100%;
            min-height: 100%;
        }
        
        .section-title {
            font-family: 'Orbitron', sans-serif;
            font-size: 48px;
            color: rgba(255, 255, 255, 0.08);
            text-transform: uppercase;
            letter-spacing: 20px;
            margin-bottom: 40px;
            position: relative;
        }
        
        .section-title::after {
            content: attr(data-text);
            position: absolute;
            left: 0;
            top: 0;
            color: #4184c4;
            font-size: 24px;
            letter-spacing: 5px;
        }
        
        .content-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }
        
        .content-card {
            background: rgba(10, 24, 42, 0.6);
            border: 1px solid rgba(65, 132, 196, 0.2);
            padding: 25px;
            position: relative;
            overflow: hidden;
        }
        
        .content-card::before {
            content: "";
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(65, 132, 196, 0.08), transparent);
            transition: left 0.5s;
        }
        
        .content-card:hover::before {
            left: 100%;
        }
        
        .card-title {
            color: #4184c4;
            font-size: 22px;
            letter-spacing: 2px;
            margin-bottom: 10px;
            text-transform: uppercase;
            font-weight: 600;
        }
        
        .card-desc {
            color: #888;
            text-shadow: 2px 2px 2px black;
            font-size: 17px;
            line-height: 1.6;
        }
        
        /* Decorative elements */
        .corner-bracket {
            position: absolute;
            width: 20px;
            height: 20px;
            border: 1px solid rgba(65, 132, 196, 0.3);
        }
        
        .corner-bracket.tl { top: -1px; left: -1px; border-right: none; border-bottom: none; }
        .corner-bracket.tr { top: -1px; right: -1px; border-left: none; border-bottom: none; }
        .corner-bracket.bl { bottom: -1px; left: -1px; border-right: none; border-top: none; }
        .corner-bracket.br { bottom: -1px; right: -1px; border-left: none; border-top: none; }
        
        /* Glitch effect */
        .glitch-hover:hover {
            animation: glitch 0.3s infinite;
        }
        
        @keyframes glitch {
            0% { transform: translate(0); }
            20% { transform: translate(-2px, 2px); }
            40% { transform: translate(-2px, -2px); }
            60% { transform: translate(2px, 2px); }
            80% { transform: translate(2px, -2px); }
            100% { transform: translate(0); }
        }
        
        /* Metal button */
        .metal-btn {
            background: linear-gradient(180deg, #3a4a5a 0%, #1a2a3a 50%, #0a1a2a 100%);
            border: 1px solid #2a4060;
            color: #b8bcc4;
            padding: 10px 30px;
            font-family: 'Orbitron', sans-serif;
            font-size: 11px;
            letter-spacing: 3px;
            text-transform: uppercase;
            cursor: pointer;
            position: relative;
            overflow: hidden;
            margin-top: 20px;
            transition: all 0.3s;
        }
        
        .metal-btn:hover {
            background: linear-gradient(180deg, #4a5a6a 0%, #2a3a4a 50%, #1a2a3a 100%);
            color: #fff;
            border-color: #4184c4;
            box-shadow: 0 0 20px rgba(65, 132, 196, 0.3);
        }

        a.nav-link {
    color: #888;
    margin-right: 15px;
    cursor: pointer;
    transition: color 0.3s;
    position: relative;
    white-space: nowrap;
    font-family: 'Share Tech Mono', monospace;
    font-size: 15px;
    text-transform: uppercase;
    text-decoration: none;
}

a.nav-link:hover {
    color: #00ffff;
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
}
        
        /* Form styles */
        .form-container {
            max-width: 600px;
            background: rgba(10, 24, 42, 0.6);
            border: 1px solid rgba(65, 132, 196, 0.2);
            padding: 30px;
            display: flex;
            flex-direction: column;
            gap: 15px;
        }
        
        .form-group {
            display: flex;
            flex-direction: column;
            gap: 5px;
        }
        
        .form-group label {
            color: #4184c4;
            font-size: 10px;
            letter-spacing: 2px;
            text-transform: uppercase;
            font-weight: 600;
        }
        
        .form-group input,
        .form-group textarea,
        .form-group select {
            background: rgba(0, 0, 0, 0.5);
            border: 1px solid rgba(65, 132, 196, 0.2);
            color: #b8bcc4;
            padding: 8px 12px;
            font-family: 'Rajdhani', sans-serif;
            font-size: 11px;
            transition: all 0.3s;
        }
        
        .form-group input:focus,
        .form-group textarea:focus,
        .form-group select:focus {
            outline: none;
            border-color: #4184c4;
            box-shadow: 0 0 10px rgba(65, 132, 196, 0.2);
        }
        
        .form-group textarea {
            resize: vertical;
            min-height: 80px;
        }
        
        /* Custom scrollbar */
        ::-webkit-scrollbar {
            width: 8px;
            background: #0a0a0a;
        }
        
        ::-webkit-scrollbar-thumb {
            background: linear-gradient(180deg, #4184c4, #1a5fb0);
            border-radius: 4px;
        }
        
        ::-webkit-scrollbar-track {
            background: #111820;
        }

        /* MOBILE RESPONSIVE */
        @media (max-width: 1068px) {
            .content-grid {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 768px) {
            .hero-content {
                grid-template-columns: 1fr;
                gap: 30px;
            }

            .content-grid {
                grid-template-columns: 1fr;
            }

            .top-nav {
                height: 40px;
                fonts-size: 9px;
            }

            .nav-item {
                fonts-size: 9px;
                margin-right: 10px;
            }

            .content-viewport {
                min-height: calc(100vh - 80px);
                margin-bottom: 75px;
            }

            .section {
                min-height: auto;
                padding: 20px 15px;
            }

            .hero-section {
                min-height: 100vh;
                display: flex;
                flex-direction: column;
                justify-content: center;
            }

            .section-title {
                fsont-size: 28px;
                letter-spacing: 10px;
                margin-bottom: 20px;
            }

            .logo-text {
                font-size: 37px;
                letter-spacing: 4px;
            }

            .logo-sub {
                fost-size: 15px;
                letter-spacing: 2px;
            }

            .character-placeholder {
                width: 275px;
                height: 275px;
            }

            .character-placeholder::before {
                fonst-size: 11px;
                padding: 10px;
                border-radius: 20px;
            }

            .content-section {
                padding: 30px 15px;
            }

            .card-title {
                fonst-size: 16px;
            }

            .card-desc {
                fosnt-size: 13px;
            }

            .form-container {
                max-width: 100%;
                padding: 20px;
            }

            .bottom-bar {
                height: 40px;
                fosnt-size: 9px;
                overflow-x: auto;
            }

            .bottom-nav {
                gap: 15px;
            }

            .bottom-nav-item {
                fosnt-size: 9px;
            }
            #innuh{font-size: 30px;}
        }

        @media (max-width: 480px) {
            .top-nav {
                height: 45px;
                fleax-wrap: wrap;
            }


            .section {
                padding: 15px 10px;
            }

            .hero-content {
                gap: 20px;
            }

            .character-area {
                height: 300px;
            }

            .character-placeholder {
                width: 250px;
                height: 250px;
            }

            .logo-text {
                font-size: 30px;
            }
            #innuh{font-size: 30px;}

            .logo-sub {
                font-size: 14px;
            }

            .section-title {
                fosnt-size: 20px;
                letter-spacing: 5px;
                margin-bottom: 20px;
            }

            .content-grid {
                gap: 15px;
                margin-top: 20px;
            }

            .content-viewport {
                margin-bottom: 75px;
            }

            .form-container {
                padding: 15px;
            }

            .card-title {
                fosnt-size: 14px;
            }

            .card-desc {
                fonst-size: 12px;
            }
        }