@media (max-width: 1024px) {
    .page-wrapper {
        padding-left: 0;
    }

    .footer {
        margin-left: 0;
    }

    .top-header {
        left: 0;
        justify-content: space-between;
    }

    .header-container {
        justify-content: space-between;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .sidebar {
        transform: translateX(-100%);
        width: var(--sidebar-width-expanded);
        transition: transform var(--transition-speed) ease;
    }

    .sidebar--open {
        transform: translateX(0);
    }

    .sidebar-toggle {
        display: flex;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .page-title {
        font-size: 2rem;
    }

    .section-title {
        font-size: 1.7rem;
    }

    .advantages-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }

    .bonus-banner-image {
        height: 400px;
    }

    .bonus-banner-title {
        font-size: 2.5rem;
    }

    .bonus-banner-text {
        font-size: 1.1rem;
    }
}

@media (max-width: 768px) {
    :root {
        --sidebar-width-expanded: 290px;
    }

    .top-header {
        padding: 0 15px;
        height: 60px;
    }

    .header-actions {
        gap: 10px;
    }

    .btn-header {
        padding: 8px 18px;
        font-size: 0.85rem;
    }

    .content {
        margin-top: 60px;
    }

    .hero-section {
        padding: 60px 0;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .page-header {
        padding: 40px 0;
    }

    .page-title {
        font-size: 1.7rem;
    }

    .page-description {
        font-size: 1rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .advantages-section,
    .sections-preview,
    .providers-section,
    .bonus-types-section {
        padding: 40px 0;
    }

    .advantages-grid,
    .bonus-types-grid,
    .live-games-grid,
    .download-options-grid,
    .features-grid,
    .info-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .bonus-banner-image {
        height: 350px;
    }

    .bonus-banner-overlay {
        padding: 30px 20px;
    }

    .bonus-banner-title {
        font-size: 2rem;
        margin-bottom: 15px;
    }

    .bonus-banner-text {
        font-size: 1rem;
        margin-bottom: 25px;
    }

    .providers-grid {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    }

    .games-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    }

    .step-item {
        flex-direction: column;
        text-align: center;
    }

    .step-number {
        margin: 0 auto;
    }

    .mirror-card {
        flex-direction: column;
        text-align: center;
    }

    .promo-code-display {
        flex-direction: column;
    }

    .promo-code-text {
        font-size: 1.5rem;
        padding: 12px 20px;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .cta-buttons .btn {
        width: 100%;
    }

    .error-title {
        font-size: 5rem;
    }

    .error-subtitle {
        font-size: 1.5rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 0 20px;
    }

    .footer-section {
        padding-left: 0;
    }

    .footer-links {
        padding-left: 20px;
    }

    .official-links-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .top-header {
        padding: 0 10px;
        height: 60px;
    }

    .header-actions {
        gap: 8px;
    }

    .btn-header {
        padding: 7px 14px;
        font-size: 0.8rem;
    }

    .content {
        margin-top: 60px;
    }

    .container {
        padding: 0 15px;
    }

    .hero-title {
        font-size: 1.7rem;
    }

    .page-title {
        font-size: 1.5rem;
    }

    .section-title {
        font-size: 1.3rem;
    }

    .advantage-card,
    .preview-card,
    .bonus-type-card,
    .live-game-card,
    .download-option-card,
    .feature-card,
    .info-card {
        padding: 20px;
    }

    .promo-code-box {
        padding: 25px 20px;
    }

    .promo-code-text {
        font-size: 1.2rem;
        padding: 10px 15px;
    }

    .step-item {
        padding: 20px;
    }

    .faq-question {
        padding: 15px;
        font-size: 1rem;
    }

    .faq-answer-content {
        padding: 0 15px 15px;
    }

    .error-title {
        font-size: 4rem;
    }

    .btn {
        padding: 10px 20px;
        font-size: 0.95rem;
    }

    .btn-large {
        padding: 14px 30px;
        font-size: 1rem;
    }
}

@media (max-width: 320px) {
    .hero-title {
        font-size: 1.5rem;
    }

    .page-title {
        font-size: 1.3rem;
    }

    .section-title {
        font-size: 1.2rem;
    }

    .advantage-icon,
    .bonus-type-icon,
    .live-game-icon,
    .download-icon {
        font-size: 2rem;
    }

    .error-title {
        font-size: 3rem;
    }
}

@media (max-width: 768px) and (orientation: landscape) {
    .hero-section {
        padding: 40px 0;
    }

    .page-header {
        padding: 30px 0;
    }
}

@media (min-width: 1920px) {
    .container {
        max-width: 1400px;
    }

    .hero-title {
        font-size: 3.5rem;
    }

    .page-title {
        font-size: 3rem;
    }
}
