:root {
    --bg-dark: #351a14;
    --brown-primary: #49261D;
    /* Chocolate Brown */
    --brown-dark: #2d1611;
    --orange-primary: #FB4D00;
    /* Tangelo */
    --accent-light: #FFEDE3;
    /* Linen */
    --accent-blue: #CAE7F7;
    /* Botticelli */
    --text-light: #FFEDE3;
    /* Linen */
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Prompt', sans-serif;
}

body {
    background-color: var(--brown-primary);
    background-image:
        radial-gradient(circle at center, rgba(251, 77, 0, 0.15) 0%, rgba(73, 38, 29, 1) 100%),
        url('data:image/svg+xml;utf8,<svg width="100" height="100" viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg"><path d="M0 0h100v100H0z" fill="none"/><path d="M10 10h80v80H10z" fill="rgba(255,237,227,0.02)"/></svg>');
    color: var(--text-light);
    min-height: 100vh;
    margin: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    overflow-x: hidden;
    position: relative;
    padding-bottom: 6rem;
}

/* Backgound Particles */
.background-decorations {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

.particle {
    position: absolute;
    border-radius: 50%;
    opacity: 0.6;
    filter: blur(1px);
    animation: floatUp 15s infinite linear;
}

.particle:nth-child(odd) {
    background: var(--accent-blue);
}

.particle:nth-child(even) {
    background: var(--orange-primary);
}

.p1 {
    left: 15%;
    width: 8px;
    height: 8px;
    animation-duration: 12s;
    animation-delay: 0s;
}

.p2 {
    left: 35%;
    width: 6px;
    height: 6px;
    animation-duration: 8s;
    animation-delay: 2s;
}

.p3 {
    left: 65%;
    width: 10px;
    height: 10px;
    animation-duration: 15s;
    animation-delay: 1s;
}

.p4 {
    left: 80%;
    width: 5px;
    height: 5px;
    animation-duration: 10s;
    animation-delay: 4s;
}

.p5 {
    left: 50%;
    width: 12px;
    height: 12px;
    animation-duration: 14s;
    animation-delay: 3s;
}

@keyframes floatUp {
    0% {
        transform: translateY(100vh) scale(1);
        opacity: 0;
    }

    20% {
        opacity: 0.6;
    }

    80% {
        opacity: 0.6;
    }

    100% {
        transform: translateY(-10vh) scale(1.5);
        opacity: 0;
    }
}

.container {
    max-width: 900px;
    padding: 2rem;
    z-index: 10;
    position: relative;
    margin-top: -5vh;
    width: 100%;
}

.logo-wrapper {
    margin-bottom: -0.5rem;
    position: relative;
}

.date-text {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--accent-light);
    margin-bottom: 0.2rem;
    letter-spacing: 4px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    position: relative;
    z-index: 5;
    text-transform: uppercase;
}

.logo-wrapper::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60%;
    height: 60%;
    background: radial-gradient(circle, rgba(202, 231, 247, 0.3) 0%, transparent 70%);
    /* Botticelli glow */
    z-index: -1;
    filter: blur(40px);
}

.logo {
    max-width: 100%;
    width: 450px;
    height: auto;
    filter: drop-shadow(0px 15px 25px rgba(0, 0, 0, 0.4));
    animation: float 5s ease-in-out infinite;
}

@keyframes float {
    0% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(-10px) rotate(1deg);
    }

    100% {
        transform: translateY(0px) rotate(0deg);
    }
}

.coming-soon {
    font-size: 3.8rem;
    font-weight: 800;
    color: var(--orange-primary);
    text-shadow: 3px 3px 0px var(--brown-dark), 0 0 20px rgba(251, 77, 0, 0.4);
    letter-spacing: 5px;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    background: -webkit-linear-gradient(top, var(--orange-primary), #d94200);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.subtitle {
    font-size: 1.3rem;
    color: var(--accent-light);
    margin-bottom: 2.5rem;
    font-weight: 400;
    opacity: 0.9;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.countdown {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.2rem;
    flex-wrap: wrap;
}

.time-box {
    background: linear-gradient(145deg, var(--brown-primary), var(--bg-dark));
    border: 3px solid var(--accent-blue);
    /* Botticelli border */
    border-radius: 16px;
    min-width: 120px;
    padding: 1.5rem 1rem;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4), inset 0 0 15px rgba(202, 231, 247, 0.1);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.time-box:hover {
    transform: translateY(-5px);
    border-color: var(--accent-light);
    /* Linen border on hover */
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6), inset 0 0 25px rgba(255, 237, 227, 0.15);
}

.time-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(to bottom, rgba(255, 237, 227, 0.08), rgba(255, 237, 227, 0));
    pointer-events: none;
}

.time-val {
    display: block;
    font-size: 4rem;
    font-weight: 800;
    color: var(--accent-light);
    line-height: 1;
    margin-bottom: 0.8rem;
    text-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
}

.time-label {
    display: block;
    font-size: 1rem;
    font-weight: 600;
    color: var(--orange-primary);
    /* Tangelo text */
    letter-spacing: 3px;
    text-transform: uppercase;
}

.time-separator {
    font-size: 3rem;
    font-weight: 800;
    color: var(--accent-light);
    text-shadow: 0 0 15px rgba(255, 237, 227, 0.3);
    animation: blink 1s infinite alternate;
}

@keyframes blink {
    0% {
        opacity: 0.3;
    }

    100% {
        opacity: 1;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .coming-soon {
        font-size: 2.8rem;
        letter-spacing: 4px;
    }

    .subtitle {
        font-size: 1.1rem;
    }

    .countdown {
        gap: 0.8rem;
    }

    .time-box {
        min-width: 90px;
        padding: 1rem 0.5rem;
        border-radius: 12px;
        border-width: 2px;
    }

    .time-val {
        font-size: 2.5rem;
        margin-bottom: 0.5rem;
    }

    .time-label {
        font-size: 0.8rem;
        letter-spacing: 1px;
    }

    .time-separator {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .coming-soon {
        font-size: 2rem;
        letter-spacing: 2px;
    }

    .time-separator {
        display: none;
    }

    .countdown {
        gap: 1rem;
    }

    .time-box {
        min-width: 40%;
    }
}

/* Sponsors Footer */
.sponsors-footer {
    position: absolute;
    bottom: 2rem;
    left: 0;
    width: 100%;
    text-align: center;
    z-index: 20;
}

.sponsors-title {
    font-size: 0.9rem;
    color: var(--accent-light);
    letter-spacing: 2px;
    margin-bottom: 1.2rem;
    opacity: 0.6;
    text-transform: uppercase;
    font-weight: 600;
}

.sponsors-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3.5rem;
    flex-wrap: wrap;
    padding: 0 1rem;
}

.sponsor-logo {
    max-height: 40px;
    width: auto;
    /* Soften logos so they match the moody theme - reveal color on hover! */
    filter: grayscale(100%) opacity(0.6) brightness(1.5);
    transition: filter 0.3s ease, transform 0.3s ease;
    cursor: pointer;
}

/* Specific brightness adjustments if needed per image type can go here */
.sponsor-logo[src*="lfssteel"] {
    mix-blend-mode: screen;
    /* Useful for jpeg logos with backgrounds if dark theme */
    border-radius: 4px;
}

.sponsor-logo:hover {
    filter: grayscale(0%) opacity(1) brightness(1);
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .sponsors-footer {
        bottom: 1rem;
    }

    .sponsors-logos {
        gap: 2rem;
    }

    .sponsor-logo {
        max-height: 30px;
    }
}