/* 1. LOCAL FONT LOADING - The 100/100 Fix */
@font-face {
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 900;
    font-display: swap;
    /* Make sure this filename matches exactly what you uploaded */
    src: url('/montserrat-900.woff2') format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
    --bg-color: #030303;
    --text-primary: #ffffff;
    --accent-color: #ff4d00;
    --neon-glow: rgba(255, 77, 0, 0.8);
}

html,
body {
    margin: 0;
    padding: 0;
    background-color: var(--bg-color);
    color: var(--text-primary);
    font-family: 'Inter', system-ui, sans-serif;
    overflow-x: hidden;
    height: 100%;
    cursor: crosshair;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

/* 2. The Video Container */
.video-mask-container {
    position: relative;
    width: 100%;
    height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-color: #000;
}

.video-mask-container video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    transform: translate(-50%, -50%);
    z-index: 1;
    object-fit: cover;
}

/* 3. THE TEXT MASK */
.text-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: var(--bg-color);
    color: #fff;
    mix-blend-mode: darken;
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    text-align: center;
    line-height: 0.85;
    letter-spacing: -0.05em;
    z-index: 5;
}

/* 4. THE SCREEN GLOW FIX */
.glow-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    text-align: center;
    line-height: 0.85;
    letter-spacing: -0.05em;
    z-index: 6;
    pointer-events: none;
    color: #000;
    text-shadow:
        0 0 4px var(--accent-color),
        0 0 20px var(--accent-color);
    mix-blend-mode: screen;
}

.brand-name {
    font-size: clamp(3.5rem, 16vw, 15rem);
}

.brand-sub {
    font-size: clamp(2.5rem, 13vw, 11rem);
}

/* 5. ENHANCED NEON SIGN */
.content-section {
    position: relative;
    z-index: 10;
    text-align: center;
    margin-top: -6rem;
    padding: 0 1rem 4rem;
    perspective: 800px;
}

.coming-soon-badge {
    display: inline-block;
    padding: 1.2rem 3.5rem;
    border: 4px solid var(--accent-color);
    border-radius: 6px;
    text-transform: uppercase;
    letter-spacing: 6px;
    font-size: 1.4rem;
    font-weight: 900;
    color: var(--accent-color);
    background: #000;
    transform: rotateX(25deg) rotateY(-5deg);
    transform-style: preserve-3d;
    box-shadow: 0 0 20px var(--neon-glow), inset 0 0 8px var(--neon-glow);
    animation: flicker 3s linear infinite;
}

@keyframes flicker {

    0%,
    19.9%,
    22%,
    62.9%,
    64%,
    64.9%,
    70%,
    100% {
        opacity: 1;
    }

    20%,
    21.9%,
    63%,
    63.9%,
    65%,
    69.9% {
        opacity: 0.4;
    }
}

.subtitle {
    font-size: clamp(1.1rem, 3vw, 1.5rem);
    max-width: 800px;
    margin: 2rem auto 0;
    color: #a0a0a0;
    letter-spacing: 1px;
}

/* 6. MOUSE SMOKE TRAIL */
#smoke-trail {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 999;
}

.smoke-puff {
    position: absolute;
    width: 15px;
    height: 15px;
    background: rgba(180, 220, 255, 0.2);
    border-radius: 50%;
    filter: blur(8px);
    animation: smoke-drift 1.2s ease-out forwards;
}

@keyframes smoke-drift {
    0% {
        transform: translate(0, 0) scale(1);
        opacity: 1;
    }

    100% {
        transform: translate(20px, -40px) scale(4);
        opacity: 0;
    }
}