/* Banner Landing Page Styles */
:root {
    --bg: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 50%, #16213e 100%);
    --panel: rgba(255, 255, 255, 0.05);
    --panel-border: rgba(255, 255, 255, 0.1);
    --text: #ffffff;
    --text-muted: rgba(255, 255, 255, 0.7);
    --primary: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --primary-hover: linear-gradient(135deg, #5a6fd8 0%, #6a4190 100%);
    --danger: #ff6b6b;
    --success: #51cf66;
    --radius: 16px;
    --shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    --shadow-lg: 0 32px 64px rgba(0, 0, 0, 0.4);
}

@media (prefers-color-scheme: light) {
    :root {
        --bg: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 50%, #cbd5e1 100%);
        --panel: rgba(255, 255, 255, 0.8);
        --panel-border: rgba(0, 0, 0, 0.1);
        --text: #1e293b;
        --text-muted: #64748b;
    }
}

* {
    box-sizing: border-box;
}

html, body { 
    height: 100%; 
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Advanced animated background system */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(102, 126, 234, 0.4) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(118, 75, 162, 0.4) 0%, transparent 50%),
        radial-gradient(circle at 40% 60%, rgba(120, 219, 255, 0.3) 0%, transparent 50%),
        linear-gradient(135deg, rgba(15, 15, 35, 0.8) 0%, rgba(26, 26, 46, 0.9) 100%);
    animation: backgroundPulse 15s ease-in-out infinite;
    z-index: -3;
}

@keyframes backgroundPulse {
    0%, 100% { 
        transform: scale(1) rotate(0deg);
        filter: hue-rotate(0deg);
    }
    33% { 
        transform: scale(1.1) rotate(1deg);
        filter: hue-rotate(20deg);
    }
    66% { 
        transform: scale(0.95) rotate(-1deg);
        filter: hue-rotate(-10deg);
    }
}

/* Floating particles system */
body::after {
    content: '';
    position: fixed;
    inset: 0;
    background-image: 
        radial-gradient(2px 2px at 20px 30px, rgba(255,255,255,0.3), transparent),
        radial-gradient(2px 2px at 40px 70px, rgba(102,126,234,0.4), transparent),
        radial-gradient(1px 1px at 90px 40px, rgba(118,75,162,0.5), transparent),
        radial-gradient(1px 1px at 130px 80px, rgba(120,219,255,0.4), transparent),
        radial-gradient(2px 2px at 160px 30px, rgba(255,119,198,0.3), transparent);
    background-repeat: repeat;
    background-size: 200px 200px;
    animation: particleFloat 20s linear infinite;
    opacity: 0.6;
    z-index: -2;
}

@keyframes particleFloat {
    0% { transform: translateY(0px) translateX(0px); }
    100% { transform: translateY(-200px) translateX(-100px); }
}

/* Optional slideshow background (if images exist) */
.bg-slideshow {
    position: fixed;
    inset: 0;
    z-index: -4;
    overflow: hidden;
}
.bg-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transform: scale(1.05);
    transition: opacity 1.2s ease, transform 8s ease;
}
.bg-slide.active { opacity: 0.22; transform: scale(1.02); }
.bg-overlay {
    position: fixed;
    inset: 0;
    z-index: -3;
    pointer-events: none;
    background: radial-gradient(circle at 30% 20%, rgba(0,0,0,0.35), transparent 40%),
                radial-gradient(circle at 80% 70%, rgba(0,0,0,0.35), transparent 45%),
                linear-gradient(180deg, rgba(0,0,0,0.35), rgba(0,0,0,0.55));
}

/* Banner Section */
.banner-section {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #000;
    transition: all 0.8s ease-out;
    width: 100vw;
    height: 100vh;
    pointer-events: auto;
}

.banner-container {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.banner-gif {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.banner-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(45deg, rgba(0,0,0,0.3), rgba(0,0,0,0.1));
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 180px;
    z-index: 2;
}

.banner-content {
    text-align: center;
    color: white;
}

.banner-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 16px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.banner-content p {
    font-size: 1.2rem;
    opacity: 0.9;
    margin: 0 0 24px 0;
    text-shadow: 0 1px 2px rgba(0,0,0,0.5);
}

.banner-cta {
    margin-top: 24px;
    transition: all 0.8s ease-out;
}

.banner-enter-btn {
    font-family: 'Press Start 2P', 'Courier New', monospace;
    font-size: 0.9rem;
    padding: 20px 40px;
    background: linear-gradient(135deg, #ff6b6b 0%, #ff8e53 50%, #ff6b6b 100%) !important;
    border: 3px solid #ff4757 !important;
    box-shadow: 
        0 8px 32px rgba(0, 212, 255, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.3) !important;
    animation: buttonGlow 2s ease-in-out infinite alternate;
    color: white !important;
    text-decoration: none;
    border-radius: 8px;
    display: inline-block;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.banner-enter-btn:hover {
    transform: scale(1.05);
    box-shadow: 
        0 12px 40px rgba(0, 212, 255, 0.6),
        inset 0 1px 0 rgba(255, 255, 255, 0.4) !important;
    background: linear-gradient(135deg, #ff5252 0%, #ff7043 50%, #ff5252 100%) !important;
}

@keyframes buttonGlow {
    0% { 
        box-shadow: 
            0 8px 32px rgba(0, 212, 255, 0.4),
            inset 0 1px 0 rgba(255, 255, 255, 0.3);
        transform: scale(1);
    }
    100% { 
        box-shadow: 
            0 12px 40px rgba(0, 212, 255, 0.6),
            inset 0 1px 0 rgba(255, 255, 255, 0.4);
        transform: scale(1.02);
    }
}

/* Form Page Styles */
.container {
    max-width: 720px;
    margin: 0 auto;
    padding: 40px 24px;
    position: relative;
    z-index: 1;
}

h1 { 
    margin: 0 0 24px; 
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, #00d4ff 0%, #ff6b6b 50%, #ffd700 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-align: center;
    animation: fadeInUp 0.8s ease-out;
    text-shadow: 0 0 30px rgba(0, 212, 255, 0.3);
    letter-spacing: -0.02em;
    position: relative;
}

h1::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #00d4ff, #ff6b6b, #ffd700);
    border-radius: 2px;
    animation: underlineGlow 2s ease-in-out infinite alternate;
}

@keyframes underlineGlow {
    0% { 
        box-shadow: 0 0 10px rgba(0, 212, 255, 0.5);
        transform: translateX(-50%) scaleX(1);
    }
    100% { 
        box-shadow: 0 0 20px rgba(255, 107, 107, 0.7);
        transform: translateX(-50%) scaleX(1.2);
    }
}

p { 
    color: #e2e8f0;
    text-align: center;
    font-size: 1.2rem;
    font-weight: 500;
    animation: fadeInUp 0.8s ease-out 0.2s both;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    letter-spacing: 0.01em;
}

form {
    margin-top: 40px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    backdrop-filter: blur(25px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    padding: 40px;
    border-radius: 24px;
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    animation: fadeInUp 0.8s ease-out 0.4s both;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

form::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
    transition: left 0.6s ease;
}

form:hover {
    transform: translateY(-6px) scale(1.01);
    box-shadow: 
        0 35px 70px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(0, 212, 255, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    border-color: rgba(0, 212, 255, 0.4);
}

form:hover::before {
    left: 100%;
}

.field { 
    display: grid; 
    gap: 12px; 
    margin-bottom: 24px;
    animation: fadeInUp 0.6s ease-out;
}

.field:nth-child(1) { animation-delay: 0.6s; }
.field:nth-child(2) { animation-delay: 0.7s; }
.field:nth-child(3) { animation-delay: 0.8s; }

label { 
    font-weight: 700; 
    font-size: 1rem;
    color: #f1f5f9;
    margin-bottom: 8px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    letter-spacing: 0.01em;
}

input[type="text"],
input[type="url"] {
    padding: 18px 24px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.03) 100%);
    color: #ffffff;
    border-radius: 16px;
    font-size: 1.1rem;
    font-weight: 500;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    backdrop-filter: blur(15px);
    position: relative;
    box-shadow: 
        0 4px 12px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

input[type="text"]:focus,
input[type="url"]:focus {
    outline: none;
    border-color: #00d4ff;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1) 0%, rgba(255, 107, 107, 0.05) 100%);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 
        0 15px 35px rgba(0, 212, 255, 0.3),
        0 0 0 4px rgba(0, 212, 255, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    animation: inputPulse 0.6s ease-out;
}

@keyframes inputPulse {
    0% { transform: translateY(-2px) scale(1.02); }
    50% { transform: translateY(-3px) scale(1.05); }
    100% { transform: translateY(-2px) scale(1.02); }
}

input[type="text"]::placeholder,
input[type="url"]::placeholder { 
    color: rgba(255, 255, 255, 0.6);
    transition: color 0.3s ease;
    font-weight: 400;
}

input[type="text"]:focus::placeholder,
input[type="url"]:focus::placeholder {
    color: transparent;
}

.hint {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    font-weight: 500;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    margin-top: 4px;
}

.checkbox { 
    display: flex; 
    align-items: flex-start; 
    gap: 16px; 
    margin: 24px 0;
    padding: 20px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.02) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    transition: all 0.3s ease;
    animation: fadeInUp 0.6s ease-out 0.9s both;
    box-shadow: 
        0 4px 12px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.checkbox:nth-child(4) { animation-delay: 0.9s; }
.checkbox:nth-child(5) { animation-delay: 1.0s; }
.checkbox:nth-child(6) { animation-delay: 1.1s; }

.checkbox:hover {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.08) 0%, rgba(255, 107, 107, 0.04) 100%);
    border-color: rgba(0, 212, 255, 0.3);
    transform: translateY(-2px);
    box-shadow: 
        0 8px 20px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.checkbox label {
    line-height: 1.6;
    font-size: 1rem;
    font-weight: 600;
    color: #f1f5f9;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.checkbox a {
    color: #00d4ff;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
    text-shadow: 0 0 8px rgba(0, 212, 255, 0.3);
}

.checkbox a:hover {
    color: #ff6b6b;
    text-decoration: underline;
    text-shadow: 0 0 12px rgba(255, 107, 107, 0.5);
    transform: translateY(-1px);
}

input[type="checkbox"] {
    width: 22px;
    height: 22px;
    accent-color: #00d4ff;
    cursor: pointer;
    border-radius: 4px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

button, .button-link {
    display: inline-flex; 
    align-items: center; 
    justify-content: center;
    padding: 16px 32px; 
    border-radius: 12px; 
    border: 3px solid #ff4757;
    background: linear-gradient(135deg, #ff6b6b 0%, #ff8e53 50%, #ff6b6b 100%);
    color: white; 
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none; 
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    font-family: 'Press Start 2P', 'Courier New', monospace;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 
        0 8px 32px rgba(0, 212, 255, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    animation: fadeInUp 0.6s ease-out 1s both;
}

button:hover, .button-link:hover { 
    background: linear-gradient(135deg, #ff5252 0%, #ff7043 50%, #ff5252 100%);
    transform: translateY(-2px);
    box-shadow: 
        0 12px 40px rgba(0, 212, 255, 0.6),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
    border-color: #ff3742;
}

button:active, .button-link:active { 
    transform: translateY(0);
    box-shadow: 
        0 6px 20px rgba(0, 212, 255, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

button:focus, .button-link:focus {
    outline: none;
    background: linear-gradient(135deg, #ff5252 0%, #ff7043 50%, #ff5252 100%);
    transform: translateY(-1px);
    box-shadow: 
        0 10px 35px rgba(0, 212, 255, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.4),
        0 0 0 4px rgba(0, 212, 255, 0.3);
}

@keyframes buttonBounce {
    0%, 100% { transform: translateY(-3px) scale(1.05); }
    50% { transform: translateY(-6px) scale(1.08); }
}

.errors { 
    margin: 16px 0 0; 
    color: var(--danger);
    background: rgba(255, 107, 107, 0.1);
    padding: 16px;
    border-radius: 12px;
    border-left: 4px solid var(--danger);
    animation: shake 0.5s ease-in-out;
}

.errors li { 
    margin: 8px 0;
    font-weight: 500;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-5px); }
    75% { transform: translateX(5px); }
}

/* Stepper */
.stepper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin: 32px 0 24px;
    animation: fadeInUp 0.6s ease-out 0.3s both;
}
.step {
    display: flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, rgba(255,255,255,0.06) 0%, rgba(255,255,255,0.02) 100%);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 16px;
    padding: 16px 20px;
    color: rgba(255,255,255,0.6);
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.step.active { 
    color: #ffffff; 
    background: linear-gradient(135deg, rgba(0,212,255,0.15) 0%, rgba(255,107,107,0.08) 100%);
    border-color: rgba(0,212,255,0.3);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}
.step-index {
    width: 32px; 
    height: 32px; 
    border-radius: 50%; 
    display: inline-flex; 
    align-items: center; 
    justify-content: center;
    background: linear-gradient(135deg, rgba(0,212,255,0.2) 0%, rgba(255,107,107,0.1) 100%);
    border: 2px solid rgba(0,212,255,0.4);
    font-weight: 700;
    font-size: 0.9rem;
    color: #ffffff;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}
.step-label { 
    font-weight: 700; 
    font-size: 1rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

/* Card for requirements */
.card {
    background: linear-gradient(135deg, rgba(0,212,255,0.08) 0%, rgba(255,107,107,0.04) 100%);
    border: 2px solid rgba(0,212,255,0.2);
    border-radius: 20px;
    padding: 24px;
    margin: 20px 0 8px;
    box-shadow: 
        0 8px 25px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    animation: fadeInUp 0.6s ease-out 0.5s both;
}
.card h2 { 
    margin: 0 0 8px; 
    font-size: 1.3rem; 
    font-weight: 700;
    color: #ffffff;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}
.card .sub { 
    margin: 0 0 16px; 
    color: rgba(255, 255, 255, 0.8); 
    font-size: 1rem;
    font-weight: 500;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.actions { 
    display: flex; 
    gap: 16px; 
    flex-wrap: wrap; 
    margin-top: 8px;
}
.btn-outline {
    display: inline-flex; 
    align-items: center; 
    justify-content: center;
    padding: 14px 20px; 
    border-radius: 16px; 
    text-decoration: none; 
    font-weight: 700;
    font-size: 0.95rem;
    border: 2px solid rgba(0, 212, 255, 0.6);
    color: #ffffff; 
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1) 0%, rgba(255, 107, 107, 0.05) 100%);
    transition: all 0.3s ease;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.btn-outline:hover { 
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.2) 0%, rgba(255, 107, 107, 0.1) 100%);
    border-color: rgba(0, 212, 255, 0.8);
    transform: translateY(-3px) scale(1.05); 
    box-shadow: 0 8px 20px rgba(0, 212, 255, 0.3);
    text-shadow: 0 0 8px rgba(0, 212, 255, 0.5);
}

/* Page shell + brandbar reused across pages */
.page-shell { padding-top: 12px; }
.brandbar { width: 100%; max-width: 1100px; margin: 0 auto 8px; display: flex; align-items: center; justify-content: space-between; padding: 16px; }
.badge { padding: 8px 12px;  border-radius: 999px; font-weight: 700; letter-spacing: 0.3px; }
.nav { display: flex; gap: 12px; }
.nav-link { color: #cdd5ff; text-decoration: none; padding: 8px 10px; border-radius: 8px; border: 1px solid rgba(255,255,255,0.08); background: rgba(255,255,255,0.04); }
.nav-link:hover { filter: brightness(1.1); transform: translateY(-1px); }

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 20px 16px;
        max-width: 100%;
    }
    
    h1 {
        font-size: 2rem;
        margin-bottom: 16px;
    }
    
    p {
        font-size: 1rem;
    }
    
    form {
        padding: 24px 20px;
        margin-top: 24px;
    }
    
    .field {
        margin-bottom: 20px;
    }
    
    input[type="text"],
    input[type="url"] {
        padding: 14px 16px;
        font-size: 1rem;
    }
    
    .checkbox {
        padding: 16px;
        margin: 16px 0;
    }
    
    .checkbox label {
        font-size: 0.9rem;
    }
    
    button, .button-link {
        padding: 14px 24px;
        font-size: 0.9rem;
        width: 100%;
    }
    
    .stepper {
        grid-template-columns: 1fr;
        gap: 8px;
        margin: 16px 0;
    }
    
    .step {
        padding: 12px 16px;
    }
    
    .step-label {
        font-size: 0.85rem;
    }
    
    .card {
        padding: 16px;
        margin: 16px 0;
    }
    
    .actions {
        flex-direction: column;
        gap: 8px;
    }
    
    .btn-outline {
        width: 100%;
        padding: 12px 16px;
    }
    
    .brandbar {
        padding: 12px 16px;
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }
    
    .nav {
        justify-content: center;
    }
    
    .nav-link {
        padding: 6px 8px;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 16px 12px;
    }
    
    h1 {
        font-size: 1.8rem;
    }
    
    form {
        padding: 20px 16px;
    }
    
    input[type="text"],
    input[type="url"] {
        padding: 12px 14px;
        font-size: 0.95rem;
    }
    
    .checkbox {
        padding: 12px;
        margin: 12px 0;
    }
    
    .checkbox label {
        font-size: 0.85rem;
    }
    
    button, .button-link {
        padding: 12px 20px;
        font-size: 0.8rem;
    }
    
    .stepper {
        margin: 12px 0;
    }
    
    .step {
        padding: 10px 12px;
    }
    
    .step-index {
        width: 24px;
        height: 24px;
        font-size: 0.8rem;
    }
    
    .step-label {
        font-size: 0.8rem;
    }
    
    .card {
        padding: 12px;
        margin: 12px 0;
    }
    
    .card h2 {
        font-size: 1.1rem;
    }
    
    .card .sub {
        font-size: 0.9rem;
    }
    
    .btn-outline {
        padding: 10px 14px;
        font-size: 0.85rem;
    }
    
    .brandbar {
        padding: 8px 12px;
    }
    
    .badge {
        padding: 6px 10px;
        font-size: 0.9rem;
    }
    
    .nav-link {
        padding: 4px 6px;
        font-size: 0.8rem;
    }
}

/* Banner Landing Page Responsive */
@media (max-width: 768px) {
    .banner-section {
        min-height: 100vh;
    }
    
    .banner-container {
        width: 100%;
        height: 100vh;
    }
    
    .banner-gif {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    
    .banner-overlay {
        padding: 20px;
        padding-bottom: 120px;
    }
    
    .banner-enter-btn {
        font-size: 0.8rem;
        padding: 16px 32px;
    }
}

@media (max-width: 480px) {
    .banner-overlay {
        padding: 16px;
        padding-bottom: 100px;
    }
    
    .banner-enter-btn {
        font-size: 0.7rem;
        padding: 14px 28px;
    }
}

/* Admin Dashboard Responsive */
@media (max-width: 768px) {
    .admin-container {
        padding: 20px 16px;
    }
    
    .admin-title {
        font-size: 2rem;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
        margin-bottom: 32px;
    }
    
    .stat-card {
        padding: 20px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .stat-label {
        font-size: 0.9rem;
    }
    
    .submissions-table {
        padding: 20px;
    }
    
    .table-header {
        flex-direction: column;
        gap: 16px;
        align-items: stretch;
    }
    
    .table-actions {
        justify-content: center;
    }
    
    .refresh-btn, .copy-btn {
        font-size: 0.7rem;
        padding: 8px 16px;
    }
    
    table {
        font-size: 0.85rem;
    }
    
    th, td {
        padding: 8px 12px;
    }
    
    .wallet-address {
        font-size: 0.75rem;
    }
    
    .status-badge {
        font-size: 0.7rem;
        padding: 2px 8px;
    }
    
    .login-card {
        padding: 32px 24px;
        margin: 16px;
    }
    
    .login-title {
        font-size: 1.8rem;
    }
    
    .login-field input {
        padding: 14px 16px;
        font-size: 1rem;
    }
    
    .login-btn {
        font-size: 0.9rem;
        padding: 14px 28px;
    }
}

@media (max-width: 480px) {
    .admin-container {
        padding: 16px 12px;
    }
    
    .admin-title {
        font-size: 1.6rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .stat-card {
        padding: 16px;
    }
    
    .stat-number {
        font-size: 1.8rem;
    }
    
    .stat-label {
        font-size: 0.85rem;
    }
    
    .submissions-table {
        padding: 16px;
    }
    
    .table-title {
        font-size: 1.2rem;
    }
    
    .refresh-btn, .copy-btn {
        font-size: 0.65rem;
        padding: 6px 12px;
    }
    
    table {
        font-size: 0.8rem;
    }
    
    th, td {
        padding: 6px 8px;
    }
    
    .wallet-address {
        font-size: 0.7rem;
    }
    
    .status-badge {
        font-size: 0.65rem;
        padding: 2px 6px;
    }
    
    .login-card {
        padding: 24px 20px;
        margin: 12px;
    }
    
    .login-title {
        font-size: 1.6rem;
    }
    
    .login-field input {
        padding: 12px 14px;
        font-size: 0.95rem;
    }
    
    .login-btn {
        font-size: 0.8rem;
        padding: 12px 24px;
    }
}

/* Thank You Page Responsive */
@media (max-width: 768px) {
    .thank-you-content {
        padding: 32px 24px;
    }
    
    .success-icon {
        font-size: 3rem;
        margin-bottom: 20px;
    }
    
    .thank-you-content h1 {
        font-size: 2rem;
        margin-bottom: 16px;
    }
    
    .thank-you-content p {
        font-size: 1rem;
    }
    
    .sub-message {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .thank-you-content {
        padding: 24px 20px;
    }
    
    .success-icon {
        font-size: 2.5rem;
        margin-bottom: 16px;
    }
    
    .thank-you-content h1 {
        font-size: 1.8rem;
        margin-bottom: 12px;
    }
    
    .thank-you-content p {
        font-size: 0.95rem;
    }
    
    .sub-message {
        font-size: 0.85rem;
    }
}

/* Additional Mobile Optimizations */
@media (max-width: 768px) {
    /* Improve touch targets */
    input[type="checkbox"] {
        width: 24px;
        height: 24px;
    }
    
    /* Better spacing for mobile */
    .field {
        margin-bottom: 20px;
    }
    
    .hint {
        font-size: 0.8rem;
        margin-top: 6px;
    }
    
    /* Improve form layout */
    form {
        margin: 24px 0;
    }
    
    /* Better button sizing */
    button, .button-link {
        min-height: 48px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    /* Improve stepper on mobile */
    .stepper {
        margin: 20px 0 16px;
    }
    
    .step {
        text-align: center;
        flex-direction: column;
        gap: 8px;
    }
    
    .step-index {
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    /* Extra small screens */
    .container {
        padding: 12px 8px;
    }
    
    h1 {
        font-size: 1.6rem;
        line-height: 1.2;
    }
    
    p {
        font-size: 0.9rem;
        line-height: 1.4;
    }
    
    form {
        padding: 16px 12px;
        margin: 16px 0;
    }
    
    input[type="text"],
    input[type="url"] {
        padding: 10px 12px;
        font-size: 0.9rem;
    }
    
    .checkbox {
        padding: 10px;
        margin: 10px 0;
    }
    
    .checkbox label {
        font-size: 0.8rem;
        line-height: 1.3;
    }
    
    button, .button-link {
        padding: 10px 16px;
        font-size: 0.75rem;
        min-height: 44px;
    }
    
    .stepper {
        margin: 16px 0 12px;
    }
    
    .step {
        padding: 8px 10px;
    }
    
    .step-index {
        width: 20px;
        height: 20px;
        font-size: 0.7rem;
    }
    
    .step-label {
        font-size: 0.75rem;
    }
    
    .card {
        padding: 10px;
        margin: 10px 0;
    }
    
    .card h2 {
        font-size: 1rem;
    }
    
    .card .sub {
        font-size: 0.85rem;
    }
    
    .btn-outline {
        padding: 8px 12px;
        font-size: 0.8rem;
    }
    
    .brandbar {
        padding: 6px 8px;
    }
    
    .badge {
        padding: 4px 8px;
        font-size: 0.8rem;
    }
    
    .nav-link {
        padding: 3px 5px;
        font-size: 0.75rem;
    }
}

/* Landscape orientation adjustments */
@media (max-height: 500px) and (orientation: landscape) {
    .banner-overlay {
        padding-bottom: 60px;
    }
    
    .banner-enter-btn {
        font-size: 0.7rem;
        padding: 12px 24px;
    }
    
    .container {
        padding: 16px 20px;
    }
    
    form {
        padding: 20px;
    }
}

/* High DPI displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .banner-gif {
        image-rendering: -webkit-optimize-contrast;
        image-rendering: crisp-edges;
    }
}

/* Main Content (hidden initially) */
.landing-pro { 
    width: 100%; 
    padding-top: 64px; 
    display: none;
}

.brandbar { 
    width: 100%; 
    max-width: 1100px; 
    margin: 0 auto 24px; 
    display: flex; 
    align-items: center; 
    justify-content: space-between; 
    padding: 0 16px; 
}

.badge { 
    padding: 8px 12px; 
    border-radius: 999px; 
    font-weight: 700; 
    letter-spacing: 0.3px; 
}

.nav { 
    display: flex; 
    gap: 12px; 
}

.nav-link { 
    color: #cdd5ff; 
    text-decoration: none; 
    padding: 8px 10px; 
    border-radius: 8px; 
    border: 1px solid rgba(255,255,255,0.08); 
    background: rgba(255,255,255,0.04); 
    transition: all 0.3s ease;
}

.nav-link:hover { 
    filter: brightness(1.1); 
    transform: translateY(-1px);
}

.hero { 
    width: 100%; 
}

.hero-grid { 
    width: 100%; 
    max-width: 1100px; 
    margin: 0 auto; 
    display: grid; 
    grid-template-columns: 1.1fr 1fr; 
    gap: 28px; 
    align-items: center; 
    padding: 0 16px; 
}

.hero-copy h1 { 
    font-size: 3rem; 
    margin-bottom: 8px; 
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-copy .lead { 
    color: var(--text-muted); 
    margin-bottom: 18px; 
    font-size: 1.1rem;
}

.hero-media { 
    display: grid; 
    place-items: center; 
}

.media-frame { 
    position: relative; 
    padding: 16px; 
    border-radius: 24px; 
    background: rgba(255,255,255,0.04); 
    border: 1px solid var(--panel-border); 
    box-shadow: var(--shadow); 
}

.media-frame::after { 
    content: ''; 
    position: absolute; 
    inset: -2px; 
    border-radius: 26px; 
    background: linear-gradient(135deg, rgba(102,126,234,0.3), rgba(118,75,162,0.3)); 
    filter: blur(30px); 
    opacity: 0.25; 
    z-index: -1; 
}

.brand {
    width: 280px; 
    height: auto;
    image-rendering: pixelated;
    border-radius: 20px;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.1);
    transition: all 0.4s ease;
}

.cta-group { 
    display: flex; 
    gap: 12px; 
    align-items: center; 
    flex-wrap: wrap;
}

.button-link {
    display: inline-flex; 
    align-items: center; 
    justify-content: center;
    padding: 16px 32px; 
    border-radius: 12px; 
    border: none;
    background: var(--primary); 
    color: white; 
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none; 
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.button-link:hover { 
    background: var(--primary-hover);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 
        0 20px 40px rgba(102, 126, 234, 0.4),
        0 0 0 1px rgba(255, 255, 255, 0.1);
}

.btn-outline {
    display: inline-flex; 
    align-items: center; 
    justify-content: center;
    padding: 10px 14px; 
    border-radius: 12px; 
    text-decoration: none; 
    font-weight: 600;
    border: 1px solid rgba(102, 126, 234, 0.6);
    color: #cdd5ff; 
    background: rgba(102, 126, 234, 0.08);
    transition: all 0.25s ease;
}

.btn-outline:hover { 
    filter: brightness(1.05); 
    transform: translateY(-1px); 
    box-shadow: 0 6px 14px rgba(102, 126, 234, 0.25); 
}

.stats { 
    display: grid; 
    grid-template-columns: repeat(3, auto); 
    gap: 24px; 
    justify-content: center; 
    margin-top: 28px; 
    opacity: 0.9; 
}

.stat { 
    display: grid; 
    justify-items: center; 
    background: rgba(255,255,255,0.04); 
    border: 1px solid var(--panel-border); 
    padding: 12px 16px; 
    border-radius: 12px; 
}

.stat .k { 
    font-weight: 800; 
    font-size: 1.1rem; 
}

.stat span:last-child { 
    color: var(--text-muted); 
    font-size: 0.9rem; 
}

@media (max-width: 860px) {
    .hero-grid { 
        grid-template-columns: 1fr; 
        text-align: center; 
    }
    .hero-copy h1 { 
        font-size: 2.2rem; 
    }
    .cta-group { 
        justify-content: center; 
    }
    .banner-content h1 {
        font-size: 2.5rem;
    }
    .banner-content p {
        font-size: 1rem;
    }
}
