@import url('https://fonts.googleapis.com/css2?family=Press+Start+2P&family=VT323&display=swap');

:root {
    --bg-dark: #0a0212;
    --bg-panel: #16062a;
    --neon-teal: #00f2ff;
    --neon-purple: #9d00ff;
    --browser-purple: #4a2b6d; /* Adjusted to match bagcrund.png tones */
    --browser-dark: #120422;
    --text-main: #ffffff;
    --text-dim: #b8b8b8;
    --border-width: 4px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: 'VT323', monospace;
    overflow-x: hidden;
    line-height: 1.4;
}

h1, h2, h3 {
    font-family: 'Press Start 2P', cursive;
    text-transform: uppercase;
}

/* Pixel Border Utility */
.pixel-border {
    border: var(--border-width) solid #000;
    box-shadow: 
        inset 0 4px 0 rgba(255,255,255,0.1),
        inset 0 -4px 0 rgba(0,0,0,0.2),
        4px 0 0 -2px #000,
        -4px 0 0 -2px #000,
        0 4px 0 -2px #000,
        0 -4px 0 -2px #000;
    position: relative;
    background: var(--bg-panel);
}

.pixel-border-teal {
    border: 3px solid #00f2ff;
    box-shadow: 0 0 15px rgba(0, 242, 255, 0.5);
}

.faq-item {
    transition: all 0.3s ease;
    border-radius: 20px !important;
    overflow: hidden;
    background: #123c44 !important;
    border: 3px solid #00f2ff !important;
    margin-bottom: 15px;
    cursor: pointer;
}

.faq-item:hover {
    box-shadow: 0 0 25px #00f2ff;
}

.faq-item.active {
    box-shadow: 0 0 30px #00f2ff;
}

.faq-content {
    display: none;
    padding: 0 25px 15px;
    font-size: 1.2rem;
    color: #fff;
}

.faq-item.active .faq-content {
    display: block;
}

.faq-header span {
    font-family: 'Press Start 2P', cursive;
    color: #fff;
    text-shadow: 0 0 5px rgba(255,255,255,0.5);
}

/* Layout */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

section {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 80px 20px;
    border-bottom: 2px dashed rgba(255,255,255,0.1);
}

/* Hero Section Styles */
#hero {
    background-image: url('assets/hero-bg.png');
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
    padding: 120px 20px;
    width: 100%;
}

.hero-overlay {
    background: linear-gradient(180deg, rgba(10, 2, 18, 0.4) 0%, rgba(10, 2, 18, 0.7) 100%);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    width: 100%;
    max-width: 1200px;
}

.logo-container {
    display: inline-block;
    padding: 10px;
    background: #bd00ff;
    border-radius: 20px;
    margin-bottom: 40px;
    box-shadow: 0 0 30px rgba(189, 0, 255, 0.3);
}

.logo-inner {
    border: 4px solid #00f2ff;
    background: #120422;
    padding: 15px 40px;
    border-radius: 15px;
    box-shadow: inset 0 0 15px #00f2ff;
}

#hero h1 {
    color: #00f2ff;
    margin: 0;
    font-size: 3.5rem;
    letter-spacing: 4px;
    text-shadow: 0 0 10px #00f2ff;
}

.hero-title-box {
    width: 100%;
    max-width: 900px;
    margin: 0 auto 20px;
    position: relative;
}

#hero h2 {
    font-size: clamp(2.5rem, 8vw, 4rem);
    line-height: 1.1;
    color: #fff;
    margin: 0;
    text-shadow: 0 0 20px rgba(0,0,0,0.8), 3px 3px 0 #000;
}

.hero-subtitle {
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    font-family: 'VT323';
    color: #fff;
    margin-bottom: 45px;
    text-shadow: 2px 2px 4px #000;
    line-height: 1.4;
}

.hero-cta-wrapper {
    display: inline-block;
    padding: 5px;
    background: #00f2ff;
    border-radius: 25px;
    box-shadow: 0 0 25px rgba(0, 242, 255, 0.6);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.hero-cta-wrapper:hover {
    transform: scale(1.05);
}

.cta-btn {
    background: #bd00ff !important;
    border: none !important;
    border-radius: 20px !important;
    padding: 20px 60px !important;
    font-size: clamp(1.2rem, 4vw, 2rem) !important;
    color: #fff !important;
    display: block !important;
    box-shadow: none !important;
    margin: 0 !important;
}

/* Components */
.neon-text {
    color: var(--neon-teal);
    text-shadow: 0 0 10px var(--neon-teal);
}

.btn-retro {
    font-family: 'Press Start 2P', cursive;
    padding: 15px 30px;
    background: #442266;
    color: white;
    border: 4px solid #000;
    cursor: pointer;
    text-transform: uppercase;
    font-size: 14px;
    transition: all 0.2s;
    box-shadow: 4px 4px 0 #000;
    display: inline-block;
    text-decoration: none;
}

/* Browser Window Shell */
.browser-window {
    width: 95%;
    max-width: 1400px;
    margin: 100px auto 40px;
    background: var(--bg-dark);
    border: 6px solid var(--browser-purple);
    box-shadow: 10px 10px 0 rgba(0,0,0,0.5);
    position: relative;
    /* overflow: hidden; */ /* Removed to allow sticky elements inside */
    display: flex;
    flex-direction: column;
}

.browser-header {
    background: var(--browser-purple);
    padding: 10px 15px 0;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    border-bottom: 4px solid var(--browser-dark);
    position: sticky;
    top: 0;
    z-index: 3000;
}

.browser-tabs {
    display: flex;
    gap: 5px;
}

.browser-tab {
    background: var(--browser-dark);
    color: #fff;
    padding: 8px 20px;
    font-family: 'Press Start 2P', cursive;
    font-size: 10px;
    border-radius: 8px 8px 0 0;
    border: 3px solid var(--browser-purple);
    border-bottom: none;
    display: flex;
    align-items: center;
    gap: 10px;
}

.browser-tab .close-icon {
    font-size: 14px;
    color: var(--neon-teal);
}

.window-controls {
    display: flex;
    gap: 8px;
    padding-bottom: 10px;
}

.control-dot {
    width: 15px;
    height: 15px;
    border: 2px solid #000;
    background: #555;
}

.control-dot.close { background: #ff5555; }
.control-dot.min { background: #ffaa00; }
.control-dot.max { background: #00aa00; }

.browser-toolbar {
    background: var(--browser-dark);
    padding: 10px 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    border-bottom: 4px solid var(--browser-purple);
    position: sticky;
    top: 48px; /* Approx header height */
    z-index: 2900;
}

.nav-arrows {
    display: flex;
    gap: 15px;
    color: #fff;
    font-size: 1.2rem;
}

.address-bar {
    flex-grow: 1;
    background: #1e0833;
    border: 2px solid var(--browser-purple);
    padding: 8px 15px;
    color: #fff;
    font-family: 'Press Start 2P', cursive;
    font-size: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.address-bar .lock-icon {
    color: var(--neon-teal);
}

.browser-content {
    width: 100%;
    position: relative;
}


.btn-retro:hover {
    background: var(--neon-purple);
    transform: translate(-2px, -2px);
    box-shadow: 6px 6px 0 #000;
}

        #web3-gallery {
            padding: 100px 20px;
        }

        .cinematic-gallery-stack {
            display: flex;
            flex-direction: column;
            gap: 150px;
            padding: 100px 0;
            max-width: 1200px;
            margin: 0 auto;
        }

        /* ELEGANT STATIC GALLERY GRID */
        .premium-gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 40px;
            padding: 100px 5%;
            max-width: 1300px;
            margin: 0 auto;
            perspective: 2000px;
        }

        .gallery-card {
            position: relative;
            background: rgba(18, 60, 68, 0.1);
            border: 1px solid rgba(0, 242, 255, 0.3);
            border-radius: 30px;
            overflow: hidden;
            backdrop-filter: blur(20px);
            transition: all 0.7s cubic-bezier(0.16, 1, 0.3, 1);
            transform-style: preserve-3d;
            cursor: pointer;
        }

        /* Unique Asymmetric Staggering */
        .gallery-card:nth-child(3n+1) { transform: translateY(-20px); }
        .gallery-card:nth-child(3n+2) { transform: translateY(40px); }
        .gallery-card:nth-child(3n+3) { transform: translateY(10px); }

        .gallery-card:hover {
            transform: translateY(0) scale(1.05) rotateX(10deg) rotateY(-5deg);
            border-color: var(--neon-teal);
            box-shadow: 
                0 30px 60px rgba(0,0,0,0.5),
                0 0 30px rgba(0, 242, 255, 0.2);
            z-index: 10;
        }

        .gallery-card img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            image-rendering: pixelated;
            filter: grayscale(0.4) contrast(1.1);
            transition: all 0.8s ease;
        }

        .gallery-card:hover img {
            filter: grayscale(0) contrast(1.2) brightness(1.1);
            transform: scale(1.1);
        }

        .card-details {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            padding: 40px 30px;
            background: linear-gradient(0deg, rgba(10, 2, 18, 0.98) 0%, transparent 100%);
            transform: translateY(20px);
            opacity: 0;
            transition: all 0.5s ease;
            pointer-events: none;
        }

        .gallery-card:hover .card-details {
            transform: translateY(0);
            opacity: 1;
        }

        .card-id {
            font-family: 'Press Start 2P';
            font-size: 0.8rem;
            color: var(--neon-teal);
            margin-bottom: 12px;
            display: block;
            text-shadow: 0 0 10px var(--neon-teal);
        }

        .card-subtitle {
            font-family: 'VT323';
            font-size: 1.6rem;
            color: #fff;
            margin: 0;
        }

        /* Decorative Corners */
        .gallery-card::before, .gallery-card::after {
            content: '';
            position: absolute;
            width: 20px;
            height: 20px;
            border: 2px solid var(--neon-teal);
            opacity: 0.5;
            transition: all 0.3s ease;
            pointer-events: none;
        }

        .gallery-card::before { top: 20px; left: 20px; border-right: 0; border-bottom: 0; }
        .gallery-card::after { bottom: 20px; right: 20px; border-left: 0; border-top: 0; }

        .gallery-card:hover::before { top: 15px; left: 15px; opacity: 1; }
        .gallery-card:hover::after { bottom: 15px; right: 15px; opacity: 1; }

        @media (max-width: 768px) {
            .gallery-card {
                transform: none !important;
                margin-bottom: 20px;
            }
            .premium-gallery-grid {
                grid-template-columns: 1fr;
                padding: 60px 20px;
            }
        }

        .cinematic-card.focused .card-inner {
            border-color: var(--neon-teal);
            box-shadow: 0 0 100px rgba(0, 242, 255, 0.15), 0 0 40px rgba(157, 0, 255, 0.1);
            transform: rotateY(0deg) !important;
        }

        .card-inner::after {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: linear-gradient(45deg, transparent 45%, rgba(255,255,255,0.1) 50%, transparent 55%);
            animation: sweep 5s infinite;
            pointer-events: none;
        }

        @keyframes sweep {
            0% { transform: translate(-30%, -30%); }
            100% { transform: translate(30%, 30%); }
        }

        .card-inner img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            opacity: 0.8;
            transition: all 1.2s cubic-bezier(0.16, 1, 0.3, 1);
            filter: grayscale(0.5);
        }

        .cinematic-card.focused img {
            opacity: 1;
            transform: scale(1.05);
            filter: grayscale(0);
        }

        .character-info {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            padding: 50px;
            background: linear-gradient(0deg, rgba(10,2,18,0.95) 0%, transparent 100%);
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
        }

        .cinematic-card.focused .character-info {
            opacity: 1;
            transform: translateY(0);
        }

        .glitch-text {
            font-family: 'Press Start 2P';
            font-size: 1.2rem;
            letter-spacing: 2px;
            color: #fff;
            margin: 0 0 15px 0;
            text-transform: uppercase;
        }

        .character-info p {
            font-family: 'VT323';
            font-size: 2rem;
            color: var(--neon-teal);
            margin: 0;
            letter-spacing: 1px;
        }

        .web3-card-upgraded.featured { 
            width: 440px; 
            height: 440px; 
            border-width: 4px;
            border-color: var(--neon-purple);
        }

        /* Row Specific Depth */
        .row-left .web3-card-upgraded { transform: rotateY(10deg) rotateX(5deg); }
        .row-right .web3-card-upgraded { transform: rotateY(-10deg) rotateX(5deg); }

        .web3-card-upgraded:hover img {
            transform: scale(1.1);
        }

        .gallery-reveal-text.active {
            opacity: 1 !important;
            transform: translateY(0) scale(1) !important;
        }

        .web3-card-upgraded img { 
            width: 100%; 
            height: 100%; 
            border-radius: 10px; 
            image-rendering: pixelated; 
            object-fit: cover; 
        }

        .marquee-row {
            display: flex;
            gap: 30px;
            width: max-content;
        }

        .row-left { animation: marquee-l 60s linear infinite; }
        .row-right { animation: marquee-r 50s linear infinite; margin-left: -50px; }

        @keyframes marquee-l { from { transform: translateX(0); } to { transform: translateX(-50%); } }
        @keyframes marquee-r { from { transform: translateX(-50%); } to { transform: translateX(0); } }

        /* Story Chapters */
        .story-chapter-card {
            display: flex;
            border: 4px solid var(--neon-teal);
            background: #0d1b1e;
            box-shadow: 0 0 20px rgba(0, 242, 255, 0.2);
            overflow: hidden;
            margin-bottom: 40px;
            transition: transform 0.3s ease;
        }
        .story-chapter-card:hover { transform: scale(1.02); box-shadow: 0 0 30px rgba(0, 242, 255, 0.4); }
        .chapter-img-box { 
            flex: 1; 
            border-right: 4px solid var(--neon-teal); 
            position: relative; 
            min-height: 350px; 
        }
        .chapter-img-box img { 
            width: 100%; 
            height: 100%; 
            object-fit: cover; 
            image-rendering: pixelated; 
        }
        .chapter-text-box { flex: 1.5; padding: 40px; display: flex; flex-direction: column; justify-content: center; }


.btn-retro:active {
    transform: translate(2px, 2px);
    box-shadow: 0 0 0 #000;
}

.btn-teal {
    background: var(--neon-teal);
    color: #000;
}

.btn-teal:hover {
    background: #fff;
    box-shadow: 0 0 20px #00f2ff, 0 0 40px #00f2ff;
}

@keyframes flicker {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
}

.flicker {
    animation: flicker 2s infinite;
}

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

.float {
    animation: float 3s ease-in-out infinite;
}
/* Mobile Responsiveness */
@media (max-width: 768px) {
    section {
        padding: 60px 15px;
    }

    #hero {
        padding: 80px 15px 60px;
        min-height: 80vh;
        display: flex;
        align-items: center;
    }

    .hero-content {
        padding: 0 10px;
    }

    .logo-container {
        padding: 6px;
        margin-bottom: 30px;
    }
    
    .logo-inner {
        padding: 10px 25px;
    }

    #hero h1 {
        font-size: 2rem;
        letter-spacing: 2px;
    }
    
    #hero h2 {
        font-size: 2.2rem;
        text-shadow: 0 0 10px rgba(0,0,0,0.9), 2px 2px 0 #000;
    }

    .hero-subtitle {
        font-size: 1.3rem;
        margin-bottom: 35px;
    }

    .cta-btn {
        padding: 15px 40px !important;
        font-size: 1.4rem !important;
    }

    /* Story & Mint Column Layout */
    .story-box {
        flex-direction: column !important;
        gap: 20px !important;
        padding: 20px !important;
    }

    .story-box div {
        flex: none !important;
        width: 100% !important;
    }

    /* FAQ Adjustment */
    .faq-accordion {
        width: 100% !important;
    }
    
    .faq-header span {
        font-size: 10px !important;
    }

    /* Button scaling */
    .btn-retro {
        padding: 12px 20px;
        font-size: 12px;
    }
    
    #hero .btn-retro {
        padding: 15px 30px !important;
        font-size: 1.2rem !important;
    }

    /* Progress Bar */
    section[id="story-mint"] div[style*="max-width: 600px"] {
        max-width: 100% !important;
    }

    /* Lore Section Mobile Fixes */
    #story-mint {
        padding: 40px 0 !important;
    }
    #story-mint h2 {
        font-size: 2rem !important;
        margin-bottom: 30px !important;
    }
    .story-chapter-card {
        flex-direction: column;
        margin-bottom: 25px !important;
    }
    .chapter-img-box { 
        border-right: none; 
        border-bottom: 4px solid var(--neon-teal); 
        min-height: 250px;
        height: 250px;
    }
    .chapter-text-box {
        padding: 20px !important;
    }
    .chapter-text-box h3 {
        font-size: 1.1rem !important;
        margin-bottom: 12px !important;
    }
    .chapter-text-box p {
        font-size: 1.1rem !important;
        line-height: 1.3 !important;
    }
    
    .vortex-container { 
        transform: none !important; 
        gap: 30px;
        padding: 20px 0;
    }
    .web3-card-upgraded { 
        width: 250px; 
        height: 250px; 
    }
    .web3-card-upgraded.featured { 
        width: 280px; 
        height: 280px; 
    }
    .marquee-row {
        gap: 15px;
    }
    
    .browser-window {
        width: 100%;
        margin: 0;
        border-width: 4px;
        box-shadow: none;
    }
    
    .browser-header {
        padding: 5px 10px 0;
    }
    
    .browser-tab {
        padding: 5px 10px;
        font-size: 8px;
    }
    
    .browser-toolbar {
        padding: 5px 10px;
        gap: 8px;
    }
    
    .address-bar {
        font-size: 8px;
        padding: 5px 10px;
    }
    
    .nav-arrows {
        display: none;
    }
}

/* WL Registration Modal - Premium Upgrade */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(5, 2, 10, 0.95);
    backdrop-filter: blur(25px) saturate(180%);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.modal-overlay.active {
    display: flex;
    opacity: 1;
}

.wl-modal {
    background: linear-gradient(135deg, rgba(22, 6, 42, 0.9) 0%, rgba(10, 2, 18, 0.98) 100%);
    border: 1px solid rgba(157, 0, 255, 0.5);
    box-shadow: 
        0 0 100px rgba(157, 0, 255, 0.2),
        inset 0 0 40px rgba(0, 242, 255, 0.05);
    width: 95%;
    max-width: 600px;
    padding: 0;
    position: relative;
    transform: translateY(50px) scale(0.9);
    transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    overflow: hidden;
    border-radius: 4px;
}

.modal-overlay.active .wl-modal {
    transform: translateY(0) scale(1);
}

/* Animated Border Effect */
.wl-modal::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--neon-teal), var(--neon-purple), transparent);
    background-size: 200% 100%;
    animation: borderMove 3s linear infinite;
    z-index: 10;
}

@keyframes borderMove {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

.modal-header {
    padding: 30px 40px;
    background: rgba(255,255,255,0.02);
    border-bottom: 1px solid rgba(255,255,255,0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-title {
    font-family: 'Press Start 2P';
    font-size: 14px;
    color: var(--neon-teal);
    text-shadow: 0 0 10px rgba(0, 242, 255, 0.5);
    margin: 0;
}

.close-modal {
    color: var(--text-dim);
    font-size: 24px;
    cursor: pointer;
    transition: all 0.3s;
    line-height: 1;
}

.close-modal:hover {
    color: var(--neon-purple);
    transform: rotate(90deg);
}

.modal-body {
    padding: 40px;
    background-image: 
        linear-gradient(rgba(0, 242, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 242, 255, 0.03) 1px, transparent 1px);
    background-size: 20px 20px;
}

/* Progress Tracker */
.wl-progress {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
}

.prog-dot {
    width: 40px;
    height: 6px;
    background: rgba(255,255,255,0.1);
    transition: all 0.4s;
}

.prog-dot.active {
    background: var(--neon-teal);
    box-shadow: 0 0 15px var(--neon-teal);
}

.wl-step { display: none; }
.wl-step.active { display: block; animation: stepIn 0.5s ease-out; }

@keyframes stepIn {
    from { opacity: 0; transform: translateX(20px); }
    to { opacity: 1; transform: translateX(0); }
}

.wl-step h4 {
    font-family: 'VT323';
    font-size: 2.2rem;
    color: #fff;
    margin-bottom: 25px;
    text-align: center;
    letter-spacing: 2px;
}

/* Module-style Tasks */
.task-grid {
    display: grid;
    gap: 15px;
    margin-bottom: 35px;
}

.task-module {
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255,255,255,0.05);
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.task-module:hover {
    border-color: var(--neon-purple);
    background: rgba(157, 0, 255, 0.05);
}

.task-module::before {
    content: '0' attr(data-index);
    position: absolute;
    top: -10px;
    right: -5px;
    font-family: 'VT323';
    font-size: 4rem;
    opacity: 0.05;
    color: var(--neon-teal);
}

.task-info label {
    display: block;
    font-family: 'Press Start 2P';
    font-size: 8px;
    color: var(--neon-teal);
    margin-bottom: 8px;
}

.task-info span {
    font-family: 'VT323';
    font-size: 1.4rem;
    color: #fff;
}

.task-btn {
    background: var(--neon-teal);
    color: #000;
    border: none;
    padding: 10px 20px;
    font-family: 'Press Start 2P';
    font-size: 10px;
    cursor: pointer;
    text-decoration: none !important;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    min-width: 80px;
    z-index: 10;
    position: relative;
    border-radius: 2px;
}

.task-btn:hover {
    background: #fff;
    box-shadow: 0 0 15px var(--neon-teal);
    transform: translateY(-2px);
    color: #000;
}


.task-module.checking {
    border-color: var(--neon-teal);
    background: rgba(0, 242, 255, 0.05);
}

.task-module.verified {
    border-color: #00ff00;
    background: rgba(0, 255, 0, 0.05);
}

.task-status {
    font-family: 'Press Start 2P';
    font-size: 8px;
    margin-top: 8px;
    display: block;
}

.status-pending { color: var(--text-dim); }
.status-checking { color: var(--neon-teal); animation: pulse 1s infinite; }
.status-verified { color: #00ff00; }

@keyframes pulse {
    0% { opacity: 1; }
    50% { opacity: 0.5; }
    100% { opacity: 1; }
}

.task-btn.verified {
    background: #00ff00 !important;
    pointer-events: none;
}

.btn-retro.disabled {
    opacity: 0.3 !important;
    pointer-events: none;
    filter: brightness(0.5);
}


/* Premium Inputs */
.input-container {
    margin-bottom: 30px;
    position: relative;
}

.input-container label {
    display: block;
    font-family: 'Press Start 2P';
    font-size: 9px;
    color: var(--text-dim);
    margin-bottom: 12px;
    letter-spacing: 1px;
}

.premium-input {
    width: 100%;
    background: rgba(0,0,0,0.6);
    border: 1px solid rgba(0, 242, 255, 0.2);
    padding: 18px;
    color: #fff;
    font-family: 'VT323';
    font-size: 1.6rem;
    transition: all 0.3s;
}

.premium-input:focus {
    border-color: var(--neon-teal);
    box-shadow: 0 0 20px rgba(0, 242, 255, 0.2);
    background: rgba(0, 242, 255, 0.02);
    outline: none;
}

.submit-wrap {
    margin-top: 40px;
    position: relative;
}

.submit-glow {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: var(--neon-teal);
    filter: blur(20px);
    opacity: 0.2;
    z-index: -1;
}

/* Success State */
.success-box {
    text-align: center;
    padding: 20px 0;
}

.glitch-check {
    font-size: 5rem;
    color: var(--neon-teal);
    text-shadow: 0 0 20px var(--neon-teal);
    margin-bottom: 25px;
    display: block;
}

.success-box p {
    font-family: 'VT323';
    font-size: 1.6rem;
    color: var(--text-dim);
    line-height: 1.6;
}

@media (max-width: 768px) {
    .wl-modal { width: 92%; }
    .modal-header { padding: 20px; }
    .modal-body { padding: 25px; }
    .task-module { padding: 15px; }
    .task-info span { font-size: 1.2rem; }
    .premium-input { padding: 15px; }
}

