/* Tablet Devices */
@media screen and (max-width: 1024px) {
    .container {
        padding: 0 15px;
    }

    .logo h1 {
        font-size: 2rem;
    }

    .game-section {
        height: 70vh;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .strategy-content,
    .love-content,
    .love-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .history-timeline::before {
        left: 30px;
    }
    
    .timeline-item {
        padding-left: 60px;
        padding-right: 0;
        text-align: left;
    }
    
    .timeline-item:nth-child(odd) {
        text-align: left;
    }
    
    .timeline-item::before {
        left: 20px;
    }
    
    .timeline-item:nth-child(odd)::before {
        left: 20px;
    }
}

/* Mobile Devices */
@media screen and (max-width: 768px) {
    .main-header {
        padding: 0.5rem 0;
    }

    .logo h1 {
        font-size: 1.5rem;
    }

    .language-selector {
        flex-wrap: wrap;
        justify-content: center;
    }

    .game-section {
        height: 60vh;
    }

    .features-grid,
    .strategy-content,
    .love-content,
    .love-grid {
        grid-template-columns: 1fr;
    }

    .feature-card,
    .strategy-card,
    .love-card,
    .love-item {
        padding: 1.5rem;
    }

    .guide-content {
        padding: 1.5rem;
    }

    .reviews-grid {
        grid-template-columns: 1fr;
    }

    h2 {
        font-size: 1.75rem;
    }

    h3 {
        font-size: 1.25rem;
    }
}

/* Small Mobile Devices */
@media screen and (max-width: 480px) {
    .logo h1 {
        font-size: 1.25rem;
    }

    .game-section {
        height: 50vh;
    }

    .fullscreen-btn {
        padding: 8px 16px;
        font-size: 0.9rem;
    }

    .language-selector button {
        padding: 0.4rem 0.8rem;
        font-size: 0.9rem;
    }

    .feature-card,
    .strategy-card,
    .love-card,
    .love-item {
        padding: 1rem;
    }

    .guide-content {
        padding: 1rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    h3 {
        font-size: 1.1rem;
    }
}

/* Landscape Mode */
@media screen and (max-height: 500px) and (orientation: landscape) {
    .game-section {
        height: 100vh;
    }

    .main-header {
        padding: 0.5rem 0;
    }

    .logo h1 {
        font-size: 1.25rem;
    }
} 