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

:root {
    --red: #e00000;
    --bright-red: #ff2020;
    --dark-red: #5c0000;
    --black: #030303;
    --white: #f4f4f4;
    --gray: #969696;
}

html {
    scroll-behavior: smooth;
}

body {
    min-height: 100vh;
    background: #020202;
    color: var(--white);
    font-family: Arial, Helvetica, sans-serif;
    overflow-x: hidden;
}

/* Optional video background */
.video-bg {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -10;
    filter: brightness(.28) saturate(.9);
}

/* Animated background */
.background {
    position: fixed;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: -5;
    background:
        radial-gradient(circle at 50% 45%, rgba(110, 0, 0, .18), transparent 42%),
        linear-gradient(180deg, #020202 0%, #080808 52%, #020202 100%);
}

.red-glow {
    position: absolute;
    width: 38vw;
    height: 38vw;
    max-width: 600px;
    max-height: 600px;
    border-radius: 50%;
    background: rgba(180, 0, 0, .18);
    filter: blur(100px);
    animation: breathe 6s ease-in-out infinite;
}

.glow-one {
    top: -15%;
    left: -12%;
}

.glow-two {
    right: -15%;
    bottom: -15%;
    animation-delay: -3s;
}

@keyframes breathe {
    0%, 100% { transform: scale(.9); opacity: .55; }
    50% { transform: scale(1.15); opacity: 1; }
}

.road-light {
    position: absolute;
    height: 2px;
    width: 65vw;
    background: linear-gradient(90deg, transparent, rgba(255, 0, 0, .7), transparent);
    filter: blur(2px);
    opacity: .5;
    transform: rotate(-18deg);
    animation: sweep 7s linear infinite;
}

.light-one {
    top: 25%;
    left: -70%;
}

.light-two {
    top: 70%;
    left: -70%;
    animation-delay: -3.5s;
}

@keyframes sweep {
    0% { transform: translateX(0) rotate(-18deg); opacity: 0; }
    15% { opacity: .7; }
    65% { opacity: .7; }
    100% { transform: translateX(180vw) rotate(-18deg); opacity: 0; }
}

/* Rain */
#rain {
    position: absolute;
    inset: 0;
    opacity: .45;
}

.rain-drop {
    position: absolute;
    top: -15vh;
    width: 1px;
    height: 70px;
    background: linear-gradient(transparent, rgba(255,255,255,.55));
    transform: rotate(13deg);
    animation: rain linear infinite;
}

@keyframes rain {
    to {
        transform: translate3d(-90px, 120vh, 0) rotate(13deg);
    }
}

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

.scanlines {
    position: absolute;
    inset: 0;
    opacity: .055;
    background: repeating-linear-gradient(
        0deg,
        transparent 0,
        transparent 3px,
        #fff 4px
    );
}

/* Page */
.site {
    width: min(1180px, 92%);
    margin: 0 auto;
    padding: 58px 0 30px;
}

.hero {
    text-align: center;
    margin-bottom: 28px;
}

.eyebrow {
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 5px;
    color: #a8a8a8;
    margin-bottom: 8px;
}

.hero h1 {
    font-size: clamp(60px, 10vw, 125px);
    line-height: .85;
    font-style: italic;
    font-weight: 1000;
    letter-spacing: -7px;
    transform: skew(-7deg);
    text-shadow: 8px 8px 0 #290000, 0 0 35px rgba(255,0,0,.3);
}

.hero h1 span {
    color: var(--red);
}

.hero p {
    margin-top: 15px;
    color: #777;
    font-size: 12px;
    letter-spacing: 5px;
    text-transform: uppercase;
}

/* Nav */
.nav {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin: 0 auto 38px;
    border: 1px solid #333;
    background: rgba(10,10,10,.82);
    backdrop-filter: blur(12px);
    box-shadow: 0 12px 40px rgba(0,0,0,.5);
}

.nav a {
    color: #eee;
    text-decoration: none;
    padding: 16px 28px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1px;
    border-right: 1px solid #333;
    transition: .25s ease;
}

.nav a:last-child {
    border-right: 0;
}

.nav a:hover {
    background: var(--red);
    color: #fff;
    box-shadow: inset 0 -3px #ff5555;
}

/* Main card */
.content-card {
    padding: 30px;
    border: 1px solid #242424;
    background: rgba(7,7,7,.84);
    backdrop-filter: blur(14px);
    box-shadow:
        0 25px 80px rgba(0,0,0,.75),
        0 0 0 1px rgba(255,0,0,.035);
}

.section-heading {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 20px;
    margin-bottom: 24px;
}

.small-label {
    color: var(--red);
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 3px;
}

.section-heading h2 {
    margin-top: 5px;
    font-size: clamp(25px, 4vw, 43px);
    font-style: italic;
    letter-spacing: -1px;
}

.section-heading h2 span {
    color: var(--red);
}

.status {
    font-size: 9px;
    letter-spacing: 2px;
    color: #aaa;
    white-space: nowrap;
}

.dot {
    display: inline-block;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #f00;
    box-shadow: 0 0 12px #f00;
    margin-right: 5px;
    animation: pulse 1.2s infinite;
}

@keyframes pulse {
    50% { opacity: .25; }
}

/* Staggered gallery like the reference */
.gallery {
    display: grid;
    grid-template-columns: 1.15fr .85fr 1fr;
    grid-auto-rows: 220px;
    gap: 10px;
}

.photo {
    position: relative;
    display: block;
    overflow: hidden;
    background: #111;
    border: 1px solid #242424;
}

.photo img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    filter: saturate(.82) contrast(1.08);
    transition: transform .6s ease, filter .6s ease;
}

.photo::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        transparent 45%,
        rgba(0,0,0,.8) 100%
    );
}

.photo:hover img {
    transform: scale(1.07);
    filter: saturate(1.15) contrast(1.12);
}

.photo-overlay {
    position: absolute;
    left: 15px;
    right: 15px;
    bottom: 12px;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    align-items: end;
}

.photo-overlay span {
    color: var(--red);
    font-size: 10px;
    font-weight: 900;
}

.photo-overlay b {
    font-size: 12px;
    letter-spacing: 2px;
}

.photo-large {
    grid-row: span 2;
}

.photo-tall {
    grid-row: span 2;
}

.photo-wide {
    grid-column: span 2;
}

.photo-medium {
    grid-row: span 1;
}

/* Meet timer */
.meet-box {
    margin-top: 30px;
    padding: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 25px;
    border: 1px solid #4b0000;
    background:
        linear-gradient(105deg, rgba(110,0,0,.3), rgba(5,5,5,.8) 50%);
    box-shadow: inset 4px 0 var(--red);
}

.meet-box h3 {
    margin: 7px 0 5px;
    font-size: 20px;
    font-style: italic;
}

.meet-box p {
    color: #777;
    font-size: 12px;
}

.countdown {
    display: flex;
    align-items: center;
    gap: 12px;
}

.countdown div {
    text-align: center;
    min-width: 55px;
}

.countdown strong {
    display: block;
    font-size: 29px;
    font-weight: 900;
    color: #fff;
}

.countdown span {
    font-size: 8px;
    color: #777;
    letter-spacing: 2px;
}

.countdown i {
    color: var(--red);
    font-style: normal;
    font-weight: bold;
}

/* Footer */
footer {
    padding: 25px 0 0;
    text-align: center;
    color: #444;
    font-size: 9px;
    letter-spacing: 3px;
}

footer span {
    color: #777;
}

/* Mobile */
@media (max-width: 800px) {
    .site {
        width: 94%;
        padding-top: 35px;
    }

    .nav a {
        flex: 1 1 50%;
        text-align: center;
        border-bottom: 1px solid #333;
    }

    .content-card {
        padding: 18px;
    }

    .section-heading {
        align-items: start;
        flex-direction: column;
    }

    .gallery {
        grid-template-columns: 1fr 1fr;
        grid-auto-rows: 190px;
    }

    .photo-large,
    .photo-tall,
    .photo-wide {
        grid-row: span 1;
        grid-column: span 1;
    }

    .photo-wide {
        grid-column: span 2;
    }

    .meet-box {
        flex-direction: column;
        align-items: flex-start;
    }

    .countdown {
        width: 100%;
        justify-content: space-between;
    }
}

@media (max-width: 500px) {
    .hero h1 {
        letter-spacing: -4px;
    }

    .eyebrow {
        letter-spacing: 2px;
    }

    .nav a {
        font-size: 10px;
        padding: 14px 8px;
    }

    .gallery {
        grid-template-columns: 1fr;
    }

    .photo-wide {
        grid-column: span 1;
    }

    .countdown {
        gap: 3px;
    }

    .countdown div {
        min-width: 45px;
    }

    .countdown strong {
        font-size: 22px;
    }
}
