/* Responsive Styles for Azino777 */

@media screen and (max-width: 1024px) {
    .az7-advantages-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .az7-footer-top {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 768px) {
    /* Header Mobile */
    .az7-nav-menu {
        display: none;
    }
    
    .az7-burger-menu {
        display: flex;
    }
    
    .az7-header-actions {
        gap: 8px;
    }
    
    .az7-btn {
        padding: 8px 16px;
        font-size: 13px;
    }
    
    /* Hero */
    .az7-hero-section {
        height: 400px;
    }
    
    .az7-hero-title {
        font-size: 32px;
    }
    
    .az7-hero-text {
        font-size: 18px;
    }
    
    /* Sections */
    .az7-section {
        padding: 40px 0;
    }
    
    .az7-section-title {
        font-size: 28px;
        margin-bottom: 35px;
    }
    
    /* Advantages */
    .az7-advantages-grid {
        grid-template-columns: 1fr;
    }
    
    /* Winners Table */
    .az7-winners-table {
        font-size: 14px;
    }
    
    .az7-winners-table th,
    .az7-winners-table td {
        padding: 10px 8px;
    }
    
    /* Tournaments Slider */
    .az7-tournaments-grid {
        grid-template-columns: 1fr;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }
    
    .az7-tournaments-grid::-webkit-scrollbar {
        display: none;
    }
    
    .az7-tournament-card {
        scroll-snap-align: start;
        min-width: 280px;
    }
    
    .az7-slider-nav {
        display: flex;
        justify-content: center;
        gap: 15px;
        margin-top: 20px;
    }
    
    .az7-slider-prev,
    .az7-slider-next {
        background: #0b80dc;
        color: #fff;
        border: none;
        width: 40px;
        height: 40px;
        border-radius: 50%;
        font-size: 24px;
        cursor: pointer;
        transition: background 0.3s ease;
    }
    
    .az7-slider-prev:hover,
    .az7-slider-next:hover {
        background: #096bb8;
    }
    
    /* Bonuses Slider */
    .az7-bonuses-grid {
        grid-template-columns: 1fr;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }
    
    .az7-bonuses-grid::-webkit-scrollbar {
        display: none;
    }
    
    .az7-bonus-card {
        scroll-snap-align: start;
        min-width: 280px;
    }
    
    /* Reviews */
    .az7-reviews-grid {
        grid-template-columns: 1fr;
    }
    
    /* Footer */
    .az7-footer-top {
        grid-template-columns: 1fr;
    }
    
    .az7-payment-icons {
        justify-content: center;
    }
    
    .az7-provider-logos {
        justify-content: center;
    }
    
    /* Widget */
    .az7-widget-content {
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }
    
    .az7-widget-text {
        font-size: 15px;
    }
    
    .az7-widget-btn {
        padding: 10px 25px;
    }
}

@media screen and (max-width: 480px) {
    .az7-hero-title {
        font-size: 24px;
    }
    
    .az7-hero-text {
        font-size: 16px;
    }
    
    .az7-section-title {
        font-size: 24px;
    }
    
    .az7-advantage-title {
        font-size: 20px;
    }
    
    .az7-tournament-name {
        font-size: 20px;
    }
    
    .az7-bonus-title {
        font-size: 20px;
    }
    
    .az7-bonus-amount {
        font-size: 28px;
    }
    
    #az7WheelCanvas {
        width: 300px !important;
        height: 300px !important;
    }
}

/* Unused responsive classes */
.az7-mobile-hidden { display: none; }
.az7-tablet-only { visibility: hidden; }
.az7-desktop-flex { display: none; }
