:root {
    --bg-color: #050505;
    --text-primary: #ffffff;
    --text-secondary: rgba(255, 255, 255, 0.7);
    --accent-red: #8b0000;
}

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

body {
    font-family: 'Outfit', sans-serif;
    color: var(--text-primary);
    background-color: var(--bg-color);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    padding: 3rem 1rem;
    overflow-x: hidden;
    text-align: center;
}

.background-video {
    position: fixed;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: -2;
    transform: translate(-50%, -50%);
    object-fit: cover;
}

.video-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.7) 100%);
    z-index: -1;
}

header {
    width: 100%;
}

.logo {
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: 0.05em;
}

main {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 800px;
    width: 100%;
}

.coming-soon {
    font-size: clamp(3rem, 10vw, 5rem);
    font-weight: 400;
    margin-bottom: 2.5rem;
    letter-spacing: -0.01em;
}

.countdown {
    display: flex;
    justify-content: center;
    align-items: baseline;
    gap: 0.5rem;
    font-size: clamp(1.5rem, 4.5vw, 2.5rem);
    font-weight: 500;
    margin-bottom: 3.5rem;
    font-variant-numeric: tabular-nums;
}

.time-block {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
}

.time-block .label {
    font-size: clamp(1rem, 2.5vw, 1.5rem);
    color: var(--text-primary);
    font-weight: 400;
}

.separator {
    color: var(--text-primary);
    opacity: 0.5;
    margin: 0 0.2rem;
}

.description {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-secondary);
    font-weight: 300;
    max-width: 650px;
    margin: 0 auto;
}

footer {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.address {
    font-style: normal;
    font-size: 0.9rem;
    line-height: 1.5;
    color: var(--text-secondary);
    font-weight: 400;
    letter-spacing: 0.02em;
}

/* Animations */
.coming-soon,
.countdown,
.description,
header,
footer {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s ease-out forwards;
}

header {
    animation-delay: 0.2s;
}

.coming-soon {
    animation-delay: 0.4s;
}

.countdown {
    animation-delay: 0.6s;
}

.description {
    animation-delay: 0.8s;
}

footer {
    animation-delay: 1s;
}

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

@media (max-width: 600px) {
    .countdown {
        flex-wrap: wrap;
        gap: 1rem;
    }

    .separator {
        display: none;
    }

    .time-block {
        flex-direction: column;
        align-items: center;
        width: 40%;
    }

    .time-block .label {
        font-size: 0.8rem;
    }
}