:root {
    --bg-dark: #020a1a;
    --bg-abyss: #000510;
    --accent-cyan: #00f6ff;
    /* Neon Aqua */
    --accent-cyan-dim: rgba(0, 246, 255, 0.3);
    --accent-gold: #ffd700;
    --accent-gold-dim: #b8860b;
    --text-main: #ffffff;
    --text-muted: #a0b0c0;
    --font-tech: 'Rajdhani', sans-serif;
    --font-body: 'Inter', sans-serif;
}

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

body {
    background-color: var(--bg-abyss);
    color: var(--text-main);
    font-family: var(--font-body);
    min-height: 100vh;
    overflow-x: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

/* Background Layers */
.deep-sea-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, #001a33 0%, #000510 100%);
    z-index: -5;
}

.underwater-shimmer {
    /* Removed for cleaner look, or keep very subtle */
    display: none;
}

.light-rays-volumetric {
    position: fixed;
    top: -20%;
    left: -20%;
    width: 140%;
    height: 140%;
    background: conic-gradient(from 180deg at 50% 0%,
            transparent 0deg,
            rgba(0, 100, 255, 0.03) 15deg,
            transparent 30deg,
            rgba(0, 100, 255, 0.05) 45deg,
            transparent 60deg);
    filter: blur(40px);
    animation: ray-sway 15s ease-in-out infinite alternate;
    transform-origin: 50% 0%;
    z-index: -4;
    pointer-events: none;
}

@keyframes ray-sway {
    0% {
        transform: rotate(-5deg);
        opacity: 0.6;
    }

    100% {
        transform: rotate(5deg);
        opacity: 0.8;
    }
}

.deep-sea-silhouettes {
    /* Removed for cleaner look */
    display: none;
}

#bubbles-container {
    /* Keep subtle bubbles */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -2;
    background-image:
        radial-gradient(circle, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
    background-size: 60px 100px;
    animation: bubbles-rise 25s linear infinite;
    opacity: 0.3;
}

@keyframes bubbles-rise {
    from {
        background-position: 0 1000px;
    }

    to {
        background-position: 0 0;
    }
}

#particles-gold {
    /* Soft particulate drift */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -2;
    background-image: radial-gradient(circle, rgba(255, 255, 255, 0.3) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.15;
    animation: particle-drift 80s linear infinite;
}

@keyframes particle-drift {
    from {
        background-position: 0 0;
    }

    to {
        background-position: 0 -1000px;
    }
}

/* Container */
.container {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 700px;
    /* Slightly wider for horizontal badges */
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 3rem;
    align-items: center;
}

/* Hero Section */
.hero {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.logo-wrapper {
    position: relative;
    width: 220px;
    height: 220px;
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 0 20px rgba(0, 246, 255, 0.3));
}

.sonar-ring {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 1px solid rgba(0, 246, 255, 0.2);
    border-radius: 50%;
    opacity: 0;
    z-index: 1;
    animation: sonar-pulse 5s infinite ease-out;
}

.sonar-ring.delay-1 {
    animation-delay: 1.5s;
}

@keyframes sonar-pulse {
    0% {
        transform: scale(0.8);
        opacity: 0.4;
        border-width: 1px;
    }

    100% {
        transform: scale(1.4);
        opacity: 0;
        border-width: 0px;
    }
}

.hero-title {
    font-family: var(--font-tech);
    font-size: 2.4rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #ffffff;
    text-shadow: 0 0 15px rgba(0, 246, 255, 0.4);
    margin-bottom: 0.5rem;
}

.gold-highlight {
    color: var(--accent-gold);
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.4);
}

.hero-subline {
    font-size: 1.05rem;
    color: #b0c0d0;
    max-width: 90%;
    line-height: 1.5;
}

/* Vault Tablet */
.vault-tablet {
    position: relative;
    width: 100%;
    background: #051024;
    border-radius: 20px;
    padding: 6px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.8), 0 0 40px rgba(0, 246, 255, 0.1);
    transition: transform 0.3s ease;
}

.vault-tablet:hover {
    transform: translateY(-5px);
}

.tablet-frame {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 20px;
    background: linear-gradient(135deg, #003366 0%, #00f6ff 50%, #003366 100%);
    z-index: 0;
    opacity: 0.6;
}

.tablet-screen {
    position: relative;
    background: linear-gradient(180deg, #020a1a 0%, #001529 100%);
    border-radius: 16px;
    padding: 2.5rem;
    z-index: 1;
    overflow: hidden;
    text-align: center;
    border: 1px solid rgba(0, 246, 255, 0.2);
    box-shadow: inset 0 0 30px rgba(0, 0, 0, 0.8);
}

.screen-scanlines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0) 50%, rgba(0, 0, 0, 0.2) 50%, rgba(0, 0, 0, 0.2));
    background-size: 100% 4px;
    opacity: 0.2;
    pointer-events: none;
}

.screen-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle, rgba(0, 246, 255, 0.4) 1px, transparent 1px);
    background-size: 20px 20px;
    opacity: 0.3;
    animation: drift-particles 10s linear infinite;
}

@keyframes drift-particles {
    from {
        background-position: 0 0;
    }

    to {
        background-position: 20px -20px;
    }
}

.offer-title {
    font-family: var(--font-tech);
    font-size: 1.6rem;
    color: var(--accent-gold);
    margin-bottom: 1.2rem;
    /* Increased spacing */
    text-transform: uppercase;
    letter-spacing: 1.5px;
    text-shadow: 0 0 15px rgba(255, 215, 0, 0.5);
}

.offer-text {
    font-size: 1rem;
    color: #a0b0c0;
}

/* Game Library Section */
.game-library {
    width: 100%;
    text-align: center;
}

.section-title {
    font-family: var(--font-tech);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 0 10px rgba(0, 246, 255, 0.3);
}



.games-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 600px) {
    .games-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.game-badge {
    display: flex;
    align-items: center;
    background: rgba(2, 10, 26, 0.6);
    border: 1px solid rgba(0, 246, 255, 0.15);
    border-radius: 8px;
    padding: 0.5rem;
    transition: all 0.3s ease;
    cursor: default;
}

.game-badge:hover {
    border-color: var(--accent-cyan);
    background: rgba(2, 10, 26, 0.8);
    box-shadow: 0 0 15px rgba(0, 246, 255, 0.1);
    transform: translateY(-2px);
}

.game-badge-img {
    width: 60px;
    height: 60px;
    border-radius: 6px;
    object-fit: cover;
    margin-right: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.game-badge-info h3 {
    font-family: var(--font-tech);
    font-size: 1rem;
    color: #fff;
    margin: 0;
    text-align: left;
    letter-spacing: 1px;
}

/* Email Module */
.email-module {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 1rem;
}

.input-group {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
}

.input-icon {
    position: absolute;
    left: 1rem;
    color: var(--accent-cyan);
    z-index: 2;
}

#email-input {
    width: 100%;
    padding: 1.2rem 1rem 1.2rem 3rem;
    background: #020a1a;
    /* Deep Navy */
    border: 1px solid var(--accent-cyan);
    /* Neon Aqua */
    border-radius: 8px;
    color: #ffffff;
    font-family: var(--font-body);
    font-size: 1rem;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    box-shadow: 0 0 10px rgba(0, 246, 255, 0.1);
    /* Subtle glow */
}

#email-input::placeholder {
    color: #66eaff;
    /* Soft Aqua */
    opacity: 0.7;
}

#email-input:focus {
    outline: none;
    box-shadow: 0 0 20px rgba(0, 246, 255, 0.25);
    border-color: #fff;
}

.command-btn {
    position: relative;
    width: 100%;
    padding: 1.2rem;
    background: linear-gradient(90deg, #004080 0%, #006080 100%);
    border: 1px solid rgba(0, 246, 255, 0.4);
    border-radius: 8px;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 0 15px rgba(0, 246, 255, 0.1);
}

.command-btn:hover {
    box-shadow: 0 0 25px rgba(0, 246, 255, 0.3);
    border-color: #fff;
    transform: translateY(-1px);
}

.btn-content {
    position: relative;
    z-index: 2;
    color: #fff;
    font-family: var(--font-tech);
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 2px;
}

.success-message {
    color: var(--accent-cyan);
    font-family: var(--font-tech);
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.hidden {
    display: none;
}

/* CTA Spotlight Section */
.cta-spotlight {
    position: relative;
    width: 100%;
    text-align: center;
    padding: 2rem 0;
    border-top: 1px solid rgba(0, 246, 255, 0.1);
    margin-top: 1rem;
}

.spotlight-beam {
    position: absolute;
    top: -50px;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 200px;
    background: radial-gradient(ellipse at center, rgba(0, 246, 255, 0.1) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.cta-title {
    font-family: var(--font-tech);
    font-size: 1.3rem;
    color: #fff;
    text-shadow: 0 0 10px rgba(0, 246, 255, 0.3);
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 1;
}

.cta-text {
    font-size: 0.95rem;
    color: #b0c0d0;
    margin-bottom: 2rem;
    line-height: 1.5;
    position: relative;
    z-index: 1;
}

.cta-links {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    /* Increased gap for cleaner flow */
    position: relative;
    z-index: 1;
}

.cta-link-item {
    display: flex;
    flex-direction: column;
    background: rgba(2, 10, 26, 0.6);
    border: 1px solid rgba(0, 246, 255, 0.15);
    padding: 0.8rem 1rem;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.cta-link-item:hover {
    background: rgba(0, 246, 255, 0.05);
    border-color: var(--accent-cyan);
    box-shadow: 0 0 10px rgba(0, 246, 255, 0.1);
    transform: translateX(3px);
}

.link-label {
    font-size: 0.9rem;
    color: #fff;
    font-weight: 600;
    margin-bottom: 0.1rem;
}

.link-url {
    font-size: 0.75rem;
    color: var(--accent-cyan);
    font-family: var(--font-tech);
    letter-spacing: 1px;
}

.cta-footer-text {
    margin-top: 2rem;
    font-size: 0.8rem;
    color: var(--accent-gold);
    font-family: var(--font-tech);
    letter-spacing: 1px;
    text-transform: uppercase;
    opacity: 0.8;
}


/* Responsive */
@media (max-width: 480px) {
    .hero-title {
        font-size: 1.8rem;
    }

    .container {
        padding: 1.5rem;
    }
}