:root {
    --bg-dark: #0a0a0a;
    --neon-yellow: #FDFD00;
    --text-white: #FFFFFF;
    --text-muted: rgba(255, 255, 255, 0.5);
    --font-display: 'Anton', sans-serif;
    --font-body: 'Outfit', sans-serif;
    --cursor-size: 8px;
}

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

body,
html {
    width: 100%;
    height: 100%;
    background-color: var(--bg-dark);
    color: var(--text-white);
    font-family: var(--font-body);
    overflow: hidden;
    /* Prevent scrolling for the coming soon screen */
    cursor: none;
    /* Hide default cursor */
}

/* --- Custom Cursor --- */
.neon-cursor {
    width: var(--cursor-size);
    height: var(--cursor-size);
    background-color: var(--neon-yellow);
    border-radius: 50%;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 9999;
    mix-blend-mode: difference;
    box-shadow: 0 0 15px var(--neon-yellow), 0 0 25px var(--neon-yellow);
    transition: width 0.1s, height 0.1s;
}

.neon-cursor-follower {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(253, 253, 0, 0.4);
    border-radius: 50%;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 9998;
    transition: width 0.25s ease-out, height 0.25s ease-out, border-color 0.2s;
}

/* --- Atmosphere & Background --- */
.noise-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    pointer-events: none;
    z-index: 10;
    opacity: 0.15;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}

.bg-image {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-image: url('../images/bg-time.jpg');
    background-size: cover;
    background-position: top center;
    background-repeat: no-repeat;
    opacity: 0.25;
    z-index: 0;
    filter: contrast(1.3) grayscale(90%);
    mix-blend-mode: luminosity;
    transform: scale(1.05);
    transition: transform 0.1s ease-out;
    /* For JS parallax */
    animation: autoZoom 30s infinite alternate ease-in-out;
}

@keyframes autoZoom {
    0% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1.18);
    }
}

/* --- Marquee Text --- */
.marquee-container {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100vw;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
    opacity: 0.04;
}

.marquee {
    display: flex;
    white-space: nowrap;
    font-family: var(--font-display);
    font-size: 18vw;
    line-height: 1;
    letter-spacing: -0.04em;
    color: transparent;
    -webkit-text-stroke: 2px var(--neon-yellow);
    text-transform: uppercase;
    animation: scrollBg 50s linear infinite;
    transform: translateY(-25%);
}

.marquee-reverse {
    animation: scrollBg 60s linear infinite reverse;
    transform: translateY(25%);
}

@keyframes scrollBg {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* --- Main Layout --- */
.content-wrapper {
    position: relative;
    z-index: 20;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 3.5rem 5rem;
}

/* Hero & Footer Container */
.bottom-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    width: 100%;
}

/* Header */
.header {
    display: flex;
    justify-content: flex-end;
    align-items: flex-start;
}

.logo {
    width: 150px;
    height: auto;
    filter: drop-shadow(0 0 12px rgba(253, 253, 0, 0.4));
}

.badge-new {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 10px 18px;
    border: 1px solid var(--neon-yellow);
    color: var(--neon-yellow);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    background: rgba(10, 10, 10, 0.6);
    backdrop-filter: blur(8px);
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background-color: var(--neon-yellow);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--neon-yellow);
    animation: pulse 2s infinite cubic-bezier(0.19, 1, 0.22, 1);
}

@keyframes pulse {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(253, 253, 0, 0.8);
    }

    70% {
        transform: scale(1);
        box-shadow: 0 0 0 12px rgba(253, 253, 0, 0);
    }

    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(253, 253, 0, 0);
    }
}

/* Hero Section */
.hero-section {
    display: flex;
    flex-direction: column;
    gap: 1.8rem;
    transition: transform 0.1s ease-out;
    /* For JS parallax */
    align-self: flex-start;
}

.hero-text {
    font-family: var(--font-display);
    font-size: clamp(4.5rem, 13vw, 16rem);
    line-height: 0.88;
    text-transform: uppercase;
    margin: 0;
    display: flex;
    flex-direction: column;
}

.hero-text .block {
    display: block;
    transform-origin: left bottom;
}

.text-outline {
    color: transparent;
    -webkit-text-stroke: 2px var(--neon-yellow);
    text-shadow: 0 0 40px rgba(253, 253, 0, 0.15);
    /* Halation/Glow effect */
}

.hero-subtext {
    font-size: clamp(1rem, 1.4vw, 1.4rem);
    font-weight: 300;
    max-width: 520px;
    line-height: 1.5;
    color: var(--text-white);
    border-left: 3px solid var(--neon-yellow);
    padding-left: 1.8rem;
    margin-left: 0.5rem;
}

/* Footer Section */
.footer {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 2rem;
}

.status-box {
    display: flex;
    flex-direction: column;
    text-align: right;
    font-family: var(--font-body);
}

.status-label {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 4px;
    color: var(--text-muted);
    text-transform: uppercase;
    margin-bottom: 6px;
}

.status-value {
    font-size: 1.1rem;
    font-weight: 900;
    color: var(--neon-yellow);
    letter-spacing: 1.5px;
    text-shadow: 0 0 10px rgba(253, 253, 0, 0.3);
}

/* --- Entry Animations --- */
.animate-enter {
    opacity: 0;
    transform: translateY(60px) skewY(5deg);
    animation: heroReveal 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.delay-1 {
    animation-delay: 0.1s;
}

.delay-2 {
    animation-delay: 0.3s;
}

.delay-3 {
    animation-delay: 0.5s;
}

.delay-4 {
    animation-delay: 0.7s;
}

.delay-5 {
    animation-delay: 0.9s;
}

@keyframes heroReveal {
    100% {
        opacity: 1;
        transform: translateY(0) skewY(0);
    }
}

/* --- Responsive Adjustments --- */
@media (max-width: 992px) {
    .content-wrapper {
        padding: 2.5rem 3rem;
    }

    .logo {
        width: 120px;
    }

    .marquee {
        font-size: 25vw;
    }
}

@media (max-width: 768px) {

    body,
    html {
        cursor: auto;
        overflow-y: auto;
        /* Allow scrolling on smaller devices if needed */
        height: auto;
        min-height: 100vh;
    }

    .neon-cursor,
    .neon-cursor-follower {
        display: none;
        /* Hide custom cursor on mobile */
    }

    .content-wrapper {
        padding: 2rem 1.5rem;
        min-height: 100vh;
    }

    .header {
        flex-direction: column-reverse;
        gap: 25px;
        align-items: flex-start;
    }

    .logo {
        width: 110px;
    }

    .bottom-container {
        flex-direction: column;
        align-items: flex-start;
        gap: 3rem;
    }

    .hero-section {
        margin: 0;
        /* Space out the content since it's not strictly absolute centered anymore */
    }

    .hero-text {
        font-size: 18vw;
    }

    .hero-subtext {
        max-width: 100%;
        margin-left: 0;
        font-size: 1.1rem;
    }

    .marquee {
        font-size: 35vw;
    }

    .footer {
        justify-content: flex-start;
        margin-top: 1rem;
    }

    .status-box {
        text-align: left;
    }
}