/* leetlaunch.css - Retro 8-bit theme */

@import url('https://fonts.googleapis.com/css2?family=Press+Start+2P&family=Space+Grotesk:wght@300;400;500;600;700&display=swap');

:root {
    --bg-dark: #07091A; /* Dark blue background */
    --grid-line: rgba(70, 90, 200, 0.3); /* Lighter blue for grid */
    --text-main: #FFFFFF;
    --text-cyan: #00FFFF; /* Bright cyan for accents */
    --box-blue: #182655; /* Blue background for speaker cards */
    /* Alias required by main.css */
    --bg-deep: var(--bg-dark);
    --font-display: 'Space Grotesk', sans-serif;
    --font-body: 'Space Grotesk', sans-serif;
    --text-muted: rgba(255,255,255,0.55);
}

/* ═══════════════════════════════════════════════════════
   NAVBAR — same glass-header shape, retro cyan accent
   ═══════════════════════════════════════════════════════ */

/* Tighten header gap so BITS logo sits flush */
.ll-header {
    gap: 0.75rem;
}

/* Pill nav: replace white glass tint with cyan glass */
.ll-nav {
    border-color: rgba(0, 255, 255, 0.18) !important;
    background: rgba(5, 8, 28, 0.75) !important;
    box-shadow: 0 8px 32px rgba(0,0,0,0.6), 0 0 0 1px rgba(0,255,255,0.08) inset !important;
}

/* Nav links: cyan hover glow instead of default white */
.ll-link:hover,
.ll-link:focus-visible {
    color: var(--text-cyan) !important;
    background: rgba(0, 255, 255, 0.07) !important;
    border-color: rgba(0, 255, 255, 0.2) !important;
    box-shadow: 0 0 12px rgba(0, 255, 255, 0.18) !important;
}
.ll-link:hover img,
.ll-link:focus-visible img {
    opacity: 1;
    filter: brightness(0) invert(1) sepia(1) hue-rotate(160deg) saturate(6);
}

/* BITS logo: same pill bubble as the ISTE logo-link on the right */
.ll-bits-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 9999px;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
    padding: 0 1rem;
    height: 3.5rem;
    text-decoration: none;
    transition: border-color 0.25s, box-shadow 0.25s;
}
.ll-bits-link:hover {
    border-color: rgba(0, 255, 255, 0.3);
    box-shadow: 0 4px 20px rgba(0, 255, 255, 0.15);
}
.ll-bits-logo {
    height: 2rem;
    width: auto;
    object-fit: contain;
    display: block;
    filter: brightness(0) invert(1);
    opacity: 0.85;
    transition: opacity 0.25s;
}
.ll-bits-link:hover .ll-bits-logo {
    opacity: 1;
}

/* ─── Floating Join ISTE Button (Phone & Desktop Bottom Right) ─── */
.floating-join-btn {
    position: fixed !important;
    bottom: 2rem !important;
    right: 1.75rem !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 0.6rem !important;
    background: #00ffff !important;
    color: #000000 !important;
    border: 2px solid #ffffff !important;
    padding: 0.85rem 1.6rem !important;
    border-radius: 9999px !important;
    font-family: 'Space Grotesk', 'Inter', system-ui, sans-serif !important;
    font-size: 0.95rem !important;
    font-weight: 800 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.05em !important;
    text-decoration: none !important;
    white-space: nowrap !important;
    box-shadow: 0 0 25px rgba(0, 255, 255, 0.85), 0 8px 30px rgba(0, 0, 0, 0.8) !important;
    z-index: 999999 !important;
    transition: all 0.25s ease !important;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    animation: floatButtonPulse 2.5s infinite ease-in-out !important;
}

.floating-join-btn::after {
    content: '→';
    font-family: system-ui, sans-serif;
    font-size: 1.1rem;
    font-weight: 900;
    line-height: 1;
    transition: transform 0.25s ease;
}

.floating-join-btn:hover,
.floating-join-btn:active {
    background: #ffffff !important;
    color: #000000 !important;
    box-shadow: 0 0 35px #00ffff, 0 10px 35px rgba(0, 0, 0, 0.9) !important;
    transform: translateY(-3px) scale(1.05) !important;
}

.floating-join-btn:hover::after,
.floating-join-btn:active::after {
    transform: translateX(4px);
}

@keyframes floatButtonPulse {
    0%, 100% {
        box-shadow: 0 0 20px rgba(0, 255, 255, 0.6), 0 6px 20px rgba(0, 0, 0, 0.7);
        transform: scale(1);
    }
    50% {
        box-shadow: 0 0 35px rgba(0, 255, 255, 0.95), 0 10px 30px rgba(0, 0, 0, 0.85);
        transform: scale(1.04);
    }
}

/* Mobile Drawer Join Link */
.mobile-join-nav-link {
    border-color: rgba(0, 255, 255, 0.4) !important;
    background: rgba(0, 255, 255, 0.08) !important;
}
.mobile-join-nav-link:hover {
    background: var(--text-cyan) !important;
    color: var(--bg-dark) !important;
}

@media screen and (max-width: 768px) {
    .floating-join-btn {
        display: inline-flex !important;
        position: fixed !important;
        bottom: max(1.5rem, env(safe-area-inset-bottom, 1.5rem)) !important;
        right: max(1.25rem, env(safe-area-inset-right, 1.25rem)) !important;
        padding: 0.75rem 1.4rem !important;
        font-size: 0.88rem !important;
        z-index: 999999 !important;
    }
}

@media screen and (max-width: 480px) {
    .floating-join-btn {
        display: inline-flex !important;
        position: fixed !important;
        bottom: max(1.25rem, env(safe-area-inset-bottom, 1.25rem)) !important;
        right: max(1rem, env(safe-area-inset-right, 1rem)) !important;
        padding: 0.7rem 1.25rem !important;
        font-size: 0.82rem !important;
        z-index: 999999 !important;
    }
}

/* Ensure main doesn't start behind the fixed navbar */
main {
    padding-top: 120px;
}



body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: 'Space Grotesk', sans-serif;
    margin: 0;
    overflow-x: hidden;
    position: relative;
}

/* Grid background */
.retro-grid-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-image: 
        linear-gradient(var(--grid-line) 1px, transparent 1px),
        linear-gradient(90deg, var(--grid-line) 1px, transparent 1px);
    background-size: 40px 40px;
    z-index: -2;
    pointer-events: none;
}

/* Scrolling Code Background */
.code-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    overflow: hidden;
    display: flex;
    gap: 0.5rem;
    pointer-events: none;
    opacity: 0.38;
}

.code-col {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    padding: 0.25rem;
    animation: scrollCode 24s linear infinite;
    will-change: transform;
}

.code-col:nth-child(odd) {
    animation-duration: 26s;
    animation-direction: normal;
}

.code-col:nth-child(even) {
    animation-duration: 20s;
    animation-direction: reverse;
}

.code-col:nth-child(3) { animation-duration: 22s; }
.code-col:nth-child(4) { animation-duration: 28s; }
.code-col:nth-child(5) { animation-duration: 24s; }
.code-col:nth-child(6) { animation-duration: 18s; }
.code-col:nth-child(7) { animation-duration: 30s; }
.code-col:nth-child(8) { animation-duration: 21s; }

.code-col span {
    display: block;
    font-family: 'Space Grotesk', 'Courier New', monospace;
    font-size: 0.78rem;
    white-space: nowrap;
    color: rgba(0, 240, 255, 0.55);
    letter-spacing: 0.04em;
    user-select: none;
    text-shadow: 0 0 6px rgba(0, 255, 255, 0.25);
}

.code-col .code-tag {
    font-family: 'Press Start 2P', monospace;
    font-size: 0.65rem;
    color: #00ff88;
    background: rgba(0, 255, 136, 0.08);
    border: 1px solid rgba(0, 255, 136, 0.25);
    padding: 0.2rem 0.4rem;
    border-radius: 3px;
    display: inline-block;
    text-shadow: 0 0 8px rgba(0, 255, 136, 0.4);
    margin: 0.3rem 0;
}

@keyframes scrollCode {
    from { transform: translateY(0); }
    to   { transform: translateY(-50%); }
}



/* Header/Nav overrides if any */
nav {
    z-index: 100;
}

/* Typography */
h1, h2, h3, .retro-text {
    font-family: 'Press Start 2P', monospace;
    text-transform: uppercase;
}

.text-cyan {
    color: var(--text-cyan);
}

/* ─── CRT scanlines overlay (subtle) ─── */
body::after {
    content: '';
    position: fixed;
    inset: 0;
    background: repeating-linear-gradient(
        0deg,
        rgba(0,0,0,0.04) 0px,
        rgba(0,0,0,0.04) 1px,
        transparent 1px,
        transparent 3px
    );
    pointer-events: none;
    z-index: 9998;
}

/* ─── Scroll-reveal fade-up ─── */
.reveal {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.7s cubic-bezier(0.16,1,0.3,1), transform 0.7s cubic-bezier(0.16,1,0.3,1);
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ─── HERO SECTION ─── */
.hero-section {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 140px 2rem 4rem;
    position: relative;
}

.hero-title {
    font-size: clamp(2.2rem, 9vw, 6.5rem);
    letter-spacing: 4px;
    line-height: 1.1;
    margin: 0.75rem 0 1.25rem;
    position: relative;
    display: inline-flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    text-shadow:
        2px 2px 0 rgba(0,0,0,0.6),
        0 0 40px rgba(0,255,255,0.3),
        0 0 80px rgba(0,200,255,0.1);
}

.hero-title .title-dash {
    display: inline-block;
}

.hero-title .title-word {
    display: inline-block;
}

/* Blinking cursor after the title */
.hero-title::after {
    content: '_';
    display: inline-block;
    color: var(--text-cyan);
    animation: cursorBlink 1s step-end infinite;
    margin-left: 4px;
    text-shadow: 0 0 12px var(--text-cyan);
}
@keyframes cursorBlink {
    0%, 100% { opacity: 1; }
    50%       { opacity: 0; }
}

.hero-subtitle {
    font-family: 'Press Start 2P', monospace;
    font-size: clamp(0.6rem, 2vw, 1rem);
    color: rgba(255,255,255,0.65);
    letter-spacing: 2px;
    margin-bottom: 0.25rem;
}

/* Hero tagline */
.learn-tagline {
    font-size: clamp(0.8rem, 2.5vw, 1.2rem);
    margin-top: 1.75rem;
    letter-spacing: 3px;
    text-shadow: 0 0 20px rgba(0,255,255,0.4);
}

/* Hero dino */
.hero-dino-wrap {
    margin: 1.5rem auto 0;
    max-width: 520px;
    width: 90%;
}
.hero-dino-img {
    width: 100%;
    height: auto;
    display: block;
    filter: drop-shadow(0 0 24px rgba(0, 200, 255, 0.5))
            drop-shadow(0 0 60px rgba(0, 100, 255, 0.25));
    animation: floatDino 5s ease-in-out infinite;
}
@keyframes floatDino {
    0%, 100% { transform: translateY(0px); }
    50%       { transform: translateY(-14px); }
}

/* ═══════════════════════════════════════════════════════
   GUIDELINES & PREREQUISITES
   ═══════════════════════════════════════════════════════ */
.guidelines-section {
    padding: 4rem 2rem;
    max-width: 780px;
    margin: 0 auto;
}

.guidelines-title {
    font-size: clamp(0.8rem, 2.5vw, 1.2rem);
    letter-spacing: 3px;
    text-align: center;
    margin-bottom: 0.75rem;
    position: relative;
    padding-bottom: 1.25rem;
}
.guidelines-title::after {
    content: '';
    display: block;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--text-cyan), transparent);
    position: absolute;
    bottom: 0;
    left: 0;
    box-shadow: 0 0 8px rgba(0, 255, 255, 0.4);
}

.guidelines-list {
    list-style: none;
    padding: 0;
    margin: 2rem 0 0;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.guideline-item {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    background: rgba(24, 38, 85, 0.45);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 255, 255, 0.12);
    border-left: 3px solid var(--text-cyan);
    padding: 1.25rem 1.75rem;
    transition: background 0.3s, border-color 0.3s, transform 0.3s, box-shadow 0.3s;
}
.guideline-item:hover {
    background: rgba(0, 255, 255, 0.06);
    border-color: rgba(0, 255, 255, 0.4);
    transform: translateX(6px);
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.1);
}

.gl-arrow {
    font-family: 'Press Start 2P', monospace;
    font-size: 1rem;
    color: var(--text-cyan);
    flex-shrink: 0;
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.6);
    animation: arrowPulse 2s ease-in-out infinite alternate;
}
@keyframes arrowPulse {
    from { text-shadow: 0 0 6px rgba(0, 255, 255, 0.4); }
    to   { text-shadow: 0 0 18px rgba(0, 255, 255, 0.9); }
}

.gl-text {
    font-family: 'Press Start 2P', monospace;
    font-size: clamp(0.65rem, 1.8vw, 0.9rem);
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
}



.hero-dino-container {
    position: relative;
    max-width: 600px;
    margin: 2rem auto;
    z-index: 10;
}

.hero-dino-img {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 0 20px rgba(0, 255, 255, 0.4));
    animation: floatDino 4s ease-in-out infinite;
}

@keyframes floatDino {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

/* ─── Section label decorator ─── */
.section-label {
    font-family: 'Press Start 2P', monospace;
    font-size: 0.6rem;
    letter-spacing: 0.3em;
    color: rgba(0,255,255,0.45);
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 0.75rem;
}
.section-label::before { content: '[ '; }
.section-label::after  { content: ' ]'; }

/* Event Info */
.event-info-strip {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin: 0 auto 2rem;
    max-width: 900px;
    padding: 0 2rem;
}

.info-card {
    position: relative;
    background: rgba(24, 38, 85, 0.7);
    border: 1px solid rgba(0,255,255,0.22);
    border-radius: 4px;
    padding: 1.75rem 2.25rem;
    text-align: center;
    backdrop-filter: blur(10px);
    flex: 1;
    min-width: 160px;
    transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
    overflow: hidden;
}
/* pixel corner accents */
.info-card::before,
.info-card::after {
    content: '';
    position: absolute;
    width: 10px; height: 10px;
}
.info-card::before {
    top: -1px; left: -1px;
    border-top: 2px solid var(--text-cyan);
    border-left: 2px solid var(--text-cyan);
}
.info-card::after {
    bottom: -1px; right: -1px;
    border-bottom: 2px solid var(--text-cyan);
    border-right: 2px solid var(--text-cyan);
}
.info-card:hover {
    transform: translateY(-6px);
    border-color: rgba(0,255,255,0.5);
    box-shadow: 0 8px 30px rgba(0,255,255,0.15);
}

.info-icon {
    font-size: 1.8rem;
    color: var(--text-cyan);
    margin-bottom: 0.85rem;
    display: block;
    text-shadow: 0 0 12px rgba(0,255,255,0.5);
}

.info-text {
    font-family: 'Press Start 2P', monospace;
    font-size: 0.8rem;
    line-height: 1.8;
    color: rgba(255,255,255,0.9);
}

/* Speakers Section */
.speakers-section {
    padding: 4rem 2rem;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.speakers-title {
    margin-bottom: 0.5rem;
    font-size: clamp(1rem, 3vw, 1.5rem);
}

.speakers-grid {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
    margin-top: 3rem;
}

.speaker-card {
    background: linear-gradient(145deg, rgba(15, 25, 60, 0.95), rgba(8, 14, 38, 0.98));
    padding: 1.25rem;
    border: 2px solid rgba(0,255,255,0.35);
    border-radius: 6px;
    width: 250px;
    position: relative;
    transition: transform 0.35s cubic-bezier(0.16,1,0.3,1), border-color 0.3s, box-shadow 0.3s;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(0,255,255,0.08);
}
.speaker-card:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: var(--text-cyan);
    box-shadow: 0 16px 48px rgba(0,255,255,0.25), inset 0 1px 0 rgba(0,255,255,0.15);
}

.speaker-card::after {
    content: '';
    position: absolute;
    bottom: -8px;
    right: -8px;
    width: 100%;
    height: 100%;
    border: 1px solid rgba(0,255,255,0.15);
    border-radius: 6px;
    z-index: -1;
    transition: border-color 0.3s;
}
.speaker-card:hover::after {
    border-color: rgba(0,255,255,0.3);
}

.speaker-img-container {
    width: 100%;
    height: 320px;
    background: linear-gradient(180deg, #09122c 0%, #12224d 50%, #09122c 100%);
    overflow: hidden;
    margin-bottom: 1rem;
    position: relative;
    border-radius: 6px;
    border: 1px solid rgba(0, 255, 255, 0.3);
}

/* Cyan radial back-glow — subtle behind full-colour photo */
.speaker-img-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at 50% 30%, rgba(0, 255, 255, 0.08) 0%, transparent 65%);
    z-index: 0;
    pointer-events: none;
}

.speaker-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 20%;
    filter: brightness(1.05) contrast(1.08);
    opacity: 1;
    position: relative;
    z-index: 1;
    transition: filter 0.3s ease, transform 0.4s ease;
}

.speaker-card:hover .speaker-img {
    filter: brightness(1.12) contrast(1.12);
    transform: scale(1.04);
}

/* Subtle gradient at bottom of container */
.speaker-img-container::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 20%;
    background: linear-gradient(to top, rgba(6, 12, 32, 0.6) 0%, transparent 100%);
    z-index: 2;
    pointer-events: none;
}

.speaker-name {
    font-family: 'Press Start 2P', monospace;
    font-size: 0.8rem;
    color: #fff;
    margin-top: 1rem;
}

/* Registration Form */
.registration-section {
    padding: 4rem 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.retro-form {
    background: rgba(7, 9, 26, 0.9);
    border: 2px solid var(--text-cyan);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 8px 8px 0px rgba(0, 255, 255, 0.2);
}

.form-row-2col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    font-family: 'Press Start 2P', monospace;
    font-size: 0.8rem;
    margin-bottom: 0.5rem;
    color: var(--text-cyan);
}

.form-input {
    width: 100%;
    padding: 0.9rem 1rem;
    background: rgba(10, 15, 36, 0.6);
    border: 2px solid var(--grid-line);
    border-radius: 4px;
    color: #fff;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1rem;
    min-height: 48px;
    box-sizing: border-box;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.form-input:focus {
    outline: none;
    border-color: var(--text-cyan);
    box-shadow: 0 0 12px rgba(0, 255, 255, 0.25);
}

.btn-retro {
    display: inline-block;
    background: transparent;
    color: var(--text-cyan);
    border: 2px solid var(--text-cyan);
    padding: 1rem 2rem;
    font-family: 'Press Start 2P', monospace;
    font-size: 1rem;
    cursor: pointer;
    text-transform: uppercase;
    transition: all 0.3s;
    width: 100%;
    margin-top: 1rem;
}

.btn-retro:hover {
    background: var(--text-cyan);
    color: var(--bg-dark);
    box-shadow: 0 0 15px var(--text-cyan);
}

/* ─── Registration Lock Overlay ─── */
.registration-section {
    position: relative;
}

.registration-lock-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(4, 8, 22, 0.88);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    z-index: 50;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

.registration-lock-overlay.unlocked {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.lock-overlay-content {
    text-align: center;
    padding: 2rem;
}

.lock-overlay-icon {
    font-size: 3rem;
    color: #ff4444;
    margin-bottom: 1.2rem;
    display: block;
    animation: lock-pulse 2s ease-in-out infinite;
}

@keyframes lock-pulse {
    0%, 100% { opacity: 0.7; transform: scale(1); }
    50%      { opacity: 1;   transform: scale(1.1); }
}

.lock-overlay-title {
    font-family: 'Press Start 2P', 'Share Tech Mono', monospace;
    font-size: clamp(0.8rem, 2.5vw, 1.2rem);
    color: #ff4444;
    letter-spacing: 2px;
    margin-bottom: 0.8rem;
    text-shadow: 0 0 10px rgba(255, 68, 68, 0.5);
}

.lock-overlay-msg {
    font-family: 'Share Tech Mono', monospace;
    font-size: clamp(0.7rem, 2vw, 0.9rem);
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
}

.lock-overlay-msg strong {
    color: var(--text-cyan, #00ffff);
}

/* ─── Live Seat Availability & Capacity Status Bar ─── */
.seat-status-bar {
    max-width: 600px;
    margin: 0 auto 2.5rem auto;
    background: linear-gradient(145deg, rgba(12, 20, 50, 0.92), rgba(6, 12, 32, 0.98));
    border: 1px solid rgba(0, 255, 255, 0.3);
    border-radius: 8px;
    padding: 1.25rem 1.5rem;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(0, 255, 255, 0.1);
}

.ss-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 0.85rem;
}

.ss-live-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Press Start 2P', monospace;
    font-size: 0.7rem;
    color: #00ff88;
}

.ss-dot-pulse {
    width: 8px;
    height: 8px;
    background: #00ff88;
    border-radius: 50%;
    box-shadow: 0 0 8px #00ff88;
    animation: pulseDot 1.2s infinite;
}

.ss-dot-pulse.sold-out {
    background: #ff4444;
    box-shadow: 0 0 8px #ff4444;
}

.ss-capacity-text {
    font-family: 'Press Start 2P', monospace;
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.9);
}

.ss-capacity-text strong {
    color: var(--text-cyan);
    font-size: 0.85rem;
}

.ss-progress-track {
    width: 100%;
    height: 8px;
    background: rgba(0, 255, 255, 0.1);
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 0.85rem;
    border: 1px solid rgba(0, 255, 255, 0.2);
}

.ss-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--text-cyan) 0%, #00ff88 100%);
    border-radius: 4px;
    transition: width 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
}

.ss-progress-fill.low-seats {
    background: linear-gradient(90deg, #ffaa00 0%, #ff4444 100%);
    box-shadow: 0 0 10px rgba(255, 68, 68, 0.5);
}

.ss-info-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.7);
}

#ss-holds-count {
    color: rgba(0, 255, 255, 0.8);
    font-weight: 500;
}

#ss-entry-msg {
    color: #00ff88;
    font-weight: 600;
}

/* Form status messages */
.status-msg {
    margin-top: 1rem;
    font-family: 'Press Start 2P', monospace;
    font-size: 0.75rem;
    text-align: center;
    display: none;
    line-height: 1.7;
    padding: 0.75rem;
}
.status-msg.success { color: #00ff88; display: block; border: 1px solid rgba(0,255,136,0.2); background: rgba(0,255,136,0.05); }
.status-msg.error   { color: #ff4444; display: block; border: 1px solid rgba(255,68,68,0.2); background: rgba(255,68,68,0.05); }

/* ─── Seat Locking & Payment Container ─── */
.payment-step-container {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 2px dashed rgba(0, 255, 255, 0.25);
    animation: fadeInStep 0.4s ease forwards;
}

@keyframes fadeInStep {
    from { opacity: 0; transform: translateY(16px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Seat Lock Timer Banner */
.seat-lock-banner {
    background: linear-gradient(135deg, rgba(0, 255, 255, 0.08), rgba(15, 25, 60, 0.95));
    border: 2px solid rgba(0, 255, 255, 0.4);
    border-radius: 8px;
    padding: 1.25rem;
    margin-bottom: 2rem;
    text-align: center;
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.15);
    position: relative;
}

.seat-lock-banner.timer-expired {
    background: linear-gradient(135deg, rgba(255, 68, 68, 0.12), rgba(30, 10, 10, 0.95));
    border-color: #ff4444;
    box-shadow: 0 0 20px rgba(255, 68, 68, 0.25);
}

.sl-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    font-family: 'Press Start 2P', monospace;
    font-size: 0.75rem;
    color: var(--text-cyan);
    margin-bottom: 0.75rem;
}
.seat-lock-banner.timer-expired .sl-header { color: #ff4444; }

.sl-dot-pulse {
    width: 10px;
    height: 10px;
    background: #00ff88;
    border-radius: 50%;
    box-shadow: 0 0 8px #00ff88;
    animation: pulseDot 1.2s infinite;
}
.seat-lock-banner.timer-expired .sl-dot-pulse {
    background: #ff4444;
    box-shadow: 0 0 8px #ff4444;
}

@keyframes pulseDot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.4; transform: scale(0.85); }
}

.sl-timer-display {
    font-family: 'Press Start 2P', monospace;
    font-size: 2.2rem;
    color: #fff;
    text-shadow: 0 0 12px var(--text-cyan);
    letter-spacing: 0.1em;
    margin: 0.5rem 0;
}
.seat-lock-banner.timer-expired .sl-timer-display {
    color: #ff4444;
    text-shadow: 0 0 12px #ff4444;
}

.sl-subtext {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.75);
    margin: 0;
}

/* Payment QR Card */
.payment-qr-card {
    background: rgba(10, 18, 48, 0.9);
    border: 1px solid rgba(0, 255, 255, 0.25);
    border-radius: 8px;
    padding: 1.5rem;
    text-align: center;
    margin-top: 1.5rem;
}

.qr-instruction {
    font-family: 'Press Start 2P', monospace;
    font-size: 0.8rem;
    color: var(--text-cyan);
    margin-bottom: 1.25rem;
}

.qr-img-wrap {
    background: #fff;
    padding: 12px;
    border-radius: 12px;
    display: inline-block;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
    margin-bottom: 1.25rem;
}

.qr-img {
    width: 220px;
    height: 220px;
    display: block;
    object-fit: contain;
}

.qr-upi-info {
    font-family: 'Space Grotesk', sans-serif;
    line-height: 1.6;
}

.qr-org-name {
    font-size: 0.9rem;
    font-weight: 700;
    color: #ff4444;
    letter-spacing: 0.05em;
    margin-bottom: 0.4rem;
}

.qr-upi-id {
    font-family: monospace;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1rem;
}

.btn-upi-pay {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(0, 255, 255, 0.1);
    color: var(--text-cyan);
    border: 1px solid var(--text-cyan);
    padding: 0.6rem 1.25rem;
    border-radius: 4px;
    font-family: 'Press Start 2P', monospace;
    font-size: 0.7rem;
    text-decoration: none;
    transition: all 0.25s ease;
}
.btn-upi-pay:hover {
    background: var(--text-cyan);
    color: var(--bg-dark);
    box-shadow: 0 0 16px var(--text-cyan);
}

/* Payment Screenshot Dropzone */
.payment-upload-dropzone {
    border: 2px dashed rgba(0, 255, 255, 0.35);
    background: rgba(10, 20, 50, 0.6);
    border-radius: 8px;
    padding: 2rem 1.5rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.payment-upload-dropzone:hover,
.payment-upload-dropzone.drag-over {
    border-color: var(--text-cyan);
    background: rgba(0, 255, 255, 0.08);
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.2);
}

.upload-icon-ring {
    width: 52px;
    height: 52px;
    margin: 0 auto 1rem;
    background: rgba(0, 255, 255, 0.1);
    border: 1px solid rgba(0, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: var(--text-cyan);
}

.upload-heading {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 0.4rem;
}

.upload-formats {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
}

.file-preview-badge {
    margin-top: 1rem;
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(0, 255, 136, 0.12);
    border: 1px solid #00ff88;
    color: #00ff88;
    border-radius: 4px;
    font-family: 'Space Grotesk', monospace;
    font-size: 0.85rem;
    font-weight: 600;
}

/* Having Troubles Troubleshooting Accordion */
.payment-trouble-accordion {
    background: rgba(15, 22, 50, 0.8);
    border: 1px solid rgba(0, 255, 255, 0.25);
    border-radius: 6px;
    overflow: hidden;
    transition: border-color 0.3s ease;
}

.payment-trouble-accordion[open] {
    border-color: var(--text-cyan);
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.12);
}

.trouble-summary {
    font-family: 'Press Start 2P', monospace;
    font-size: 0.72rem;
    color: var(--text-cyan);
    padding: 0.9rem 1.25rem;
    cursor: pointer;
    user-select: none;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    transition: background 0.2s ease;
}

.trouble-summary:hover {
    background: rgba(0, 255, 255, 0.08);
}

.trouble-content {
    padding: 0.5rem 1.25rem 1.25rem;
    border-top: 1px dashed rgba(0, 255, 255, 0.15);
}

.trouble-list {
    margin: 0.75rem 0 0;
    padding-left: 1.2rem;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
}

.trouble-list li {
    margin-bottom: 0.6rem;
}

.t-contact-link {
    color: var(--text-cyan);
    font-weight: 700;
    text-decoration: none;
    margin-left: 0.2rem;
    transition: text-shadow 0.2s;
}
.t-contact-link:hover {
    text-decoration: underline;
    text-shadow: 0 0 8px var(--text-cyan);
}

/* ─── ISTE Verify row ─── */
.verify-row {
    display: flex;
    gap: 0.75rem;
    align-items: stretch;
}
.verify-row .form-input {
    flex: 1;
}

/* Verify button */
.btn-verify {
    flex-shrink: 0;
    background: transparent;
    color: var(--text-cyan);
    border: 2px solid var(--text-cyan);
    padding: 0 1.25rem;
    font-family: 'Press Start 2P', monospace;
    font-size: 0.7rem;
    cursor: pointer;
    white-space: nowrap;
    transition: background 0.2s, color 0.2s, box-shadow 0.2s;
}
.btn-verify:hover:not(:disabled) {
    background: var(--text-cyan);
    color: var(--bg-dark);
    box-shadow: 0 0 12px var(--text-cyan);
}
.btn-verify:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Format hint */
.id-format-hint {
    font-family: 'Space Grotesk', monospace;
    font-size: 0.78rem;
    color: rgba(0, 255, 255, 0.38);
    margin: 0.45rem 0 0;
    letter-spacing: 0.04em;
}



/* Verify status text */
.verify-status {
    margin-top: 0.5rem;
    font-family: 'Press Start 2P', monospace;
    font-size: 0.65rem;
    line-height: 1.7;
    min-height: 1.2em;
}
.vs-success { color: #00ff88; }
.vs-error   { color: #ff4444; }
.vs-warn    { color: #fbbf24; }

/* Fee display strip */
.fee-display-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 1px solid rgba(0,255,255,0.15);
    background: rgba(0,255,255,0.04);
    padding: 0.85rem 1.25rem;
    margin: 0.5rem 0 1rem;
}
.fee-label {
    font-family: 'Press Start 2P', monospace;
    font-size: 0.7rem;
    color: rgba(255,255,255,0.5);
}
.fee-amount {
    font-family: 'Press Start 2P', monospace;
    font-size: 1.2rem;
    color: var(--text-cyan);
    text-shadow: 0 0 12px rgba(0,255,255,0.6);
    transition: all 0.3s;
}

/* Submit disabled */
.btn-retro:disabled {
    opacity: 0.4;
    cursor: not-allowed;
    box-shadow: none;
}

/* Pricing card active (matches selected membership) */
.pricing-card.pricing-active {
    border-color: var(--text-cyan) !important;
    box-shadow: 0 0 0 2px var(--text-cyan), 0 12px 30px rgba(0,255,255,0.2) !important;
    transform: translateY(-6px) scale(1.02);
}

/* Overriding some main styles for this specific page if needed */
.logo {
    mix-blend-mode: screen;
}


/* ═══════════════════════════════════════════════════════
   FAQ SECTION
   ═══════════════════════════════════════════════════════ */
.faq-section {
    padding: 4rem 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.faq-section .faq-title {
    font-size: clamp(1rem, 3vw, 1.6rem);
    margin-bottom: 2.5rem;
    text-align: center;
}

.faq-section .faq-list {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.faq-section .faq-item {
    background: linear-gradient(145deg, rgba(12, 20, 50, 0.92), rgba(6, 12, 32, 0.98));
    border: 1px solid rgba(0, 255, 255, 0.18);
    border-radius: 6px;
    overflow: hidden;
    padding: 0 !important; /* Override main.css padding: 2rem */
    backdrop-filter: none;
    transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

.faq-section .faq-item:hover {
    border-color: rgba(0, 255, 255, 0.45);
    box-shadow: 0 0 16px rgba(0, 255, 255, 0.15);
    transform: none;
}

.faq-section .faq-item.faq-open,
.faq-section .faq-item.active {
    background: linear-gradient(145deg, rgba(14, 25, 60, 0.95), rgba(8, 16, 40, 0.98));
    border-color: rgba(0, 255, 255, 0.6);
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.2);
}

.faq-section .faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 1.15rem 1.4rem;
    display: flex;
    align-items: center;
    gap: 0.85rem;
    cursor: pointer;
    text-align: left;
    font-family: 'Share Tech Mono', 'Courier New', monospace;
    font-size: clamp(0.78rem, 2vw, 0.95rem);
    color: rgba(255, 255, 255, 0.9);
    letter-spacing: 0.04em;
    transition: color 0.2s ease, background-color 0.2s ease;
    user-select: none;
    margin: 0;
}

.faq-section .faq-question:hover {
    color: #00ffff;
    background-color: rgba(0, 255, 255, 0.04);
}

.faq-section .faq-item.faq-open .faq-question,
.faq-section .faq-item.active .faq-question {
    color: #00ffff;
    background-color: rgba(0, 255, 255, 0.07);
}

.faq-section .faq-q-arrow {
    color: #00ffff;
    font-weight: bold;
    flex-shrink: 0;
    transition: transform 0.3s ease;
    pointer-events: none;
}

.faq-section .faq-item.faq-open .faq-q-arrow,
.faq-section .faq-item.active .faq-q-arrow {
    transform: rotate(90deg);
}

.faq-section .faq-question > span:nth-child(2) {
    flex: 1;
    pointer-events: none;
}

.faq-section .faq-chevron {
    font-size: 0.65rem;
    color: rgba(0, 255, 255, 0.6);
    flex-shrink: 0;
    transition: transform 0.35s ease, color 0.3s ease;
    pointer-events: none;
}

.faq-section .faq-item.faq-open .faq-chevron,
.faq-section .faq-item.active .faq-chevron {
    transform: rotate(180deg);
    color: #00ffff;
}

.faq-section .faq-answer {
    display: block !important;
    max-height: 0 !important;
    opacity: 0 !important;
    visibility: hidden !important;
    overflow: hidden !important;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease, visibility 0.3s ease, padding 0.3s ease !important;
    padding: 0 1.4rem !important;
    margin: 0 !important;
}

.faq-section .faq-item.faq-open .faq-answer,
.faq-section .faq-item.active .faq-answer {
    max-height: 800px !important;
    opacity: 1 !important;
    visibility: visible !important;
    padding: 0.75rem 1.4rem 1.4rem !important;
}

.faq-section .faq-answer p {
    font-family: 'Share Tech Mono', 'Courier New', monospace;
    font-size: clamp(0.74rem, 1.8vw, 0.88rem);
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.75;
    border-left: 2px solid rgba(0, 255, 255, 0.4);
    padding-left: 1rem;
    margin: 0;
}

.faq-section .faq-answer p strong {
    color: #00ffff;
}

/* ═══════════════════════════════════════════════════════
   PRICING SECTION
   ═══════════════════════════════════════════════════════ */
.pricing-section {
    padding: 4rem 2rem;
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}

.pricing-title {
    font-size: clamp(1rem, 3vw, 1.5rem);
    margin-bottom: 3rem;
    letter-spacing: 2px;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    align-items: start;
}

/* Base card */
.pricing-card {
    position: relative;
    background: rgba(24, 38, 85, 0.55);
    backdrop-filter: blur(12px);
    border: 2px solid rgba(0, 255, 255, 0.15);
    border-radius: 4px;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
}
.pricing-card::before {
    /* corner pixel accent */
    content: '';
    position: absolute;
    top: -2px; left: -2px;
    width: 14px; height: 14px;
    border-top: 3px solid var(--text-cyan);
    border-left: 3px solid var(--text-cyan);
}
.pricing-card::after {
    content: '';
    position: absolute;
    bottom: -2px; right: -2px;
    width: 14px; height: 14px;
    border-bottom: 3px solid var(--text-cyan);
    border-right: 3px solid var(--text-cyan);
}
.pricing-card:hover {
    border-color: rgba(0, 255, 255, 0.4);
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(0, 255, 255, 0.12);
}

/* Tag label */
.pricing-tag {
    font-family: 'Press Start 2P', monospace;
    font-size: 0.65rem;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.55);
    margin-bottom: 1rem;
    text-transform: uppercase;
}

/* Price */
.pricing-amount {
    font-family: 'Press Start 2P', monospace;
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    color: var(--text-cyan);
    text-shadow: 0 0 20px rgba(0, 255, 255, 0.5);
    margin-bottom: 1.5rem;
    line-height: 1;
}

/* Perks list */
.pricing-perks {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}
.pricing-perks li {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.75);
    display: flex;
    align-items: center;
    gap: 0.6rem;
}
.pricing-perks li i {
    color: var(--text-cyan);
    font-size: 0.75rem;
    flex-shrink: 0;
}

/* ── Featured card (ISTE member) ── */
.pricing-featured {
    border-color: var(--text-cyan);
    background: rgba(0, 255, 255, 0.06);
    transform: scale(1.04);
    box-shadow: 0 0 40px rgba(0, 255, 255, 0.15), 0 0 0 1px rgba(0,255,255,0.3) inset;
    animation: featureGlow 3s ease-in-out infinite alternate;
}
.pricing-featured:hover {
    transform: scale(1.04) translateY(-6px);
}

@keyframes featureGlow {
    from { box-shadow: 0 0 24px rgba(0, 255, 255, 0.1), 0 0 0 1px rgba(0,255,255,0.25) inset; }
    to   { box-shadow: 0 0 48px rgba(0, 255, 255, 0.28), 0 0 0 1px rgba(0,255,255,0.5) inset; }
}

.pricing-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--text-cyan);
    color: var(--bg-dark);
    font-family: 'Press Start 2P', monospace;
    font-size: 0.55rem;
    letter-spacing: 0.1em;
    padding: 0.3rem 0.9rem;
    border-radius: 2px;
    white-space: nowrap;
}

/* ── BITS+ISTE card special border ── */
.pricing-bits {
    border-image: linear-gradient(135deg, rgba(0,255,255,0.5), rgba(100,80,255,0.5)) 1;
    border-style: solid;
    border-width: 2px;
}
.pricing-bits .pricing-tag {
    background: linear-gradient(90deg, var(--text-cyan), #8888ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 1;
}
.pricing-bits .pricing-amount {
    background: linear-gradient(90deg, var(--text-cyan), #a090ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
}

/* ═══════════════════════════════════════════════════════
   RETRO ARCADE COUNTDOWN TIMER
   ═══════════════════════════════════════════════════════ */

.retro-countdown-section {
    max-width: 680px;
    width: 100%;
    margin: 2.25rem auto 1.5rem auto;
    padding: 0 1rem;
    position: relative;
    z-index: 10;
}

.retro-countdown-card {
    background: rgba(10, 16, 42, 0.88);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 2px solid rgba(0, 255, 255, 0.35);
    border-radius: 8px;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.6),
                0 0 25px rgba(0, 255, 255, 0.15),
                inset 0 1px 0 rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
    transition: border-color 0.4s, box-shadow 0.4s;
}

/* Corner Pixel Accents */
.retro-countdown-card::before {
    content: '';
    position: absolute;
    top: -2px; left: -2px;
    width: 12px; height: 12px;
    border-top: 3px solid var(--text-cyan);
    border-left: 3px solid var(--text-cyan);
    z-index: 2;
}
.retro-countdown-card::after {
    content: '';
    position: absolute;
    bottom: -2px; right: -2px;
    width: 12px; height: 12px;
    border-bottom: 3px solid var(--text-cyan);
    border-right: 3px solid var(--text-cyan);
    z-index: 2;
}

/* Top Header Bar */
.countdown-header-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 1.25rem;
    background: rgba(0, 255, 255, 0.06);
    border-bottom: 1px solid rgba(0, 255, 255, 0.18);
    font-family: 'Press Start 2P', monospace;
    font-size: 0.65rem;
    letter-spacing: 0.05em;
}

.countdown-status-indicator {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #ffaa00;
}

.status-dot-pulse {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ffaa00;
    box-shadow: 0 0 8px #ffaa00;
    animation: statusPulse 1.5s ease-in-out infinite;
}

@keyframes statusPulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.4); opacity: 0.4; }
}

.countdown-tagline {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.58rem;
}

/* Main Body & Digits */
.countdown-main-body {
    padding: 1.5rem 1.25rem 1.25rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.countdown-units-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(0.5rem, 2.5vw, 1.25rem);
}

.countdown-unit {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.countdown-digit-box {
    position: relative;
    background: rgba(5, 8, 22, 0.95);
    border: 2px solid rgba(0, 255, 255, 0.4);
    border-radius: 6px;
    min-width: clamp(70px, 16vw, 110px);
    height: clamp(65px, 15vw, 95px);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: inset 0 0 15px rgba(0, 255, 255, 0.15),
                0 4px 15px rgba(0, 0, 0, 0.7);
    overflow: hidden;
    transition: transform 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.countdown-digit-box.tick-pulse {
    animation: digitPulse 0.35s ease-out;
}

@keyframes digitPulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.06); border-color: #ffffff; box-shadow: 0 0 20px rgba(0, 255, 255, 0.6); }
    100% { transform: scale(1); }
}

/* Scanline on digit box */
.countdown-digit-box::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 1px;
    background: rgba(0, 0, 0, 0.65);
    box-shadow: 0 1px 0 rgba(0, 255, 255, 0.2);
    z-index: 3;
}

.countdown-digit {
    font-family: 'Press Start 2P', monospace;
    font-size: clamp(1.6rem, 4.5vw, 2.8rem);
    color: var(--text-cyan);
    text-shadow: 0 0 15px rgba(0, 255, 255, 0.7),
                 0 0 30px rgba(0, 255, 255, 0.3);
    position: relative;
    z-index: 2;
    line-height: 1;
}

.digit-glow-shadow {
    position: absolute;
    font-family: 'Press Start 2P', monospace;
    font-size: clamp(1.6rem, 4.5vw, 2.8rem);
    color: rgba(0, 255, 255, 0.2);
    filter: blur(8px);
    z-index: 1;
    pointer-events: none;
    line-height: 1;
}

.countdown-colon {
    font-family: 'Press Start 2P', monospace;
    font-size: clamp(1.4rem, 4vw, 2.2rem);
    color: var(--text-cyan);
    margin-bottom: 1.5rem;
    animation: colonBlink 1s step-end infinite;
    text-shadow: 0 0 12px rgba(0, 255, 255, 0.6);
}

@keyframes colonBlink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.25; }
}

.countdown-unit-label {
    font-family: 'Press Start 2P', monospace;
    font-size: clamp(0.48rem, 1.4vw, 0.65rem);
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
}

/* Terminal Footer Message */
.countdown-terminal-footer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    margin-top: 1.25rem;
    padding: 0.5rem 1rem;
    background: rgba(0, 0, 0, 0.45);
    border-radius: 4px;
    border: 1px solid rgba(0, 255, 255, 0.12);
    width: 100%;
    max-width: 580px;
    font-family: 'Space Grotesk', monospace;
    font-size: 0.78rem;
    color: rgba(0, 255, 255, 0.85);
    text-align: center;
}

.terminal-prompt-sym {
    color: var(--text-cyan);
    font-weight: 700;
}

.terminal-cursor {
    animation: cursorBlink 1s step-end infinite;
    color: var(--text-cyan);
    font-weight: 700;
}

/* ── Unlocked / Active State ── */
.retro-countdown-card.unlocked {
    border-color: #00ff88;
    box-shadow: 0 10px 40px rgba(0, 255, 136, 0.2), 0 0 25px rgba(0, 255, 136, 0.2);
}
.retro-countdown-card.unlocked .status-dot-pulse {
    background: #00ff88;
    box-shadow: 0 0 10px #00ff88;
}
.retro-countdown-card.unlocked .countdown-status-indicator {
    color: #00ff88;
}
.retro-countdown-card.unlocked .countdown-digit {
    color: #00ff88;
    text-shadow: 0 0 15px rgba(0, 255, 136, 0.7);
}
.retro-countdown-card.unlocked .countdown-digit-box {
    border-color: rgba(0, 255, 136, 0.5);
    box-shadow: inset 0 0 15px rgba(0, 255, 136, 0.2);
}

/* ═══════════════════════════════════════════════════════
   RESPONSIVE & MOBILE OPTIMIZATIONS
   ═══════════════════════════════════════════════════════ */

/* ── Tablets & Below (<= 900px) ── */
@media (max-width: 900px) {
    main {
        padding-top: 80px;
    }

    .code-col span {
        font-size: 0.75rem;
    }

    .hero-section {
        padding: clamp(70px, 12vh, 100px) 1.5rem 3rem;
        min-height: auto;
    }

    .guidelines-section,
    .speakers-section,
    .pricing-section,
    .registration-section {
        padding: 3rem 1.5rem;
    }
}

/* ── Mobile & Tablet Devices (<= 768px) ── */
@media (max-width: 768px) {
    /* Main container spacing to clear navbar cleanly */
    main {
        padding-top: 85px;
    }

    .ll-header {
        padding: 0.85rem 1rem;
    }

    /* Hero Section with generous vertical rhythm */
    .hero-section {
        padding: 40px 1.25rem 4rem;
        min-height: auto;
    }

    .section-label {
        font-size: 0.65rem;
        letter-spacing: 0.25em;
        margin-bottom: 1.2rem;
    }

    .hero-subtitle {
        font-size: clamp(0.68rem, 2.6vw, 0.88rem);
        letter-spacing: 1.5px;
        line-height: 1.6;
        padding: 0 0.5rem;
        margin-bottom: 1.25rem;
        color: rgba(255, 255, 255, 0.8);
    }

    /* Prominent, large, split LEET / LAUNCH title on mobile */
    .hero-title {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        font-size: clamp(2.8rem, 13vw, 4.4rem);
        line-height: 0.98;
        letter-spacing: 4px;
        margin: 0.5rem 0 1.5rem;
        text-shadow:
            0 0 25px rgba(0, 255, 255, 0.6),
            0 0 50px rgba(0, 200, 255, 0.25),
            3px 3px 0px #04122e;
    }

    .hero-title .title-dash {
        display: none;
    }

    .hero-title .title-word {
        display: block;
    }

    .hero-title .title-leet {
        color: var(--text-cyan, #00ffff);
    }

    .hero-title .title-launch {
        color: #ffffff;
        text-shadow:
            0 0 20px rgba(0, 255, 255, 0.8),
            0 0 40px rgba(0, 255, 255, 0.35),
            3px 3px 0px #04122e;
    }

    .hero-title::after {
        display: none; /* Hide floating cursor on stacked mobile title */
    }

    .learn-tagline {
        font-size: clamp(0.72rem, 2.8vw, 0.95rem);
        letter-spacing: 2px;
        margin-top: 1.75rem;
        margin-bottom: 2.25rem;
        line-height: 1.6;
    }

    /* Countdown Section on mobile */
    .retro-countdown-section {
        margin: 2rem auto 3.5rem auto;
        padding: 0 0.5rem;
        max-width: 440px;
        width: 100%;
    }

    .countdown-header-bar {
        padding: 0.85rem 1rem;
        font-size: 0.62rem;
        flex-direction: column;
        gap: 0.4rem;
        text-align: center;
    }

    .countdown-main-body {
        padding: 1.5rem 1rem 1.25rem;
    }

    .countdown-units-wrapper {
        gap: 0.5rem;
    }

    .countdown-digit-box {
        min-width: 68px;
        height: 68px;
    }

    .countdown-digit,
    .digit-glow-shadow {
        font-size: 1.65rem;
    }

    .countdown-colon {
        font-size: 1.4rem;
        margin-bottom: 1.2rem;
    }

    .countdown-unit-label {
        font-size: 0.52rem;
        margin-top: 0.55rem;
        letter-spacing: 1.5px;
    }

    .countdown-terminal-footer {
        font-size: 0.72rem;
        padding: 0.55rem 0.85rem;
        margin-top: 1.35rem;
        line-height: 1.5;
    }

    /* Event Info Cards on mobile */
    .event-info-strip {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        padding: 0 1rem;
        max-width: 420px;
        margin: 2.5rem auto 4rem;
    }

    .info-card {
        display: flex;
        align-items: center;
        justify-content: flex-start;
        text-align: left;
        gap: 1.25rem;
        padding: 1.2rem 1.5rem;
        min-width: 0;
    }

    .info-icon {
        font-size: 1.7rem;
        margin-bottom: 0;
        flex-shrink: 0;
    }

    .info-text {
        font-size: 0.75rem;
        line-height: 1.6;
    }

    /* Guidelines Section */
    .guidelines-section {
        padding: 3.5rem 1.25rem;
    }

    .guidelines-title {
        font-size: clamp(0.85rem, 3.2vw, 1.15rem);
        letter-spacing: 2px;
        margin-bottom: 1.75rem;
    }

    .guidelines-list {
        gap: 1rem;
        margin-top: 1.5rem;
    }

    .guideline-item {
        padding: 1.15rem 1.25rem;
        gap: 1rem;
    }

    .gl-arrow {
        font-size: 0.85rem;
    }

    .gl-text {
        font-size: clamp(0.7rem, 2.6vw, 0.85rem);
        line-height: 1.65;
    }

    /* Speakers / Trainers */
    .speakers-section {
        padding: 3.5rem 1.25rem;
    }

    .speakers-title {
        font-size: clamp(0.9rem, 3.5vw, 1.25rem);
        margin-bottom: 2rem;
    }

    .speakers-grid {
        gap: 2rem;
        margin-top: 2rem;
    }

    .speaker-card {
        width: min(300px, 90vw);
        padding: 1rem;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }

    .speaker-img-container {
        width: 100%;
        height: 310px;
    }

    .speaker-img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center 20%;
    }

    .speaker-name {
        font-size: 0.75rem;
        margin-top: 0.85rem;
    }

    /* FAQ Section on mobile */
    .faq-section {
        padding: 3.5rem 1.25rem;
    }

    .faq-title {
        font-size: clamp(0.9rem, 3.5vw, 1.25rem);
        margin-bottom: 2rem;
    }

    .faq-question {
        padding: 1.15rem 1.25rem;
        font-size: 0.82rem;
    }

    .faq-answer {
        padding: 0 1.25rem;
    }

    .faq-item.faq-open .faq-answer {
        padding: 0 1.25rem 1.25rem;
    }

    /* Pricing Section on mobile */
    .pricing-section {
        padding: 3.5rem 1.25rem;
    }

    .pricing-title {
        font-size: clamp(0.9rem, 3.5vw, 1.25rem);
        margin-bottom: 2.25rem;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 380px;
        margin: 0 auto;
        gap: 1.75rem;
        width: 100%;
    }

    .pricing-card {
        padding: 1.85rem 1.4rem;
    }

    .pricing-featured {
        transform: scale(1);
        order: -1;
    }

    .pricing-amount {
        font-size: clamp(2rem, 7vw, 2.6rem);
        margin-bottom: 1.2rem;
    }

    .pricing-perks {
        gap: 0.8rem;
    }

    .pricing-perks li {
        font-size: 0.88rem;
    }

    /* Registration Section on mobile */
    .registration-section {
        padding: 3.5rem 1.25rem;
    }

    .seat-status-bar {
        margin: 0 auto 2.5rem auto;
    }

    .retro-form {
        padding: 1.75rem 1.35rem;
        border-width: 1.5px;
        box-shadow: 5px 5px 0px rgba(0, 255, 255, 0.2);
    }

    .form-group {
        margin-bottom: 1.4rem;
    }

    .form-label {
        font-size: clamp(0.65rem, 2.4vw, 0.75rem);
        margin-bottom: 0.45rem;
    }

    .form-input {
        padding: 0.85rem 0.95rem;
        font-size: 0.95rem;
        min-height: 48px;
    }

    .verify-row {
        gap: 0.6rem;
    }

    .btn-verify {
        padding: 0 1rem;
        font-size: 0.65rem;
        min-height: 48px;
    }

    .fee-display-row {
        padding: 0.85rem 1.1rem;
        margin: 1.5rem 0;
    }

    .btn-retro {
        padding: 1rem 1.2rem;
        font-size: 0.88rem;
        min-height: 50px;
    }

    .status-msg {
        font-size: 0.7rem;
        line-height: 1.6;
        margin-top: 1.2rem;
    }
}

/* ── Narrow Mobile Devices (<= 580px) ── */
@media (max-width: 580px) {
    .form-row-2col {
        grid-template-columns: 1fr;
        gap: 0;
    }
}

/* ── Extra Small Mobile Phones (<= 420px) ── */
@media (max-width: 420px) {
    .hero-title {
        font-size: clamp(2.4rem, 14vw, 3.2rem);
        letter-spacing: 3px;
    }

    .countdown-digit-box {
        min-width: 56px;
        height: 60px;
    }

    .countdown-digit,
    .digit-glow-shadow {
        font-size: 1.4rem;
    }

    .countdown-colon {
        font-size: 1.2rem;
        margin-bottom: 1rem;
    }
}

