/* ==============================================================
   RESET & GLOBALS
   ============================================================== */
* {
    margin: 0; padding: 0;
    box-sizing: border-box;
    cursor: none; /* Custom cursor everywhere */
}

html, body {
    width: 100vw; height: 100vh;
    overflow: hidden;
    background: #000;
    color: #fff;
    font-family: 'Inter', sans-serif;
    -webkit-font-smoothing: antialiased;
}

/* ==============================================================
   CUSTOM CURSOR
   ============================================================== */
.cursor {
    position: fixed;
    top: 0; left: 0;
    width: 40px; height: 40px;
    border-radius: 50%;
    background: #fff;
    mix-blend-mode: difference;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: width 0.3s, height 0.3s;
}

/* When hovering interactable elements, expand cursor */
body.hovering .cursor {
    width: 80px; height: 80px;
    background: rgba(200,255,62,1); /* Acid Lime */
}

/* ==============================================================
   CINEMATIC BACKGROUND
   ============================================================== */
.video-container {
    position: fixed;
    inset: 0;
}

.vid {
    position: absolute;
    top: 50%; left: 50%;
    width: 177.78vh; height: 100vh;
    min-width: 100vw; min-height: 56.25vw;
    transform: translate(-50%, -50%);
    object-fit: cover;
    filter: brightness(0.6) contrast(1.2);
    z-index: 0;
    pointer-events: none; /* Keep click-through */
}

/* Hide native iOS video controls/play button if Autoplay is blocked */
video::-webkit-media-controls,
video::-webkit-media-controls-start-playback-button,
video::-webkit-media-controls-play-button {
    display: none !important;
    -webkit-appearance: none;
}

.vignette {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle, transparent 40%, rgba(0,0,0,0.8) 100%);
}

/* ==============================================================
   KINETIC MARQUEE (Center)
   ============================================================== */
.marquee-container {
    position: fixed;
    top: 50%; left: 0;
    width: 100vw;
    transform: translateY(-50%) rotate(-4deg) scale(1.1);
    z-index: 2;
    overflow: hidden;
    white-space: nowrap;
    mix-blend-mode: overlay; /* Blends text beautifully with the video */
    opacity: 0.9;
    pointer-events: none;
}

.marquee-track {
    display: inline-block;
    animation: scrollText 20s linear infinite;
}

.marquee-text {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(12rem, 40vw, 35rem); /* Ridiculously huge */
    line-height: 0.8;
    color: #fff;
    padding-right: 4vw;
}

.dot {
    color: #C8FF3E; /* Acid Lime accent */
    font-family: 'Inter', sans-serif;
    font-size: clamp(6rem, 20vw, 15rem);
    vertical-align: middle;
}

@keyframes scrollText {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-33.3333%); } /* 3 spans, shift by exactly 1 */
}

/* ==============================================================
   UI LAYER (Four Corners)
   ============================================================== */
.ui-layer {
    position: fixed;
    inset: 2vw 3vw;
    z-index: 10;
    pointer-events: none;
}

.ui-element {
    position: absolute;
    pointer-events: auto;
}

.top-left { top: 0; left: 0; }
.top-right { top: 0; right: 0; text-align: right; }

.badge-stack {
    display: flex;
    flex-direction: column;
    font-weight: 900;
    font-size: clamp(1.2rem, 3vw, 2.5rem);
    letter-spacing: -1px;
    line-height: 1;
    color: #fff;
    text-shadow: 0 4px 20px rgba(0,0,0,0.5);
}
.badge-stack span:last-child {
    color: #FF1493; /* Neon Pink */
}

.dates-stack {
    display: flex;
    flex-direction: column;
    font-weight: 900;
    font-size: clamp(1.2rem, 3vw, 2.5rem);
    letter-spacing: -1px;
    line-height: 1;
    color: #fff;
    text-shadow: 0 4px 20px rgba(0,0,0,0.5);
}
.dates-stack span:last-child {
    color: #C8FF3E;
}

/* ==============================================================
   COMMAND LINE FOOTER FORM
   ============================================================== */
.bottom-bar {
    position: fixed;
    bottom: 0; left: 0; right: 0;
    background: rgba(10, 10, 10, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 1px solid rgba(255,255,255,0.1);
    z-index: 20;
    padding: 0;
    display: flex;
    flex-direction: column;
}

.form-subtext {
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.5);
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 12px 4vw 0 4vw;
    font-weight: 600;
}

form {
    display: flex;
    align-items: stretch;
    height: 100px;
}

.input-stack {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.input-wrapper {
    display: flex;
    align-items: center;
    padding: 0 4vw 12px 4vw; /* Padding bottom instead of centering perfectly to balance the subtext above */
    font-family: 'Inter', monospace;
    flex: 1;
}

.prompt-symbol {
    color: #C8FF3E;
    font-size: 2rem;
    font-weight: 900;
    margin-right: 20px;
}

input {
    flex: 1;
    background: transparent;
    border: none;
    color: #fff;
    font-family: 'Inter', sans-serif;
    font-weight: 900;
    font-size: clamp(1rem, 3vw, 2.5rem);
    letter-spacing: -0.5px;
    outline: none;
}
input::placeholder {
    color: rgba(255,255,255,0.2);
}

.submit-btn {
    background: #fff;
    color: #000;
    border: none;
    font-family: 'Inter', sans-serif;
    font-weight: 900;
    font-size: clamp(1rem, 1.5vw, 1.5rem);
    padding: 0 4vw;
    transition: all 0.3s;
}
.submit-btn:hover {
    background: #C8FF3E;
}

#success-msg {
    height: 100px;
    display: flex;
    align-items: center;
    padding: 0 4vw;
    color: #C8FF3E;
    font-family: 'Inter', monospace;
    font-size: clamp(1rem, 2vw, 1.5rem);
    font-weight: 600;
}
.hidden { display: none !important; }

/* ==============================================================
   ANIMATIONS
   ============================================================== */
/* Animations removed per user request */

/* ==============================================================
   MOBILE RESPONSIVE
   ============================================================== */
@media (max-width: 800px) {
    .marquee-container {
        transform: translateY(-50%) rotate(-10deg) scale(1.1);
    }
    form {
        flex-direction: column;
        height: auto;
    }
    .input-wrapper {
        padding: 20px 6vw;
        height: 70px;
    }
    .submit-btn {
        height: 70px;
        width: 100%;
        font-size: 1.2rem;
    }
    #success-msg { height: 70px; padding: 0 6vw; font-size: 0.9rem; }
}
