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

:root {
    --neon-purple: #b14eff;
    --neon-cyan: #00f0ff;
    --neon-pink: #ff2d7b;
    --dark-bg: #0a0a0f;
    --card-bg: #12121a;
}

body {
    background-color: var(--dark-bg);
    color: #e0e0e0;
    font-family: 'Rajdhani', sans-serif;
    overflow-x: hidden;
    min-height: 100vh;
}

/* Animated background grid */
.bg-grid {
    position: fixed;
    inset: 0;
    background-image:
        linear-gradient(rgba(177, 78, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(177, 78, 255, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    z-index: 0;
    animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(60px, 60px);
    }
}

/* Floating particles */
.particles {
    position: fixed;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 3px;
    height: 3px;
    background: var(--neon-cyan);
    border-radius: 50%;
    opacity: 0;
    animation: float linear infinite;
}

@keyframes float {
    0% {
        opacity: 0;
        transform: translateY(100vh) scale(0);
    }

    10% {
        opacity: 0.6;
    }

    90% {
        opacity: 0.6;
    }

    100% {
        opacity: 0;
        transform: translateY(-10vh) scale(1);
    }
}

.content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 100vh;
    padding: 2rem;
}

/* Logo section */
.logo-container {
    margin-top: 10vh;
    width: min(80vw, 600px);
    padding: 3rem 4rem;
    animation: logoIn 1.2s ease-out;
    filter: drop-shadow(0 0 30px rgba(177, 78, 255, 0.4)) drop-shadow(0 0 60px rgba(0, 240, 255, 0.2));
    transition: filter 0.3s ease;
}

.logo-container:hover {
    filter: drop-shadow(0 0 40px rgba(177, 78, 255, 0.6)) drop-shadow(0 0 80px rgba(0, 240, 255, 0.3));
}

.logo-container img {
    width: 100%;
    height: auto;
}

@keyframes logoIn {
    0% {
        opacity: 0;
        transform: scale(0.8) translateY(-30px);
    }

    100% {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

/* Tagline */
.tagline {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(0.9rem, 2vw, 1.2rem);
    text-transform: uppercase;
    letter-spacing: 0.4em;
    color: var(--neon-cyan);
    margin-top: 1.5rem;
    animation: fadeUp 1s ease-out 0.4s both;
    text-shadow: 0 0 20px rgba(0, 240, 255, 0.5);
}

/* Divider */
.divider {
    width: min(60vw, 500px);
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--neon-purple), transparent);
    margin: 2.5rem 0;
    animation: fadeUp 1s ease-out 0.6s both;
}

/* Description */
.description {
    max-width: 600px;
    text-align: center;
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    font-weight: 500;
    line-height: 1.8;
    color: #a0a0b0;
    animation: fadeUp 1s ease-out 0.8s both;
}

.description strong {
    color: #fff;
    font-weight: 700;
}

/* Release date */
.release-badge {
    margin-top: 2.5rem;
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(0.8rem, 2vw, 1rem);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    color: #505068;
    animation: fadeUp 1s ease-out 1s both;
}

/* CTA section */
.cta {
    margin-top: 3rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    animation: fadeUp 1s ease-out 1.2s both;
}

.cta-text {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    background: linear-gradient(135deg, var(--neon-cyan), var(--neon-purple), var(--neon-pink));
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 4s ease-in-out infinite;
    text-align: center;
}

@keyframes gradientShift {

    0%,
    100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

.cta-sub {
    font-size: clamp(0.85rem, 1.8vw, 1rem);
    color: #606075;
    letter-spacing: 0.1em;
}

/* Wishlist button */
.wishlist-btn {
    margin-top: 1rem;
    padding: 0.9rem 2.5rem;
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(0.75rem, 1.5vw, 0.9rem);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: #fff;
    background: linear-gradient(135deg, var(--neon-purple), var(--neon-pink));
    border: none;
    border-radius: 4px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    text-decoration: none;
    display: inline-block;
}

.wishlist-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(177, 78, 255, 0.4), 0 0 60px rgba(255, 45, 123, 0.2);
}

.wishlist-btn::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: rotate(45deg);
    animation: btnShine 3s ease-in-out infinite;
}

@keyframes btnShine {

    0%,
    100% {
        transform: rotate(45deg) translateY(100%);
    }

    50% {
        transform: rotate(45deg) translateY(-100%);
    }
}

/* Footer */
footer {
    margin-top: auto;
    padding: 3rem 0 1.5rem;
    text-align: center;
    animation: fadeUp 1s ease-out 1.4s both;
}

.footer-year {
    font-family: 'Orbitron', sans-serif;
    font-size: 0.7rem;
    color: #35354a;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

@keyframes fadeUp {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Scanlines overlay */
.scanlines {
    position: fixed;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    background: repeating-linear-gradient(0deg,
            transparent,
            transparent 2px,
            rgba(0, 0, 0, 0.03) 2px,
            rgba(0, 0, 0, 0.03) 4px);
}
