.hero {
    padding: 80px 0 60px;
    background: linear-gradient(180deg, rgba(80,96,240,0.06) 0%, #fff 50%);
}

.features {
    background: #fff;
}

.drama-section {
    background: var(--bg-light);
}

.scenes {
    background: #fff;
}

.experience {
    background: #1a1a2e;
    color: #fff;
    padding: 70px 0;
}

.experience .section-title {
    color: #fff;
}

.experience .section-subtitle {
    color: rgba(255,255,255,0.6);
}

.experience .exp-item h3 {
    color: #fff;
}

.experience .exp-item p {
    color: rgba(255,255,255,0.6);
}

.reviews {
    background: #fff;
}

.news-section {
    background: var(--bg-light);
}

.updates {
    background: #fff;
}

.faq-section {
    background: var(--bg-light);
}

.counters {
    background: var(--primary-gradient);
    padding: 56px 0;
    color: #fff;
    text-align: center;
}

.counters-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.counter-item .counter-num {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 4px;
}

.counter-item .counter-label {
    font-size: 0.9375rem;
    opacity: 0.85;
}

@media (max-width: 768px) {
    .counters-grid {
        grid-template-columns: 1fr 1fr;
    }
    .counter-item .counter-num {
        font-size: 1.875rem;
    }
}

@media (max-width: 480px) {
    .counters-grid {
        grid-template-columns: 1fr 1fr;
    }
}
