/* Additional responsive styles for new features */
@media (max-width: 768px) {
    .products-grid,
    .nominations-grid,
    .winners-grid {
        grid-template-columns: 1fr;
    }
    
    .score-board {
        font-size: 1.5rem;
        flex-direction: column;
        gap: 15px;
    }
    
    .attendance-buttons {
        flex-wrap: wrap;
    }
    
    .attendance-btn {
        flex: 1;
        text-align: center;
    }
    
    .updates-container {
        grid-template-columns: 1fr;
    }
    
    .cart-sidebar {
        width: 100%;
    }
    
    .category-filters {
        gap: 10px;
    }
    
    .category-btn {
        padding: 6px 12px;
        font-size: 0.9rem;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .products-grid,
    .nominations-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Animation for live updates */
@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.live-badge {
    animation: blink 1s infinite;
}

/* Dark mode support */
@media (prefers-color-scheme: dark) {
    body {
        background: #1a1a1a;
        color: #f5f5f5;
    }
    
    .product-card,
    .nomination-card,
    .schedule-card,
    .stat-box,
    .timeline,
    .stats-card {
        background: #2d2d2d;
        color: #f5f5f5;
    }
    
    .product-info h3,
    .nomination-info h3 {
        color: #FFD700;
    }
}

/* Print styles for tickets and receipts */
@media print {
    .main-header,
    .main-footer,
    .cart-icon,
    .category-filters,
    .attendance-buttons,
    .no-print {
        display: none !important;
    }
    
    .ticket-container,
    .receipt-container {
        margin: 0;
        padding: 0;
    }
    
    body {
        background: white;
        color: black;
    }
}




/* Additional mobile responsive fixes */
@media (max-width: 768px) {
    .hero-slider {
        height: 350px !important;
    }
    
    .hero-slider .slide h1 {
        font-size: 1.3rem !important;
    }
    
    .hero-slider .slide p {
        font-size: 0.8rem !important;
    }
    
    .slider-prev, .slider-next {
        padding: 8px 12px !important;
        font-size: 14px !important;
    }
    
    .quick-links .quick-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
    
    .news-grid {
        grid-template-columns: 1fr !important;
    }
    
    .players-grid, .gallery-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
    
    .footer-grid {
        grid-template-columns: 1fr !important;
        text-align: center;
    }
    
    .footer-about, .footer-links, .footer-contact, .footer-newsletter {
        text-align: center;
    }
    
    .social-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero-slider {
        height: 280px !important;
    }
    
    .players-grid, .gallery-grid {
        grid-template-columns: 1fr !important;
    }
    
    .quick-links .quick-grid {
        grid-template-columns: 1fr !important;
    }
    
    .hero-slider .slide a {
        padding: 6px 15px !important;
        font-size: 0.8rem !important;
    }
}

/* Gallery hover effect */
.gallery-item {
    cursor: pointer;
    overflow: hidden;
}

.gallery-item img {
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

/* Card hover effects */
.news-card, .player-card, .staff-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.news-card:hover, .player-card:hover, .staff-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}