/* Responsive Styles */

/* Extra Large Screens (1200px and above) */
@media (min-width: 1200px) {
    .container {
        max-width: 1140px;
    }
    
    .hero-content h1 {
        font-size: 4rem;
    }
}

/* Large Screens (992px to 1199px) */
@media (max-width: 1199px) {
    .container {
        max-width: 960px;
    }
    
    .games-grid,
    .reviews-grid {
        gap: 20px;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .game-card h3 {
        font-size: 14px;
    }
}

/* Medium Screens (768px to 991px) */
@media (max-width: 991px) {
    .container {
        max-width: 720px;
    }
    
    .games-grid,
    .reviews-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .trending-carousel {
        flex-wrap: nowrap;
        overflow-x: auto;
        padding-bottom: 20px;
        gap: 20px;
    }
    
    .trending-card {
        flex: 0 0 calc(50% - 10px);
        min-width: 250px;
    }
    
    .section-title {
        font-size: 24px;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .disclaimer-mascot {
        display: none;
    }
}

/* Small Screens (576px to 767px) */
@media (max-width: 767px) {
    .container {
        max-width: 540px;
    }
    
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background-color: var(--midnight-purple);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: right 0.3s ease;
        z-index: 999;
        padding: 50px 0;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.3);
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .menu-toggle {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        width: 30px;
        height: 21px;
        z-index: 1000;
        position: relative;
    }
    
    .menu-toggle span {
        width: 100%;
        height: 3px;
        background-color: var(--text-light);
        border-radius: 3px;
        transition: all 0.3s ease;
    }
    
    .menu-toggle.active span:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }
    
    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .menu-toggle.active span:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }
    
    .games-grid {
        grid-template-columns: 1fr;
    }
    
    .trending-card {
        flex: 0 0 100%;
        min-width: 100%;
    }
    
    .reviews-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-content h1 {
        font-size: 1.8rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .footer-links ul {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }
    
    .section-title {
        font-size: 20px;
    }
}

/* Extra Small Screens (up to 575px) */
@media (max-width: 575px) {
    .container {
        padding: 0 15px;
    }
    
    .logo-text {
        font-size: 20px;
    }
    
    .logo-text-latin {
        font-size: 14px;
    }
    
    .hero-content {
        padding: 15px;
    }
    
    .hero-content h1 {
        font-size: 1.5rem;
    }
    
    .cta-button {
        padding: 12px 25px;
        font-size: 14px;
    }
    
    .section-title {
        font-size: 18px;
        margin-bottom: 30px;
    }
    
    .game-card h3 {
        font-size: 14px;
    }
    
    .play-button {
        font-size: 14px;
        padding: 8px;
    }
    
    .review-avatar {
        width: 60px;
        height: 60px;
    }
    
    .review-bubble {
        padding: 15px;
        padding-top: 40px;
    }
    
    .disclaimer-content {
        padding: 20px;
    }
    
    .disclaimer-text h2 {
        font-size: 20px;
    }
    
    .disclaimer-text p {
        font-size: 14px;
    }
    
    .games-section,
    .trending-section,
    .reviews-section,
    .disclaimer-section {
        padding: 60px 0;
    }
    
    .site-footer {
        padding: 30px 0;
    }
}