
        /* --- LOCKED BUTTONS --- */
        .locked-btn {
            border: 1px solid #555 !important;
            color: #777 !important;
            background: transparent !important;
            cursor: not-allowed;
            box-shadow: none !important;
            transition: all 0.3s ease;
        }
        .locked-btn i { color: #ff3333; margin-right: 8px; }

        /* --- UNLOCKED BUTTONS --- */
        .unlocked-btn {
            border: 1px solid #0f0 !important;
            color: #0f0 !important;
            box-shadow: 0 0 10px rgba(0, 255, 0, 0.2) !important;
            cursor: pointer;
        }
        .unlocked-btn:hover {
            background: rgba(0, 255, 0, 0.1) !important;
            box-shadow: 0 0 20px rgba(0, 255, 0, 0.4) !important;
        }

        /* --- MODAL OVERLAYS --- */
        .modal-overlay {
            position: fixed; top: 0; left: 0; width: 100%; height: 100%;
            background: rgba(0,0,0,0.95);
            backdrop-filter: blur(5px);
            display: none; justify-content: center; align-items: center;
            z-index: 9999;
            opacity: 0; transition: opacity 0.3s ease;
        }
        .modal-overlay.active { opacity: 1; }
        
        .reg-box {
            background: rgba(10, 20, 30, 0.9);
            border: 1px solid var(--neon-blue);
            padding: 25px; width: 90%; max-width: 550px;
            box-shadow: 0 0 30px rgba(0, 243, 255, 0.15);
            position: relative;
            max-height: 90vh; overflow-y: auto;
        }

        /* --- INPUT FIELDS --- */
        .input-group { margin-bottom: 15px; text-align: left; }
        .input-group label { display: block; color: var(--neon-blue); font-size: 0.8rem; margin-bottom: 5px; font-family: 'Share Tech Mono'; }
        .input-group input, .input-group select {
            width: 100%; padding: 12px;
            background: rgba(0,0,0,0.6); border: 1px solid #333; color: #fff;
            font-family: 'Rajdhani', sans-serif; font-size: 1rem;
            outline: none; transition: 0.3s;
        }
        .input-group input:focus { border-color: var(--neon-gold); box-shadow: 0 0 10px rgba(255,204,0,0.2); }

        /* --- FILE UPLOAD --- */
        .file-upload-box {
            border: 2px dashed #444; padding: 15px; text-align: center;
            margin-top: 10px; transition: 0.3s;
        }
        .file-upload-box:hover { border-color: var(--neon-blue); }
        
        :root {
            --neon-blue: #00f3ff;
            --neon-pink: #ff0055;
            --neon-gold: #ffcc00;
            --glass-bg: rgba(10, 15, 20, 0.4);
            --font-main: 'Rajdhani', sans-serif;
            --font-display: 'Orbitron', sans-serif;
        }

        * { margin: 0; padding: 0; box-sizing: border-box; }
        html { scroll-behavior: smooth; }

        body {
            background-color: #000;
            color: #fff;
            font-family: var(--font-main);
            overflow-x: hidden;
            line-height: 1.6;
            min-height: 100vh;
        }

        /* --- CANVAS BACKGROUND (The Space Engine) --- */
        #space-canvas {
            position: fixed;
            top: 0; left: 0;
            width: 100%; height: 100%;
            z-index: -1;
            background: radial-gradient(circle at center, #0b1021 0%, #000000 100%);
        }

        /* --- VIGNETTE OVERLAY (Cinematic Dark Edges) --- */
        .vignette {
            position: fixed;
            top: 0; left: 0; width: 100%; height: 100%;
            background: radial-gradient(circle, transparent 50%, #000 120%);
            z-index: -1;
            pointer-events: none;
        }

        /* --- NAVIGATION --- */
        header {
            position: fixed;
            top: 0; left: 0; width: 100%;
            z-index: 1000;
            background: rgba(2, 2, 5, 0.85);
            border-bottom: 1px solid rgba(0, 243, 255, 0.3);
            padding: 1rem 5%;
            backdrop-filter: blur(10px);
            clip-path: polygon(0 0, 100% 0, 100% 85%, 98% 100%, 2% 100%, 0 85%);
        }

        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1400px;
            margin: 0 auto;
        }

        nav div {
            font-family: var(--font-display);
            font-size: 1.5rem;
            font-weight: 800;
            color: var(--neon-blue);
            text-transform: uppercase;
            letter-spacing: 2px;
            text-shadow: 0 0 15px var(--neon-blue);
        }

        nav ul {
            display: flex;
            gap: 2rem;
            list-style: none;
        }

        nav ul li a {
            text-decoration: none;
            color: #aaa;
            font-size: 1rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: 0.3s;
            position: relative;
        }

        nav ul li a:hover { color: #fff; text-shadow: 0 0 8px #fff; }
        nav ul li a::before { content: '['; margin-right: 5px; color: var(--neon-pink); opacity: 0; transition: 0.3s; }
        nav ul li a::after { content: ']'; margin-left: 5px; color: var(--neon-pink); opacity: 0; transition: 0.3s; }
        nav ul li a:hover::before, nav ul li a:hover::after { opacity: 1; }

        /* --- LAYOUT SECTIONS --- */
        section {
            padding: 100px 5%;
            width: 100%;
            max-width: 1300px;
            margin: 0 auto;
        }

        /* --- HERO --- */
        section:first-of-type {
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            padding-top: 140px;
        }

        .hero-logo {
            width: 350px;
            max-width: 80%;
            margin-bottom: 2rem;
            filter: drop-shadow(0 0 30px rgba(0, 243, 255, 0.3));
            animation: pulseLogo 4s infinite alternate;
        }
.menu-toggle {
    display: none;
    font-size: 2rem;
    color: var(--neon-blue);
    cursor: pointer;
}
        @keyframes pulseLogo {
            0% { transform: scale(1); filter: drop-shadow(0 0 20px rgba(0, 243, 255, 0.3)); }
            100% { transform: scale(1.05); filter: drop-shadow(0 0 50px rgba(0, 243, 255, 0.6)); }
        }

        section:first-of-type h1 {
            font-family: var(--font-display);
            font-size: 4rem;
            line-height: 1;
            text-transform: uppercase;
            color: #fff;
            text-shadow: 3px 3px 0px var(--neon-pink);
            margin-bottom: 10px;
            animation: glitch 3s infinite;
        }

        @keyframes glitch {
            0% { transform: translate(0); }
            2% { transform: translate(-2px, 2px); }
            4% { transform: translate(2px, -2px); }
            6% { transform: translate(0); }
            100% { transform: translate(0); }
        }

        section:first-of-type h2 {
            font-family: var(--font-display);
            font-size: 1.2rem;
            color: var(--neon-blue);
            letter-spacing: 4px;
            text-transform: uppercase;
            margin-bottom: 0.5rem;
            font-weight: 500;
        }

        section:first-of-type h3 {
            font-size: 1rem;
            color: #888;
            margin-bottom: 2rem;
            text-transform: uppercase;
            letter-spacing: 2px;
        }
        
        section:first-of-type p {
            color: #ddd;
            font-size: 1.1rem;
            letter-spacing: 1px;
            margin-bottom: 2rem;
        }

        /* --- BUTTONS --- */
        .btn-group {
            display: flex;
            gap: 20px;
            justify-content: center;
            margin-bottom: 40px;
        }

        a.btn {
            display: inline-block;
            padding: 15px 40px;
            text-decoration: none;
            text-transform: uppercase;
            font-weight: 700;
            font-family: var(--font-display);
            letter-spacing: 2px;
            position: relative;
            transition: 0.3s;
            clip-path: polygon(15px 0, 100% 0, 100% calc(100% - 15px), calc(100% - 15px) 100%, 0 100%, 0 15px);
        }

        a.btn-primary {
            background: var(--neon-blue);
            color: #000;
            box-shadow: 0 0 20px rgba(0, 243, 255, 0.4);
        }

        a.btn-primary:hover {
            transform: translateY(-5px);
            background: #fff;
            box-shadow: 0 0 50px var(--neon-blue);
        }

        a.btn-secondary {
            background: transparent;
            color: var(--neon-pink);
            border: 2px solid var(--neon-pink);
            box-shadow: inset 0 0 10px rgba(255, 0, 85, 0.2);
        }

        a.btn-secondary:hover {
            background: var(--neon-pink);
            color: #000;
            box-shadow: 0 0 30px var(--neon-pink);
        }

        /* --- COUNTDOWN --- */
        .countdown {
            font-family: var(--font-display);
            font-size: 2.5rem;
            color: #fff;
            background: rgba(0, 0, 0, 0.6);
            border: 1px solid var(--neon-blue);
            padding: 1rem 3rem;
            display: inline-block;
            clip-path: polygon(20px 0, 100% 0, 100% calc(100% - 20px), calc(100% - 20px) 100%, 0 100%, 0 20px);
            position: relative;
            box-shadow: 0 0 30px rgba(0, 243, 255, 0.15);
        }

        .countdown::before {
            content: 'SYSTEM TIMER';
            position: absolute;
            top: -10px;
            left: 20px;
            background: #000;
            color: var(--neon-blue);
            font-size: 0.7rem;
            padding: 0 5px;
            font-family: var(--font-main);
        }

        /* --- CONTENT STYLING --- */
        section h2.section-title {
            font-family: var(--font-display);
            font-size: 2.5rem;
            color: #fff;
            margin-bottom: 3rem;
            display: flex;
            align-items: center;
        }

        section h2.section-title::before {
            content: '';
            width: 15px;
            height: 40px;
            background: var(--neon-pink);
            margin-right: 15px;
            transform: skewX(-20deg);
        }

        p.content-text {
            font-size: 1.2rem;
            color: #ccc;
            max-width: 900px;
            margin-bottom: 2rem;
            text-align: justify;
            border-left: 2px solid var(--neon-blue);
            padding-left: 20px;
            background: linear-gradient(90deg, rgba(0,243,255,0.05), transparent);
        }

        /* --- CARDS --- */
        .grid-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .game-card {
            background: var(--glass-bg);
            border: 1px solid rgba(255, 255, 255, 0.1);
            padding: 2rem;
            position: relative;
            transition: 0.3s;
            clip-path: polygon(0 0, 100% 0, 100% calc(100% - 20px), calc(100% - 20px) 100%, 0 100%);
            backdrop-filter: blur(5px);
        }

        .game-card:hover {
            border-color: var(--neon-blue);
            background: rgba(0, 243, 255, 0.05);
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0,0,0,0.5);
        }

        .game-card h2 {
            font-family: var(--font-display);
            font-size: 1.5rem;
            color: #fff;
            margin-bottom: 10px;
        }
        
        .game-card h3 {
             font-family: var(--font-display);
             font-size: 1.3rem;
             color: var(--neon-blue);
             margin-bottom: 10px;
        }

        .game-card p {
            font-size: 1rem;
            color: #aaa;
            margin-bottom: 20px;
        }

        .card-btn {
            width: 100%;
            padding: 12px;
            background: transparent;
            border: 1px solid var(--neon-blue);
            color: var(--neon-blue);
            font-family: var(--font-display);
            text-transform: uppercase;
            cursor: pointer;
            transition: 0.3s;
            clip-path: polygon(10px 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%, 0 10px);
        }

        .card-btn:hover {
            background: var(--neon-blue);
            color: #000;
            box-shadow: 0 0 15px var(--neon-blue);
        }

        /* --- REGULATIONS --- */
        .regulations-box {
            background: var(--glass-bg);
            border-left: 3px solid var(--neon-gold);
            padding: 2rem;
            clip-path: polygon(0 0, 100% 0, 100% 100%, 20px 100%, 0 calc(100% - 20px));
            backdrop-filter: blur(5px);
        }

        .regulations-box ul { list-style: none; }

        .regulations-box li {
            padding: 15px 0;
            border-bottom: 1px dashed rgba(255, 255, 255, 0.1);
            color: #ddd;
            display: flex;
            align-items: center;
        }

        .regulations-box li::before {
            content: '>';
            color: var(--neon-gold);
            font-weight: bold;
            margin-right: 15px;
        }

        footer {
            margin-top: 100px;
            padding: 3rem 0;
            background: #020202;
            text-align: center;
            border-top: 1px solid #222;
            color: #555;
            font-size: 0.9rem;
            font-family: var(--font-display);
            letter-spacing: 1px;
        }
/* REPLACE YOUR EXISTING MEDIA QUERY WITH THIS */
@media (max-width: 768px) {
    /* Adjust Hero Text Size */
    section:first-of-type h1 { font-size: 2.2rem; }
    
    /* Reset Header Clipping */
    header { clip-path: none; padding: 1rem; }

    /* Nav Layout */
    nav { 
        flex-direction: row; 
        justify-content: space-between; 
        align-items: center; 
        position: relative;
    }

    /* Show Hamburger Icon */
    .menu-toggle { display: block; }

    /* Hide Menu Links by Default */
    nav ul {
        display: none; /* Hidden initially */
        flex-direction: column;
        width: 100%;
        position: absolute;
        top: 100%;
        left: 0;
        background: rgba(0, 0, 0, 0.95);
        border-bottom: 2px solid var(--neon-blue);
        padding: 20px 0;
        gap: 1.5rem;
        z-index: 1001;
    }

    /* Class to show menu when clicked */
    nav ul.active {
        display: flex;
        animation: slideDown 0.3s ease-out;
    }

    /* Mobile Text Adjustments */
    .hero-logo { width: 250px; }
    p.content-text { border-left: none; padding-left: 0; }
    
    /* Fix Date Module for Mobile */
    .holo-separator { display: none; }
    .date-module-container { flex-direction: column; gap: 15px; }
}

@keyframes slideDown {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}
        
    .date-module-container {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 20px;
        margin: 20px 0 40px 0;
        flex-wrap: wrap;
    }

    /* Individual Panels */
    .holo-panel {
        display: flex;
        align-items: center;
        background: rgba(10, 20, 30, 0.6); /* Dark semi-transparent background */
        border: 1px solid rgba(0, 243, 255, 0.3); /* Subtle Cyan Border */
        padding: 10px 20px;
        border-radius: 4px; /* Slightly rounded corners */
        backdrop-filter: blur(5px);
        transition: 0.3s ease;
        position: relative;
        overflow: hidden;
    }

    /* Hover Effect: Glows brighter */
    .holo-panel:hover {
        background: rgba(0, 243, 255, 0.1);
        border-color: #00f3ff;
        box-shadow: 0 0 15px rgba(0, 243, 255, 0.4);
        transform: translateY(-2px);
    }

    /* Little corner accents for tech feel */
    .holo-panel::before {
        content: '';
        position: absolute;
        top: 0; left: 0; width: 8px; height: 8px;
        border-top: 2px solid #00f3ff;
        border-left: 2px solid #00f3ff;
    }
    .holo-panel::after {
        content: '';
        position: absolute;
        bottom: 0; right: 0; width: 8px; height: 8px;
        border-bottom: 2px solid #00f3ff;
        border-right: 2px solid #00f3ff;
    }

    /* Icons */
    .holo-icon svg {
        width: 32px;
        height: 32px;
        stroke: #00f3ff; /* Cyan color */
        margin-right: 15px;
        filter: drop-shadow(0 0 5px rgba(0, 243, 255, 0.8));
    }

    /* Text Column */
    .holo-content {
        display: flex;
        flex-direction: column;
        text-align: left;
    }

    /* "Mission Date" Label */
    .holo-label {
        font-size: 0.7rem;
        color: #888;
        letter-spacing: 2px;
        font-family: 'Orbitron', sans-serif; /* Your display font */
        margin-bottom: 2px;
    }

    /* The Actual Date/Time */
    .holo-data {
        font-size: 1.4rem;
        color: #fff;
        font-weight: 700;
        letter-spacing: 1px;
        font-family: 'Rajdhani', sans-serif; /* Your main font */
        text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
    }

    /* Divider Line */
    .holo-separator {
        width: 2px;
        height: 40px;
        background: linear-gradient(to bottom, transparent, #ff0055, transparent);
        opacity: 0.7;
    }

    /* Mobile Adjustment */
    @media (max-width: 600px) {
        .holo-separator { display: none; }
        .date-module-container { flex-direction: column; gap: 10px; }
        .holo-panel { width: 100%; justify-content: center; }
    }
    :root {
            --neon-blue: #00f3ff;
            --neon-pink: #ff0055;
            --neon-gold: #ffcc00;
            --led-red: #ff3333;
            --glass-bg: rgba(10, 15, 20, 0.4);
            --font-main: 'Rajdhani', sans-serif;
            --font-display: 'Orbitron', sans-serif;
            --font-tech: 'Share Tech Mono', monospace;
        }
        * { margin: 0; padding: 0; box-sizing: border-box; }
        html { scroll-behavior: smooth; }
        body {
            background-color: #000;
            color: #fff;
            font-family: var(--font-main);
            overflow-x: hidden;
            line-height: 1.6;
            min-height: 100vh;
            overflow-y: hidden; 
        }
        #vault-overlay {
            position: fixed; top: 0; left: 0; width: 100%; height: 100%;
            z-index: 9999;
            background: radial-gradient(circle at center, #1a202c 0%, #000 100%);
            display: flex; justify-content: center; align-items: center;
            transition: opacity 1s ease, visibility 1s;
        }

        .chip-interface {
            display: flex; flex-direction: column; align-items: center; gap: 30px;
        }

        .status-display {
            font-family: var(--font-tech); color: var(--neon-blue); 
            font-size: 1rem; letter-spacing: 2px;
            text-shadow: 0 0 5px rgba(0, 243, 255, 0.5);
            text-transform: uppercase;
        }
        .pcb-board {
            width: 320px; height: 320px;
            background: #0b151d;
            border-radius: 15px;
            position: relative;
            box-shadow: 
                inset 0 0 30px #000,
                0 0 50px rgba(0, 243, 255, 0.1);
            border: 2px solid #333;
            display: flex; justify-content: center; align-items: center;
        }
        .pcb-board::before, .pcb-board::after {
            content: ''; position: absolute; width: 10px; height: 10px;
            border-radius: 50%; background: #111; border: 1px solid #444;
        }
        .pcb-board::before { top: 10px; left: 10px; }
        .pcb-board::after { bottom: 10px; right: 10px; }
        .cpu-chip {
            width: 130px; height: 130px;
            position: relative;
            cursor: pointer;
            z-index: 10;
            transition: transform 0.1s;
        }
        .cpu-chip:active { transform: scale(0.98); }
        .chip-body {
            width: 100%; height: 100%;
            background: linear-gradient(145deg, #2b2b2b, #151515); /* Matte Plastic */
            border-radius: 4px;
            box-shadow: 
                5px 5px 15px #000, 
                -1px -1px 3px rgba(255,255,255,0.1);
            display: flex; flex-direction: column; justify-content: center; align-items: center;
            position: relative; z-index: 2;
            border: 1px solid #333;
        }

        .chip-text {
            display: flex; flex-direction: column; align-items: center;
            opacity: 0.6; pointer-events: none; transition: 0.3s;
        }
        .brand { font-family: sans-serif; font-weight: bold; color: #ddd; font-size: 14px; letter-spacing: 1px; }
        .model { font-family: monospace; color: #888; font-size: 10px; margin-top: 2px; }
        .chip-notch {
            position: absolute; top: 12px; left: 12px;
            width: 10px; height: 10px;
            background: #000; border-radius: 50%;
            box-shadow: inset 1px 1px 2px rgba(255,255,255,0.1);
        }
        .pin-row {
            position: absolute; display: flex; justify-content: space-between;
            z-index: 1; pointer-events: none;
        }
        .pin-row span {
            background: linear-gradient(to right, #999, #eee, #999); /* Silver Metal */
            box-shadow: 1px 1px 2px #000;
        }
        .top, .bottom { width: 90px; height: 12px; left: 20px; }
        .top { top: -12px; } .top span { width: 6px; height: 100%; }
        .bottom { bottom: -12px; } .bottom span { width: 6px; height: 100%; }

        .left, .right { width: 12px; height: 90px; top: 20px; flex-direction: column; }
        .left { left: -12px; } .left span { width: 100%; height: 6px; }
        .right { right: -12px; } .right span { width: 100%; height: 6px; }
        .pcb-traces {
            position: absolute; top: 0; left: 0; width: 100%; height: 100%;
            pointer-events: none;
        }

        .trace-group-power path, .trace-group-data path {
            fill: none; stroke: #2a2a2a; stroke-width: 4; stroke-linecap: round;
            transition: stroke 0.3s, filter 0.3s, opacity 0.3s;
        }
        .trace-group-data path { stroke-width: 2; } 
        .pcb-board.phase-1 .trace-group-power path {
            stroke: var(--neon-blue);
            filter: drop-shadow(0 0 6px var(--neon-blue));
        }
        .pcb-board.phase-1 .chip-body {
            border-color: var(--neon-blue);
            box-shadow: 0 0 30px rgba(0, 243, 255, 0.2);
        }
        .pcb-board.phase-1 .chip-text { opacity: 1; text-shadow: 0 0 10px #fff; }
        .pcb-board.phase-2 .trace-group-data path {
            stroke: var(--neon-blue);
            opacity: 0.5;
            filter: drop-shadow(0 0 2px var(--neon-blue));
        }
        body.unlocked #vault-overlay { opacity: 0; visibility: hidden; pointer-events: none; }
        body.unlocked .pcb-board { transform: scale(3); opacity: 0; transition: 0.8s; }
        body.unlocked { overflow-y: auto; }
        #space-canvas { position: fixed; top: 0; left: 0; width: 100%; height: 100%; z-index: -1; }
        .vignette { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: radial-gradient(circle, transparent 50%, #000 120%); z-index: -1; pointer-events: none; }

        header {
            position: fixed; top: 0; left: 0; width: 100%; z-index: 1000;
            background: rgba(2, 2, 5, 0.85); border-bottom: 1px solid rgba(0, 243, 255, 0.3);
            padding: 1rem 5%; backdrop-filter: blur(10px);
            clip-path: polygon(0 0, 100% 0, 100% 85%, 98% 100%, 2% 100%, 0 85%);
        }
        nav { display: flex; justify-content: space-between; align-items: center; max-width: 1400px; margin: 0 auto; }
        nav .logo { font-family: var(--font-display); font-size: 1.5rem; font-weight: 800; color: var(--neon-blue); text-transform: uppercase; letter-spacing: 2px; text-shadow: 0 0 15px var(--neon-blue); }
        nav ul { display: flex; gap: 2rem; list-style: none; }
        nav ul li a { text-decoration: none; color: #aaa; font-size: 1rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; transition: 0.3s; }
        nav ul li a:hover { color: #fff; text-shadow: 0 0 8px #fff; }
        section { padding: 100px 5%; width: 100%; max-width: 1300px; margin: 0 auto; }
        section:first-of-type { min-height: 100vh; display: flex; flex-direction: column; justify-content: center; align-items: center; text-align: center; padding-top: 140px; }
        h1 { font-family: var(--font-display); font-size: 4rem; line-height: 1; text-transform: uppercase; color: #fff; text-shadow: 3px 3px 0px var(--neon-pink); margin-bottom: 10px; animation: glitch 3s infinite; }
        h2 { font-family: var(--font-display); font-size: 1.2rem; color: var(--neon-blue); letter-spacing: 4px; text-transform: uppercase; margin-bottom: 0.5rem; }
        h3 { font-size: 1rem; color: #888; margin-bottom: 2rem; text-transform: uppercase; }
        p { color: #ddd; font-size: 1.1rem; letter-spacing: 1px; margin-bottom: 2rem; }

        @keyframes glitch {
            0% { transform: translate(0); } 2% { transform: translate(-2px, 2px); } 4% { transform: translate(2px, -2px); } 6% { transform: translate(0); } 100% { transform: translate(0); }
        }
        /* --- COUNTDOWN STYLES --- */
.countdown-wrapper {
    text-align: center;
    margin: 50px 0;
    padding: 20px;
}

.countdown-title {
    font-family: var(--font-display);
    color: var(--neon-gold);
    font-size: 1.2rem;
    letter-spacing: 3px;
    margin-bottom: 25px;
    text-shadow: 0 0 10px rgba(255, 204, 0, 0.3);
}

.countdown-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.time-card {
    background: rgba(10, 15, 20, 0.6); /* Dark Glass */
    border: 1px solid rgba(0, 243, 255, 0.3);
    padding: 20px 30px;
    min-width: 140px;
    backdrop-filter: blur(5px);
    position: relative;
    clip-path: polygon(10px 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%, 0 10px);
    transition: all 0.3s ease;
}

/* Hover Effect: Glows Gold */
.time-card:hover {
    transform: translateY(-5px);
    border-color: var(--neon-gold);
    box-shadow: 0 0 30px rgba(255, 204, 0, 0.15);
}

.time-val {
    font-family: var(--font-display);
    font-size: 3.5rem;
    color: #fff;
    text-shadow: 0 0 15px var(--neon-blue);
    font-weight: 700;
    line-height: 1.1;
}

/* Change Seconds Color for urgency */
.time-card:last-child .time-val {
    color: var(--neon-pink);
    text-shadow: 0 0 15px var(--neon-pink);
}

.time-label {
    font-family: var(--font-main);
    color: #aaa;
    font-size: 0.9rem;
    letter-spacing: 2px;
    margin-top: 5px;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .countdown-grid { gap: 15px; }
    .time-card { min-width: 80px; padding: 15px; }
    .time-val { font-size: 2rem; }
    .time-label { font-size: 0.7rem; }
}
        .btn-group { display: flex; gap: 20px; justify-content: center; margin-bottom: 40px; }
        a.btn {
            display: inline-block; padding: 15px 40px; text-decoration: none; text-transform: uppercase; font-weight: 700; font-family: var(--font-display); letter-spacing: 2px; transition: 0.3s;
            clip-path: polygon(15px 0, 100% 0, 100% calc(100% - 15px), calc(100% - 15px) 100%, 0 100%, 0 15px);
        }
        a.btn-primary { background: var(--neon-blue); color: #000; box-shadow: 0 0 20px rgba(0, 243, 255, 0.4); }
        a.btn-primary:hover { transform: translateY(-5px); background: #fff; box-shadow: 0 0 50px var(--neon-blue); }
        a.btn-secondary { background: transparent; color: var(--neon-pink); border: 2px solid var(--neon-pink); }
        a.btn-secondary:hover { background: var(--neon-pink); color: #000; box-shadow: 0 0 30px var(--neon-pink); }

        .date-module-container { display: flex; align-items: center; justify-content: center; gap: 20px; margin: 20px 0 40px 0; flex-wrap: wrap; }
        .holo-panel {
            display: flex; align-items: center; background: rgba(10, 20, 30, 0.6); 
            border: 1px solid rgba(0, 243, 255, 0.3); padding: 10px 20px; border-radius: 4px; 
            backdrop-filter: blur(5px); transition: 0.3s ease; position: relative;
        }
        .holo-panel:hover { border-color: #00f3ff; box-shadow: 0 0 15px rgba(0, 243, 255, 0.4); transform: translateY(-2px); }
        .holo-icon svg { width: 32px; height: 32px; stroke: #00f3ff; margin-right: 15px; filter: drop-shadow(0 0 5px rgba(0, 243, 255, 0.8)); }
        .holo-content { display: flex; flex-direction: column; text-align: left; }
        .holo-label { font-size: 0.7rem; color: #888; letter-spacing: 2px; font-family: 'Orbitron', sans-serif; }
        .holo-data { font-size: 1.4rem; color: #fff; font-weight: 700; letter-spacing: 1px; }
        .holo-separator { width: 2px; height: 40px; background: linear-gradient(to bottom, transparent, #ff0055, transparent); opacity: 0.7; }

        .section-title { font-family: var(--font-display); font-size: 2.5rem; color: #fff; margin-bottom: 3rem; display: flex; align-items: center; }
        .section-title::before { content: ''; width: 15px; height: 40px; background: var(--neon-pink); margin-right: 15px; transform: skewX(-20deg); }

        .grid-container { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 2rem; margin-top: 3rem; }

        .game-card {
            background: var(--glass-bg); border: 1px solid rgba(255, 255, 255, 0.1); padding: 2rem; transition: 0.3s;
            clip-path: polygon(0 0, 100% 0, 100% calc(100% - 20px), calc(100% - 20px) 100%, 0 100%); backdrop-filter: blur(5px);
        }
        .game-card:hover { border-color: var(--neon-blue); background: rgba(0, 243, 255, 0.05); transform: translateY(-5px); box-shadow: 0 10px 30px rgba(0,0,0,0.5); }
        .game-card h3 { font-family: var(--font-display); font-size: 1.3rem; color: var(--neon-blue); margin-bottom: 10px; }
        
        .card-btn {
            width: 100%; padding: 12px; background: transparent; border: 1px solid var(--neon-blue);
            color: var(--neon-blue); font-family: var(--font-display); text-transform: uppercase;
            cursor: pointer; transition: 0.3s;
            clip-path: polygon(10px 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%, 0 10px);
        }
        .card-btn:hover { background: var(--neon-blue); color: #000; box-shadow: 0 0 15px var(--neon-blue); }

        .regulations-box {
            background: var(--glass-bg); border-left: 3px solid var(--neon-gold); padding: 2rem;
            clip-path: polygon(0 0, 100% 0, 100% 100%, 20px 100%, 0 calc(100% - 20px)); backdrop-filter: blur(5px);
        }
        .regulations-box ul { list-style: none; }
        .regulations-box li { padding: 15px 0; border-bottom: 1px dashed rgba(255, 255, 255, 0.1); color: #ddd; display: flex; align-items: center; }
        .regulations-box li::before { content: '>'; color: var(--neon-gold); font-weight: bold; margin-right: 15px; }
footer {
    margin-top: 50px;
    padding: 20px;
    text-align: center;
    font-family: var(--font-tech);
    font-size: 0.8rem;
    background: #000;            
    color: #444;                 
    border-top: 1px solid #111;  
    text-shadow: none;           
    opacity: 0.7;                
}
        .menu-toggle { display: none; font-size: 2rem; color: var(--neon-blue); cursor: pointer; }
        @media (max-width: 768px) {
            section:first-of-type h1 { font-size: 2.2rem; }
            .countdown { font-size: 2.5rem; padding: 10px 20px; }
            header { clip-path: none; padding: 1rem; }
            nav { flex-direction: row; position: relative; }
            .menu-toggle { display: block; }
            nav ul { display: none; flex-direction: column; width: 100%; position: absolute; top: 100%; left: 0; background: rgba(0, 0, 0, 0.95); border-bottom: 2px solid var(--neon-blue); padding: 20px 0; gap: 1.5rem; z-index: 1001; }
            nav ul.active { display: flex; animation: slideDown 0.3s ease-out; }
            .holo-separator { display: none; }
            .date-module-container { flex-direction: column; gap: 15px; }
        }
        @keyframes slideDown { from { opacity: 0; transform: translateY(-20px); } to { opacity: 1; transform: translateY(0); } }
#ai-trigger {
    position: fixed; bottom: 30px; right: 30px;
    width: 60px; height: 60px;
    background: var(--neon-blue);
    border-radius: 50%;
    display: flex; justify-content: center; align-items: center;
    cursor: pointer;
    box-shadow: 0 0 20px var(--neon-blue);
    z-index: 10000;
    transition: transform 0.3s;
    animation: float 3s ease-in-out infinite;
}
#ai-trigger:hover { transform: scale(1.1); box-shadow: 0 0 40px var(--neon-blue); }
@keyframes float { 0% { bottom: 30px; } 50% { bottom: 40px; } 100% { bottom: 30px; } }

#ai-chat-interface {
    position: fixed; bottom: 100px; right: 30px;
    width: 350px; height: 450px;
    background: rgba(5, 10, 15, 0.95);
    border: 1px solid var(--neon-blue);
    border-radius: 10px;
    display: flex; flex-direction: column;
    overflow: hidden;
    transform: scale(0); transform-origin: bottom right;
    transition: 0.3s cubic-bezier(0.18, 0.89, 0.32, 1.28);
    z-index: 9999;
    box-shadow: 0 0 30px rgba(0,0,0,0.8);
}
#ai-chat-interface.active { transform: scale(1); }

.chat-header {
    background: rgba(0, 243, 255, 0.1); padding: 15px;
    border-bottom: 1px solid var(--neon-blue);
    display: flex; justify-content: space-between;
    font-family: var(--font-display); color: var(--neon-blue);
}
.close-chat { cursor: pointer; color: #fff; }
.chat-body {
    flex: 1; padding: 15px; overflow-y: auto;
    font-family: var(--font-tech); font-size: 0.9rem;
    display: flex; flex-direction: column; gap: 10px;
}
.bot-msg, .user-msg {
    max-width: 85%; padding: 10px; border-radius: 5px; word-wrap: break-word;
}
.bot-msg {
    background: rgba(0, 243, 255, 0.1); border-left: 3px solid var(--neon-blue);
    align-self: flex-start; color: #ddd;
}
.user-msg {
    background: rgba(255, 0, 85, 0.1); border-right: 3px solid var(--neon-pink);
    align-self: flex-end; color: #fff; text-align: right;
}
.chat-input-area { display: flex; border-top: 1px solid #333; }
.chat-input-area input {
    flex: 1; background: transparent; border: none; padding: 15px; color: #fff; outline: none; font-family: var(--font-tech);
}
.chat-input-area button {
    background: var(--neon-blue); border: none; padding: 0 20px; font-weight: bold; cursor: pointer; font-family: var(--font-display);
}
.modal-overlay {
    display: none; 
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 20000;
    justify-content: center; align-items: center;
    backdrop-filter: blur(8px);
    opacity: 0; transition: opacity 0.3s ease;
}
.modal-overlay.active { display: flex; opacity: 1; }

.reg-box {
    width: 90%; max-width: 450px;
    background: #0b1015;
    border: 1px solid var(--neon-blue);
    padding: 2rem;
    position: relative;
    box-shadow: 0 0 30px rgba(0, 243, 255, 0.15);
    transform: scale(0.9); transition: transform 0.3s cubic-bezier(0.18, 0.89, 0.32, 1.28);
}
.modal-overlay.active .reg-box { transform: scale(1); }
.reg-box::before { content: ''; position: absolute; top: -2px; left: -2px; width: 20px; height: 20px; border-top: 2px solid var(--neon-pink); border-left: 2px solid var(--neon-pink); }
.reg-box::after { content: ''; position: absolute; bottom: -2px; right: -2px; width: 20px; height: 20px; border-bottom: 2px solid var(--neon-pink); border-right: 2px solid var(--neon-pink); }

.reg-title {
    font-family: var(--font-display); color: #fff; font-size: 1.5rem; 
    text-align: center; margin-bottom: 20px; letter-spacing: 2px;
    border-bottom: 1px solid #333; padding-bottom: 10px;
}

.input-group { margin-bottom: 15px; position: relative; }
.input-group label {
    display: block; font-family: var(--font-tech); color: var(--neon-blue); font-size: 0.8rem; margin-bottom: 5px;
}
.input-group input, .input-group select {
    width: 100%; background: rgba(255,255,255,0.05); border: 1px solid #333; color: #fff;
    padding: 10px; font-family: var(--font-main); font-size: 1rem; outline: none; transition: 0.3s;
}
.input-group input:focus, .input-group select:focus { border-color: var(--neon-blue); box-shadow: 0 0 10px rgba(0, 243, 255, 0.2); }
.input-group select option { background: #000; color: #fff; }

.submit-btn {
    width: 100%; padding: 12px; margin-top: 10px;
    background: var(--neon-blue); color: #000; border: none;
    font-family: var(--font-display); font-weight: bold; cursor: pointer;
    text-transform: uppercase; letter-spacing: 1px; transition: 0.3s;
}
.submit-btn:hover { background: #fff; box-shadow: 0 0 20px var(--neon-blue); }

.close-modal {
    position: absolute; top: 10px; right: 15px;
    color: #555; font-size: 1.5rem; cursor: pointer; transition: 0.3s;
}
.close-modal:hover { color: var(--neon-pink); }



/* --- THE HOLOGRAPHIC CARD --- */
.holo-card {
    position: relative;
    width: 320px;
    height: 480px; /* Portrait ID Card */
    background: rgba(10, 15, 20, 0.9);
    border: 1px solid var(--neon-blue);
    border-radius: 15px;
    margin: 0 auto;
    overflow: hidden;
    font-family: var(--font-tech);
    display: flex;
    flex-direction: column;
    box-shadow: 0 0 30px rgba(0, 243, 255, 0.15);
    /* Circuit Board Pattern Background */
    background-image: 
        linear-gradient(rgba(0, 243, 255, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 243, 255, 0.05) 1px, transparent 1px);
    background-size: 20px 20px;
}

/* 1. Moving Scan Line Animation */
.scan-line {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--neon-blue);
    opacity: 0.6;
    box-shadow: 0 0 15px var(--neon-blue);
    animation: scanMove 3s linear infinite;
    z-index: 10;
    pointer-events: none;
}

@keyframes scanMove {
    0% { top: -10%; opacity: 0; }
    50% { opacity: 1; }
    100% { top: 110%; opacity: 0; }
}

/* 2. Holographic Glare Effect */
.card-glare {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent 40%, rgba(255,255,255,0.05) 50%, transparent 60%);
    animation: glareRotate 6s infinite linear;
    pointer-events: none;
    z-index: 1;
}
@keyframes glareRotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* 3. Header & Footer */
.card-header {
    background: rgba(0, 243, 255, 0.1);
    padding: 15px;
    border-bottom: 1px solid var(--neon-blue);
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 2;
}
.logo-text { font-family: var(--font-display); font-size: 0.9rem; color: #fff; letter-spacing: 1px; }
.year-badge { background: var(--neon-pink); color: #fff; padding: 2px 6px; font-size: 0.7rem; border-radius: 4px; font-weight: bold; }

/* 4. Main Content Area */
.card-content {
    flex: 1;
    padding: 30px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 2;
}

/* QR Code Styling */
.qr-box {
    position: relative;
    width: 140px;
    height: 140px;
    margin-bottom: 30px;
    padding: 10px;
    background: #fff;
    border-radius: 8px;
}
.qr-box img { width: 100%; height: 100%; display: block; }

/* Decorative brackets around QR */
.qr-border {
    position: absolute;
    top: -5px; left: -5px; right: -5px; bottom: -5px;
    border: 2px solid transparent;
    border-top-color: var(--neon-blue);
    border-bottom-color: var(--neon-blue);
    border-radius: 10px;
}

/* Typography */
.text-info { width: 100%; text-align: center; }
.label { font-size: 0.6rem; color: #888; letter-spacing: 2px; margin-bottom: 5px; }
#card-name { 
    font-family: var(--font-display); 
    color: var(--neon-gold); 
    font-size: 1.5rem; 
    text-transform: uppercase; 
    margin-bottom: 20px; 
    text-shadow: 0 0 5px rgba(255, 204, 0, 0.5);
}
#card-dept { 
    font-size: 1.1rem; 
    color: var(--neon-blue); 
    text-transform: uppercase; 
    letter-spacing: 1px; 
}

/* 5. Footer with Fake Barcode */
.card-footer {
    padding: 15px;
    border-top: 1px solid var(--neon-blue);
    background: rgba(0,0,0,0.3);
    z-index: 2;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.barcode {
    height: 25px;
    width: 100px;
    /* CSS Trick to create a barcode using gradients */
    background: repeating-linear-gradient(
        90deg,
        #fff 0px,
        #fff 2px,
        transparent 2px,
        transparent 4px,
        #fff 4px,
        #fff 5px,
        transparent 5px,
        transparent 7px
    );
    opacity: 0.7;
}

.id-code { font-size: 0.8rem; color: #fff; letter-spacing: 1px; }

/* Corner Brackets Decoration */
.corner-brackets {
    position: absolute;
    top: 10px; left: 10px; right: 10px; bottom: 10px;
    border: 1px solid transparent;
    z-index: 1;
}
/* Use pseudo-elements for corners */
.corner-brackets::before, .corner-brackets::after {
    content: ''; position: absolute; width: 15px; height: 15px; border-color: var(--neon-pink); border-style: solid;
}
.corner-brackets::before { top: 0; left: 0; border-width: 2px 0 0 2px; }
.corner-brackets::after { bottom: 0; right: 0; border-width: 0 2px 2px 0; }
/* Add this to your style.css */
input[type="text"] {
    text-transform: uppercase;
}
::placeholder {
    text-transform: none; /* Keeps placeholder readable */
}
#space-canvas {
    position: fixed;
    top: 0;
    left: 0;
    z-index: -2; /* Puts it way behind everything */
}
.vignette {
    pointer-events: none; /* CRITICAL: Ensures clicks pass through the shadow overlay */
    z-index: 10; /* Keeps the visual effect on top */
}
/* CYBERPUNK GOOGLE BUTTON */
.google-btn {
    background: rgba(219, 68, 55, 0.1); /* Faint red background */
    border: 1px solid #db4437;          /* Google Red Border */
    color: #ff6b6b;                     /* Neon Red Text */
    font-family: 'Share Tech Mono', monospace;
    letter-spacing: 2px;
    padding: 12px 25px;
    clip-path: polygon(10% 0, 100% 0, 100% 70%, 90% 100%, 0 100%, 0 30%); /* Angled corners */
    transition: all 0.3s ease;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 0 5px rgba(219, 68, 55, 0.2);
}

.google-btn i {
    font-size: 1.1rem;
}

/* HOVER EFFECT: Bright Neon Glow */
.google-btn:hover {
    background: rgba(219, 68, 55, 0.3);
    color: #fff;
    box-shadow: 0 0 20px rgba(219, 68, 55, 0.6), 
                inset 0 0 10px rgba(219, 68, 55, 0.4);
    text-shadow: 0 0 5px #ff4444;
    cursor: pointer;
    transform: translateY(-2px);
}

/* ACTIVE STATE (When clicked) */
.google-btn:active {
    transform: scale(0.95);
    box-shadow: 0 0 5px rgba(219, 68, 55, 0.8);
}
/* LOCKED STATE (Default) */
.locked-btn {
    border: 1px solid #555 !important;
    color: #777 !important;
    background: transparent !important;
    cursor: not-allowed; /* Shows 'stop' sign on hover */
    pointer-events: all; /* Allows clicking so we can show the "Access Denied" alert */
    box-shadow: none !important;
    transition: all 0.3s ease;
}

/* LOCKED ICON STYLE */
.locked-btn i {
    margin-right: 8px;
    color: #ff3333; /* Red Lock Icon */
}

/* UNLOCKED STATE (Green & Glowing) */
.unlocked-btn {
    border: 1px solid #0f0 !important;
    color: #0f0 !important;
    box-shadow: 0 0 10px rgba(0, 255, 0, 0.2) !important;
    cursor: pointer;
}

.unlocked-btn:hover {
    background: rgba(0, 255, 0, 0.1) !important;
    box-shadow: 0 0 20px rgba(0, 255, 0, 0.4) !important;
}
/* Add or Ensure this is in your <style> block */
@media (max-width: 768px) {
    /* Adjust Hero Text for smaller screens */
    section:first-of-type h1 { 
        font-size: 2.2rem; 
    }
    
    /* Reset Header Clipping so the menu doesn't get cut off */
    header { 
        clip-path: none; 
        padding: 1rem; 
    }

    /* Nav Layout */
    nav { 
        flex-direction: row; 
        justify-content: space-between; 
        align-items: center; 
        position: relative;
    }

    /* Show Hamburger Icon */
    .menu-toggle { 
        display: block; 
        font-size: 2rem;
        color: var(--neon-blue);
        cursor: pointer;
    }

    /* Hide Menu Links by Default */
    nav ul {
        display: none; 
        flex-direction: column;
        width: 100%;
        position: absolute;
        top: 100%;
        left: 0;
        background: rgba(2, 2, 5, 0.98); /* Solid background */
        border-bottom: 2px solid var(--neon-blue);
        padding: 20px 0;
        gap: 1.5rem;
        z-index: 1001;
    }

    /* Class to show menu when clicked (triggered by JS) */
    nav ul.active {
        display: flex;
        animation: slideDown 0.3s ease-out;
    }

    /* Stack the Date/Time panels vertically */
    .date-module-container { 
        flex-direction: column; 
        gap: 15px; 
    }
    .holo-separator { 
        display: none; 
    }
}

/* Animation for the menu dropping down */
@keyframes slideDown {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}
/* --- KEYFRAMES DEFINITIONS --- */

/* 1. Menu Slide Down Animation */
@keyframes slideDown {
    0% { 
        opacity: 0; 
        transform: translateY(-20px); 
    }
    100% { 
        opacity: 1; 
        transform: translateY(0); 
    }
}

/* 2. Glitch Effect (optimized for text) */
@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); }
}

/* 3. Logo Pulse (Breathing effect) */
@keyframes pulseLogo {
    0% { 
        transform: scale(1); 
        filter: drop-shadow(0 0 20px rgba(0, 243, 255, 0.3)); 
    }
    100% { 
        transform: scale(1.05); 
        filter: drop-shadow(0 0 40px rgba(0, 243, 255, 0.6)); 
    }
}
/* --- RESPONSIVE DESIGN (Tablets & Mobiles) --- */
@media screen and (max-width: 768px) {

    /* --- 1. LAYOUT CHANGES --- */
    
    /* Fix Header Clipping */
    header {
        clip-path: none; /* Removes the angled cut that looks bad on mobile */
        padding: 15px 20px;
    }

    /* Stack Navigation Vertically */
    nav {
        flex-wrap: wrap; 
    }

    .menu-toggle {
        display: block; /* Show hamburger icon */
    }

    /* Hide the list initially */
    nav ul {
        display: none;
        flex-direction: column;
        width: 100%;
        text-align: center;
        margin-top: 20px;
        background: rgba(0, 0, 0, 0.95);
        padding: 20px 0;
        border-top: 1px solid var(--neon-blue);
    }

    /* --- 2. APPLYING KEYFRAMES TO MOBILE MENU --- */
    /* When JavaScript adds the 'active' class, run the slideDown keyframe */
    nav ul.active {
        display: flex;
        animation: slideDown 0.4s ease-out forwards; 
    }

    /* --- 3. TYPOGRAPHY ADJUSTMENTS --- */
    
    /* Shrink the giant Hero Title */
    section:first-of-type h1 {
        font-size: 2.5rem; /* Down from 4rem */
        animation: glitch 4s infinite; /* Slow down glitch on mobile to be less distracting */
    }

    .hero-logo {
        width: 200px; /* Smaller logo */
        animation: pulseLogo 3s infinite alternate; /* Faster pulse on mobile */
    }

    section h2.section-title {
        font-size: 1.8rem; /* Smaller section headers */
    }

    /* --- 4. MODULE ADJUSTMENTS --- */

    /* Stack the Date/Time Counter */
    .date-module-container {
        flex-direction: column;
        gap: 15px;
    }
    
    /* Hide the vertical separator lines on mobile */
    .holo-separator {
        display: none;
    }

    /* Make Countdown Timer Stack */
    .countdown-grid {
        gap: 10px;
    }
    
    .time-card {
        min-width: 80px; /* Smaller timer boxes */
        padding: 15px 10px;
    }

    .time-val {
        font-size: 2rem; /* Smaller numbers */
    }

    /* --- 5. GRID SYSTEM RESET --- */
    /* Force grids to be 1 column on small phones */
    .grid-container {
        grid-template-columns: 1fr; 
        padding: 0 10px;
    }
}