/* ==========================================================================
   CSS RESET & VARIABLES
   ========================================================================== */
:root {
    /* Color Palette */
    --color-bg: #070709;
    --color-text-main: #ffffff;
    --color-text-muted: #a1a1aa;
    --color-accent-amber: #e7a348;
    --color-accent-gold: #e7a348;
    --color-accent-orange: #d18d36; /* Slightly darker shade of e7a348 for gradient depth */
    
    /* Glares & Glows */
    --glow-amber: rgba(231, 163, 72, 0.15);
    --glow-amber-strong: rgba(231, 163, 72, 0.4);
    --glow-orange: rgba(209, 141, 54, 0.2);

    /* Glassmorphism Styles */
    --glass-bg: rgba(18, 18, 24, 0.65);
    --glass-border: rgba(255, 255, 255, 0.08);
    --glass-border-focus: rgba(231, 163, 72, 0.4);
    
    /* Fonts */
    --font-display: 'Boldonse', 'Impact', 'Arial Black', sans-serif;
    --font-sans: 'Raleway', 'Helvetica Neue', Arial, sans-serif;
    
    /* Transitions */
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-fast: all 0.2s ease-out;
}

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

html, body {
    width: 100%;
    height: 100vh;
    overflow: hidden;
    background-color: var(--color-bg);
    background-image: linear-gradient(to right, rgba(7, 7, 9, 0.95) 0%, rgba(7, 7, 9, 0.5) 45%, rgba(7, 7, 9, 0.8) 100%), url('assets/background.jpg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    color: var(--color-text-main);
    font-family: var(--font-sans);
    overflow-x: hidden;
    line-height: 1.6;
    letter-spacing: 0.03em;
}

/* Background Particle Canvas */
#particles-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 1;
    pointer-events: auto; /* Allow canvas to receive mouse move events */
}

/* ==========================================================================
   LAYOUT STRUCTURE
   ========================================================================== */
.app-container {
    position: relative;
    z-index: 2; /* Sits above canvas */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100vh;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem 3rem;
}

/* Header */
.site-header {
    height: 60px;
    display: flex;
    align-items: center;
}

.logo {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: 0.15em;
    color: var(--color-text-main);
    text-transform: uppercase;
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.1);
}

.logo-accent {
    color: var(--color-accent-amber);
    background: linear-gradient(135deg, var(--color-accent-amber), var(--color-accent-orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Main Hero Grid */
.hero-section {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: center;
    margin: 1rem 0;
    flex: 1;
    overflow: hidden;
}

/* ==========================================================================
   LEFT COLUMN: COPYWRITING & ACTIONS
   ========================================================================== */
.hero-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-title {
    font-family: var(--font-display);
    font-size: 4.8rem;
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: 0.04em;
    color: var(--color-text-main);
    margin-bottom: 1.8rem;
    position: relative;
}

.hero-title .highlight {
    background: linear-gradient(135deg, var(--color-accent-amber) 0%, var(--color-accent-orange) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-family: var(--font-sans); /* Raleway */
    font-weight: 300; /* Light */
    display: inline-block;
    position: relative;
    z-index: 5; /* Sit on top of tomorrow-text */
}

.hero-title .tomorrow-text {
    font-family: var(--font-display); /* Boldonse */
    font-size: 90px;
    color: rgba(255, 255, 255, 0.25); /* 25% white opacity */
    position: absolute;
    left: 40px; /* Offset to the right of "Brighter" slightly */
    bottom: -15px; /* Offset below the baseline to align nicely behind Brighter */
    z-index: 1; /* Sit behind highlight */
    white-space: nowrap;
    pointer-events: none;
}

/* Background watermark text for tomorrow */
.hero-title .bg-title {
    font-size: 5rem;
    opacity: 0.08;
    color: transparent;
    -webkit-text-stroke: 1.5px var(--color-text-main);
    position: absolute;
    bottom: -10px;
    right: 5%;
    z-index: 1;
    pointer-events: none;
    letter-spacing: 0.08em;
}

.hero-subtitle {
    font-size: 1.05rem;
    font-weight: 300;
    color: var(--color-text-muted);
    max-width: 560px;
    margin-bottom: 1.8rem;
    line-height: 1.65;
}

.dot-accent {
    color: var(--color-accent-amber);
    font-weight: 600;
}

.hero-subtitle strong {
    color: #e7a348;
    font-weight: 700;
}

/* Countdown Clock */
.countdown-container {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
    max-width: fit-content;
}

.timer-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(12px);
    border-radius: 12px;
    min-width: 85px;
    padding: 1rem 0.8rem;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    transition: var(--transition-smooth);
}

.timer-box:hover {
    border-color: var(--glass-border-focus);
    box-shadow: 0 8px 32px 0 rgba(245, 158, 11, 0.1);
    transform: translateY(-4px);
}

.timer-number {
    font-family: var(--font-display);
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--color-text-main);
    line-height: 1;
}

.timer-label {
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-top: 0.4rem;
}

.timer-divider {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--color-accent-amber);
    animation: blinker 1.5s infinite;
}

@keyframes blinker {
    50% { opacity: 0.3; }
}

/* Signup Form */
.signup-container {
    max-width: 560px;
    width: 100%;
}

.input-wrapper {
    display: flex;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(16px);
    border-radius: 100px;
    padding: 6px;
    position: relative;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
    transition: var(--transition-smooth);
}

.input-wrapper:focus-within {
    border-color: var(--glass-border-focus);
    box-shadow: 0 10px 40px rgba(245, 158, 11, 0.15), 0 0 0 1px var(--color-accent-amber);
}

#email-input {
    flex-grow: 1;
    background: transparent;
    border: none;
    outline: none;
    font-family: var(--font-sans);
    font-size: 1.05rem;
    color: var(--color-text-main);
    padding: 0.8rem 1.8rem;
    width: 60%;
}

#email-input::placeholder {
    color: #6b7280;
    font-weight: 300;
}

#submit-btn {
    position: relative;
    border: 5px solid transparent;
    border-radius: 100px;
    outline: none;
    /* 3D Metallic border gradient (gold to teal/greenish highlights) */
    background: 
        linear-gradient(rgba(18, 18, 24, 0.85), rgba(18, 18, 24, 0.85)) padding-box,
        linear-gradient(135deg, #ffe3ad 0%, #e7a348 30%, #5fa899 55%, #a66f21 80%, #ffe3ad 100%) border-box;
    color: #ffffff;
    font-family: var(--font-sans);
    font-size: 1rem;
    font-weight: 400;
    padding: 0.8rem 2.8rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    /* Initial box shadows including dual color shadow projections (gold left, teal right) */
    box-shadow: 
        inset 0 0 0 1px rgba(231, 163, 72, 0.25),
        inset 0 4px 10px rgba(0, 0, 0, 0.8),
        0 12px 25px rgba(0, 0, 0, 0.6),
        -12px 12px 25px -8px rgba(231, 163, 72, 0.35),
        12px 12px 25px -8px rgba(95, 168, 153, 0.35),
        0 0 4px rgba(231, 163, 72, 0.15);
    transition: var(--transition-smooth);
    /* Ultra-thin pulsing outer glow animation */
    animation: pulseOuterGlow 3s ease-in-out infinite;
}

#submit-btn:hover {
    transform: scale(1.03);
    color: var(--color-accent-amber);
    box-shadow: 
        inset 0 0 0 1px rgba(231, 163, 72, 0.5),
        inset 0 2px 6px rgba(0, 0, 0, 0.6),
        0 12px 25px rgba(0, 0, 0, 0.6),
        -18px 18px 35px -4px rgba(231, 163, 72, 0.55),
        18px 18px 35px -4px rgba(95, 168, 153, 0.55),
        0 0 12px rgba(231, 163, 72, 0.45);
    background: 
        linear-gradient(rgba(28, 28, 36, 0.9), rgba(28, 28, 36, 0.9)) padding-box,
        linear-gradient(135deg, #ffffff 0%, #e7a348 30%, #5fa899 55%, #e7a348 80%, #ffffff 100%) border-box;
    animation-play-state: paused; /* Pause pulsing during hover to keep full glow shadow */
}

@keyframes pulseOuterGlow {
    0%, 100% {
        box-shadow: 
            inset 0 0 0 1px rgba(231, 163, 72, 0.25),
            inset 0 4px 10px rgba(0, 0, 0, 0.8),
            0 12px 25px rgba(0, 0, 0, 0.6),
            -12px 12px 25px -8px rgba(231, 163, 72, 0.35),
            12px 12px 25px -8px rgba(95, 168, 153, 0.35),
            0 0 4px rgba(231, 163, 72, 0.15);
    }
    50% {
        box-shadow: 
            inset 0 0 0 1px rgba(231, 163, 72, 0.35),
            inset 0 4px 10px rgba(0, 0, 0, 0.8),
            0 12px 25px rgba(0, 0, 0, 0.6),
            -18px 18px 35px -4px rgba(231, 163, 72, 0.55),
            18px 18px 35px -4px rgba(95, 168, 153, 0.55),
            0 0 10px rgba(231, 163, 72, 0.35);
    }
}

#submit-btn:active {
    transform: scale(0.98);
}

.arrow-icon {
    width: 18px;
    height: 18px;
    transition: var(--transition-smooth);
}

#submit-btn:hover .arrow-icon {
    transform: translateX(4px);
}

/* Form error container */
.error-container {
    height: 22px;
    margin-top: 0.6rem;
    padding-left: 1.8rem;
    font-size: 0.85rem;
    font-weight: 500;
    color: #ef4444;
    transition: var(--transition-fast);
    opacity: 0;
}

.error-container.show {
    opacity: 1;
}

/* ==========================================================================
   RIGHT COLUMN: HERO MEDIA / GLOBE
   ========================================================================== */
.hero-media {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.image-wrapper {
    position: relative;
    width: 100%;
    max-width: 460px;
    aspect-ratio: 16/9; /* Standard crop for the backdrop image */
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Radial ambient glow behind the globe image */
.ambient-glow {
    position: absolute;
    width: 380px;
    height: 380px;
    border-radius: 50%;
    background: radial-gradient(circle, var(--glow-amber-strong) 0%, rgba(245,158,11,0) 70%);
    z-index: 1;
    filter: blur(20px);
    pointer-events: none;
    animation: breathing-glow 6s ease-in-out infinite alternate;
}

.floating-image {
    position: relative;
    z-index: 2;
    width: 100%;
    height: auto;
    border-radius: 20px;
    object-fit: cover;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
    filter: drop-shadow(0 0 25px rgba(245, 158, 11, 0.2));
    transition: var(--transition-smooth);
    animation: float-y 5s ease-in-out infinite;
}

/* Animations */
@keyframes float-y {
    0% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
    100% { transform: translateY(0); }
}

@keyframes breathing-glow {
    0% { transform: scale(0.9); opacity: 0.6; }
    100% { transform: scale(1.1); opacity: 0.9; }
}

/* ==========================================================================
   FOOTER SECTION
   ========================================================================== */
.site-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 2rem;
    font-size: 0.9rem;
    color: var(--color-text-muted);
}

.trust-badge {
    font-weight: 400;
}

.badge-locations {
    font-weight: 600;
    color: var(--color-accent-amber);
    margin-left: 0.4rem;
}

.location {
    font-style: italic;
    color: var(--color-accent-amber);
}

.footer-links {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

/* Secret admin trigger button styling */
.admin-trigger-btn {
    background: transparent;
    border: none;
    outline: none;
    color: rgba(255, 255, 255, 0.15);
    cursor: pointer;
    padding: 6px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
}

.admin-trigger-btn:hover {
    color: var(--color-accent-amber);
    background: rgba(255, 255, 255, 0.05);
}

/* ==========================================================================
   MODALS AND DIALOG OVERLAYS
   ========================================================================== */
/* Success Modal */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(4, 4, 6, 0.85);
    backdrop-filter: blur(8px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 100;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.modal-overlay:not(.hidden) {
    opacity: 1;
    pointer-events: auto;
}

.glass-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(25px);
    position: relative;
    max-width: 500px;
    width: 90%;
    padding: 3rem 2.5rem;
    text-align: center;
    transform: scale(0.9) translateY(20px);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.modal-overlay:not(.hidden) .glass-card {
    transform: scale(1) translateY(0);
}

/* Success Checkmark Animation */
.success-icon-wrapper {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
}

.success-checkmark {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: block;
    stroke-width: 3;
    stroke: #10b981;
    stroke-miterlimit: 10;
    box-shadow: inset 0px 0px 0px #10b981;
    animation: fill-checkmark .4s ease-in-out .4s forwards, scale-checkmark .3s ease-in-out .9s alternate forwards;
}

.checkmark-circle {
    stroke-dasharray: 166;
    stroke-dashoffset: 166;
    stroke-width: 3;
    stroke-miterlimit: 10;
    stroke: #10b981;
    fill: none;
    animation: stroke-circle .6s cubic-bezier(0.65, 0, 0.45, 1) forwards;
}

.checkmark-check {
    transform-origin: 50% 50%;
    stroke-dasharray: 48;
    stroke-dashoffset: 48;
    animation: stroke-check .3s cubic-bezier(0.65, 0, 0.45, 1) .8s forwards;
}

@keyframes stroke-circle {
    100% { stroke-dashoffset: 0; }
}
@keyframes stroke-check {
    100% { stroke-dashoffset: 0; }
}
@keyframes fill-checkmark {
    100% { box-shadow: inset 0px 0px 0px 40px rgba(16, 185, 129, 0.1); }
}
@keyframes scale-checkmark {
    0% { transform: none; }
    50% { transform: scale3d(1.1, 1.1, 1); }
    100% { transform: none; }
}

.modal-title {
    font-family: var(--font-display);
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--color-text-main);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
}

.modal-message {
    font-size: 1.05rem;
    font-weight: 300;
    color: var(--color-text-muted);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.modal-message strong {
    color: var(--color-accent-amber);
    font-weight: 500;
}

.modal-btn {
    width: 100%;
    background: linear-gradient(135deg, var(--color-accent-amber) 0%, var(--color-accent-orange) 100%);
    border: none;
    outline: none;
    color: #000000;
    font-family: var(--font-sans);
    font-size: 1rem;
    font-weight: 700;
    padding: 0.9rem;
    border-radius: 10px;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.modal-btn:hover {
    background: linear-gradient(135deg, #fbbf24 0%, #f97316 100%);
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3);
}

/* Waitlist Admin Panel Overlay */
.admin-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(4, 4, 6, 0.9);
    backdrop-filter: blur(10px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 200;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.admin-overlay:not(.hidden) {
    opacity: 1;
    pointer-events: auto;
}

.admin-content {
    max-width: 650px;
    width: 90%;
    padding: 2.5rem;
    text-align: left;
}

.admin-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding-bottom: 1rem;
}

.admin-header h2 {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    color: var(--color-accent-amber);
    text-transform: uppercase;
}

.close-admin-x {
    background: transparent;
    border: none;
    outline: none;
    color: var(--color-text-muted);
    font-size: 2rem;
    cursor: pointer;
    line-height: 1;
    transition: var(--transition-fast);
}

.close-admin-x:hover {
    color: #ef4444;
}

.admin-desc {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    margin-bottom: 1.5rem;
}

.table-wrapper {
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    max-height: 250px;
    overflow-y: auto;
    margin-bottom: 1.5rem;
}

.email-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem;
}

.email-table th, .email-table td {
    padding: 0.8rem 1rem;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.email-table th {
    background: rgba(255, 255, 255, 0.03);
    color: var(--color-text-main);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 0.05em;
}

.email-table td {
    color: var(--color-text-muted);
}

.email-table tr:last-child td {
    border-bottom: none;
}

.no-emails-msg {
    text-align: center;
    color: var(--color-text-muted);
    padding: 2rem;
    font-style: italic;
    font-size: 0.95rem;
}

.admin-actions {
    display: flex;
    justify-content: flex-end;
    gap: 1rem;
}

.admin-btn {
    border: none;
    outline: none;
    font-family: var(--font-sans);
    font-size: 0.9rem;
    font-weight: 600;
    padding: 0.6rem 1.4rem;
    border-radius: 6px;
    cursor: pointer;
    transition: var(--transition-fast);
}

.admin-btn.primary {
    background: var(--color-accent-amber);
    color: #000000;
}

.admin-btn.primary:hover {
    background: #fbbf24;
}

.admin-btn.secondary {
    background: rgba(255, 255, 255, 0.08);
    color: var(--color-text-main);
}

.admin-btn.secondary:hover {
    background: rgba(255, 255, 255, 0.15);
}

.admin-btn.danger {
    background: rgba(239, 68, 68, 0.15);
    color: #f87171;
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.admin-btn.danger:hover {
    background: rgba(239, 68, 68, 0.3);
    color: #ef4444;
}

.hidden {
    display: none !important;
}

/* ==========================================================================
   INITIAL LOAD ANIMATIONS (FADE-IN)
   ========================================================================== */
.fade-in-element {
    opacity: 0;
    transform: translateY(20px);
    animation: reveal-in 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.site-header.fade-in-element { animation-delay: 0.1s; }
.hero-content.fade-in-element { animation-delay: 0.3s; }
.hero-media.fade-in-element { animation-delay: 0.5s; }
.site-footer.fade-in-element { animation-delay: 0.7s; }

@keyframes reveal-in {
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ==========================================================================
   RESPONSIVE DESIGN (MEDIA QUERIES)
   ========================================================================== */
@media (max-width: 1200px) {
    .hero-title {
        font-size: 4rem;
    }
    
    .hero-title .tomorrow-text {
        font-size: 80px;
        left: 30px;
        bottom: -18px;
    }
}

@media (max-width: 992px) {
    html, body {
        height: auto;
        overflow: auto;
    }

    .app-container {
        padding: 2rem 2rem;
        gap: 2rem;
        height: auto;
        min-height: 100vh;
    }

    .hero-section {
        grid-template-columns: 1fr;
        gap: 3.5rem;
        text-align: center;
        margin: 2rem 0;
        overflow: visible;
    }

    html, body {
        background-image: linear-gradient(rgba(7, 7, 9, 0.75), rgba(7, 7, 9, 0.75)), url('assets/background.jpg');
    }

    .hero-content {
        align-items: center;
        background: rgba(18, 18, 24, 0.75);
        backdrop-filter: blur(16px);
        border: 1px solid rgba(255, 255, 255, 0.05);
        padding: 3rem 2rem;
        border-radius: 24px;
        box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
        max-width: 650px;
        margin: 0 auto;
    }

    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }

    .countdown-container {
        margin-left: auto;
        margin-right: auto;
    }

    .signup-container {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-media {
        order: -1; /* Display globe above text on tablets */
    }

    .image-wrapper {
        max-width: 400px;
    }
    
    .hero-title .tomorrow-text {
        font-size: 70px;
        left: 50%;
        transform: translateX(-50%);
        bottom: -20px;
    }
}

@media (max-width: 576px) {
    .app-container {
        padding: 1.5rem 1.2rem;
    }

    .logo {
        font-size: 1.6rem;
    }

    .hero-title {
        font-size: 2.8rem;
    }

    .hero-title .tomorrow-text {
        font-size: 50px;
        left: 50%;
        transform: translateX(-50%);
        bottom: -10px;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .countdown-container {
        gap: 0.8rem;
    }

    .timer-box {
        min-width: 65px;
        padding: 0.8rem 0.5rem;
    }

    .timer-number {
        font-size: 1.6rem;
    }

    .timer-label {
        font-size: 0.65rem;
    }

    .input-wrapper {
        flex-direction: column;
        background: transparent;
        border: none;
        box-shadow: none;
        padding: 0;
        gap: 1rem;
    }

    #email-input {
        width: 100%;
        background: var(--glass-bg);
        border: 1px solid var(--glass-border);
        border-radius: 100px;
        text-align: center;
        padding: 1rem;
    }

    #email-input:focus {
        border-color: var(--glass-border-focus);
        box-shadow: 0 0 0 1px var(--color-accent-amber);
    }

    #submit-btn {
        width: 100%;
        justify-content: center;
        padding: 1rem;
    }

    .error-container {
        padding-left: 0;
        text-align: center;
    }

    .site-footer {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 1rem;
    }
}
