body, html {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    font-family: 'Roboto', sans-serif;
    background-color: #000;
}

.landing-container {
    position: relative;
    width: 100%;
    height: 100%;
    background: url('20250703_174952.jpg') no-repeat center center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
}

.content {
    position: relative;
    z-index: 1;
    color: #fff;
    opacity: 0;
    transform: translateY(50px);
}

.content h1 {
    font-family: 'Exo 2', sans-serif;
    font-size: 5rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.content p {
    font-size: 1.8rem;
    margin-bottom: 3rem;
}

.enter-button {
    display: inline-block;
    padding: 1.5rem 3.5rem;
    background: linear-gradient(45deg, #007bff, #00aaff);
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.5rem;
    font-family: 'Exo 2', sans-serif;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.enter-button span {
    position: relative;
    z-index: 1;
}

.enter-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 300%;
    height: 300%;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    transform: translate(-50%, -50%) scale(0);
    transition: all 0.5s ease;
}

.enter-button:hover::before {
    transform: translate(-50%, -50%) scale(1);
}

.enter-button:hover {
    box-shadow: 0 0 20px rgba(0, 170, 255, 0.8);
}

.countdown-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #000;
    z-index: 10;
    opacity: 0;
    visibility: hidden;
}
.countdown-number {
    font-family: 'Exo 2', sans-serif;
    font-size: 8rem;
    color: #fff;
    position: absolute;
    opacity: 0;
    transform: scale(0.8);
    filter: blur(8px);
}
@media (max-width: 768px) {
    .content h1 {
        font-size: 3.5rem;
    }

    .content p {
        font-size: 1.5rem;
    }

    .enter-button {
        padding: 1.2rem 2.8rem;
        font-size: 1.2rem;
    }

    .countdown-number {
        font-size: 6rem;
    }
}

@media (max-width: 480px) {
    .content h1 {
        font-size: 2.5rem;
    }

    .content p {
        font-size: 1.2rem;
        margin-bottom: 2rem;
    }

    .enter-button {
        padding: 1rem 2rem;
        font-size: 1rem;
    }

    .countdown-number {
        font-size: 4rem;
    }
}