/* Tablet Styles */
@media screen and (max-width: 1024px) {
    .game-container {
        height: 70vh;
    }

    .feature-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .review-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .love-grid,
    .features-detailed-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .guide-sections {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile Styles */
@media screen and (max-width: 768px) {
    .game-title {
        font-size: 2rem;
    }

    .language-selector {
        position: static;
        justify-content: center;
        margin: 1rem 0;
        flex-wrap: wrap;
    }

    .game-container {
        height: 60vh;
    }

    .feature-grid,
    .review-grid,
    .love-grid,
    .features-detailed-grid,
    .guide-sections {
        grid-template-columns: 1fr;
    }

    .timeline::before {
        left: 20px;
    }

    .timeline-item {
        margin-left: 40px;
    }

    h2 {
        font-size: 1.75rem;
    }

    h3 {
        font-size: 1.25rem;
    }

    .feature-card,
    .review-card,
    .timeline-item,
    .love-card,
    .feature-detailed-card,
    .guide-section {
        padding: 1.5rem;
    }
}

/* Small Mobile Styles */
@media screen and (max-width: 480px) {
    .game-title {
        font-size: 1.75rem;
    }

    .game-container {
        height: 50vh;
    }

    .language-selector button {
        padding: 0.4rem 0.8rem;
        font-size: 0.9rem;
    }

    .fullscreen-btn {
        padding: 0.4rem 0.8rem;
        font-size: 0.9rem;
    }

    .features,
    .game-guide,
    .reviews,
    .history,
    .player-love,
    .detailed-guide,
    .game-features-detailed {
        padding: 2rem 1rem;
    }
}

/* Landscape Mode */
@media screen and (max-height: 500px) and (orientation: landscape) {
    .game-container {
        height: 90vh;
    }

    .language-selector {
        top: 0.5rem;
        right: 0.5rem;
    }

    .language-selector button {
        padding: 0.3rem 0.6rem;
        font-size: 0.8rem;
    }
} 