:root {
    --primary-red: #D32F2F;
    --rose-pink: #F48FB1;
    --pure-black: #000000;
    --sidebar-bg: #0a0a0a;
    --text-white: #FFFFFF;
    --overlay-dark: rgba(0, 0, 0, 0.7);
    --gold-glow: rgba(211, 47, 47, 0.4);
}

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

body {
    font-family: 'Montserrat', sans-serif;
    background: var(--pure-black);
    color: var(--text-white);
    line-height: 1.6;
    height: 100vh;
    overflow-x: hidden;
}

/* Mobile-First Layout (Default) */
.page-container {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.hero-image {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('assets/hero_v3.png') no-repeat center center/cover;
    z-index: 1;
}

.brand-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: clamp(2rem, 5vw, 4rem);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    z-index: 5;
    pointer-events: none;
}

.brand-header {
    animation: fadeIn 1.2s ease-out;
}

.trademark {
    font-size: 0.7rem;
    letter-spacing: 0.05rem;
    opacity: 0.6;
    margin-top: auto;
}

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

.shh-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.85) 80%);
    pointer-events: none;
}

.content-wrapper {
    width: 100%;
    max-width: 600px;
    text-align: center;
    margin-top: 15vh;
    /* Push down to avoid overlapping floating logo on mobile */
    animation: fadeIn 1.5s ease-out;
}

/* Typography & Brand */
.logo {
    font-family: 'Cinzel', serif;
    font-size: clamp(2.2rem, 8vw, 3.5rem);
    color: var(--primary-red);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.3rem;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.8);
}

.tagline {
    font-size: clamp(0.8rem, 2.5vw, 1rem);
    font-weight: 300;
    letter-spacing: 0.1rem;
    opacity: 0.9;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.8);
}

.sub-headline {
    font-family: 'Cinzel', serif;
    font-size: clamp(1.2rem, 4vw, 1.8rem);
    color: var(--primary-red);
    margin-bottom: 1.5rem;
    line-height: 1.4;
    text-transform: uppercase;
    letter-spacing: 0.2rem;
}

.mystery-divider {
    width: 60px;
    height: 2px;
    background: var(--primary-red);
    margin: 0 auto 3rem;
    box-shadow: 0 0 10px var(--primary-red);
}

/* Countdown Section */
.countdown-mini {
    display: flex;
    justify-content: center;
    gap: clamp(1rem, 5vw, 2.5rem);
    margin: 2rem 0 4rem;
}

.time-block {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.number {
    font-size: clamp(2rem, 10vw, 3.5rem);
    font-weight: 600;
    color: var(--rose-pink);
    text-shadow: 0 0 15px rgba(244, 143, 177, 0.4);
    animation: pulse 2s infinite ease-in-out;
}

.label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.1rem;
    opacity: 0.6;
    margin-top: 0.5rem;
}

/* Footer Section */
.page-footer {
    opacity: 0.8;
}

.cta-mini {
    margin-bottom: 2rem;
    font-family: 'Cinzel', serif;
    letter-spacing: 0.2rem;
    color: var(--primary-red);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.9rem;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {

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

    50% {
        transform: scale(1.05);
        opacity: 0.9;
    }
}

/* Desktop Layout Refinement (>= 768px) */
@media (min-width: 1024px) {
    .page-container {
        flex-direction: row;
        overflow: hidden;
        height: 100vh;
    }

    .hero-image {
        position: static;
        flex: 1.2;
        height: 100%;
        background-attachment: scroll;
        z-index: 1;
        position: relative;
        /* Container for relative brand-overlay */
    }

    .brand-overlay {
        position: absolute;
        /* Re-position specifically for split screen */
    }

    .content-side {
        flex: 0.8;
        background: var(--sidebar-bg);
        min-height: auto;
        border-left: 1px solid rgba(255, 255, 255, 0.05);
    }

    .shh-overlay {
        background: linear-gradient(to right, rgba(0, 0, 0, 0.5), transparent);
    }

    .content-wrapper {
        text-align: center;
        max-width: 450px;
        margin-top: 0;
        /* No need to push down on desktop */
    }
}


/* Mobile Tweak (ensure scrollability if content is taller than screen) */
@media (max-height: 600px) {
    .content-side {
        padding: 4rem 1rem;
    }
}