body {
    overflow: hidden;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: #ffffff;
    min-height: 1890px;
    color: #fff!important;
}

    body.scroll-enabled {
        overflow: hidden;
    }

.hero-section {
    height: 945px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('/background.png') center/cover no-repeat;
    filter: brightness(0.4);
    z-index: -1;
}

.hero-content {
    text-align: center;
    z-index: 2;
    padding: 20px;
}

.scroll-down, .scroll-up {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    font-size: 2rem;
    color: white;
    animation: bounce 2s infinite;
    cursor: pointer;
    background: none;
    border: none;
    z-index: 10;
}

.scroll-down {
    bottom: 40px;
}

.scroll-up {
    top: 40px;
}

.counter-section {
    height: 100vh;
    padding: 100px 20px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.lululu {
    background: #2C2C2C;
    background: radial-gradient(circle,#000 0%, rgba(80, 72, 61, 1) 40%, #5e6051 100%);
}

.counter-container {
    width: 90%;
    max-width: 800px;
    text-align: center;
}

.counter-display {
    font-size: 6rem;
    font-weight: 800;
    background: #9700FC;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin: 30px 0;
    text-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.date-label {
    font-size: 1.2rem;
    margin: 8px 0;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.date-value {
    font-size: 1.8rem;
    margin: 15px 0;
    font-weight: 500;
}

.divider {
    height: 3px;
    background: linear-gradient(to right, transparent, rgba(255,255,255,0.5), transparent);
    margin: 30px auto;
    width: 70%;
}

.days-passed {
    font-size: 1.5rem;
    margin-top: -10px;
    margin-bottom: 30px;
    font-weight: 300;
}

.date-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.date-card {
    background: rgba(255, 255, 255, 0.08);
    padding: 20px;
    border-radius: 15px;
    backdrop-filter: blur(5px);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0) translateX(-50%);
    }

    40% {
        transform: translateY(-15px) translateX(-50%);
    }

    60% {
        transform: translateY(-7px) translateX(-50%);
    }
}

@media (max-width: 768px) {
    .counter-display {
        font-size: 4rem;
    }

    .date-grid {
        grid-template-columns: 1fr;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-content p {
        font-size: 1.2rem;
    }
}
