/* Mobile Navigation Fixes */
@media (max-width: 768px) {
    .nav-container {
        padding: 0.75rem 1rem;
    }
    
    .nav-logo .logo {
        width: 18px;
        height: 18px;
    }
    
    .logo-text {
        font-size: 1rem;
        letter-spacing: 0.02em;
    }
    
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(10, 10, 10, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        padding: 1rem 0;
        border-top: 1px solid var(--border-color);
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .nav-link {
        padding: 0.75rem 2rem;
        border-bottom: 1px solid var(--border-color);
    }
    
    .nav-link:last-child {
        border-bottom: none;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    /* Hero section mobile fixes */
    .hero-title {
        font-size: 2.2rem;
        line-height: 1.1;
        margin-bottom: 0.75rem;
    }
    
    .glitch {
        font-size: 2.2rem;
        line-height: 1.1;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 0.75rem;
    }
    
    .hero-description {
        font-size: 0.95rem;
        padding: 0 1rem;
        margin-bottom: 1.5rem;
    }
    
    /* Page header mobile fixes */
    .page-title {
        font-size: 2rem;
        line-height: 1.2;
    }
    
    .page-subtitle {
        font-size: 1rem;
    }
    
    /* Container mobile padding */
    .container {
        padding: 0 1rem;
    }
    
    /* Button mobile fixes */
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
    }
    
    .btn {
        min-width: 200px;
        padding: 0.875rem 1.5rem;
    }
    
    /* Games page mobile fixes */
    .game-showcase {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 1rem;
    }
    
    .game-info {
        padding-left: 0;
        text-align: center;
        order: 2;
    }
    
    .game-preview {
        order: 1;
    }
    
    .game-title {
        font-size: 2rem;
    }
    
    .game-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .game-header {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 1rem;
    }
    
    .game-features {
        justify-content: center;
    }
    
    .game-buttons {
        justify-content: center;
    }
    
    .download-buttons {
        justify-content: center;
    }
    
    /* News page mobile fixes */
    .news-grid .container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .featured-article {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .featured-article .article-image {
        height: 200px;
    }
    
    .news-sidebar {
        order: -1;
    }
    
    .sidebar-widget {
        padding: 1.5rem;
    }
    
    /* About page mobile fixes */
    .founders-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .founder {
        padding: 1.5rem;
    }
    
    .vision-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .values-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    /* Contact page mobile fixes */
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-info {
        order: -1;
    }
    
    /* Mission stats mobile */
    .mission-stats {
        flex-direction: column;
        gap: 2rem;
    }
    
    /* Footer mobile fixes */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .footer-logo .logo {
        width: 20px;
        height: 20px;
    }
    
    .footer-logo .logo-text {
        font-size: 0.9rem;
    }
    
    /* Newsletter mobile fixes */
    .newsletter-form {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .newsletter-form input {
        width: 100%;
    }
    
    /* Upcoming games mobile */
    .upcoming-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    /* FAQ mobile */
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .faq-item {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 0.5rem 0.75rem;
    }
    
    .logo-text {
        font-size: 0.9rem;
    }
    
    .nav-logo .logo {
        width: 16px;
        height: 16px;
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    .glitch {
        font-size: 1.8rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .container {
        padding: 0 0.75rem;
    }
    
    .game-title {
        font-size: 1.75rem;
    }
    
    .page-title {
        font-size: 1.75rem;
    }
    
    /* Section padding mobile */
    section {
        padding: 3rem 0;
    }
    
    .page-header {
        padding: 6rem 0 3rem;
    }
    
    /* Game detail mobile */
    .game-detail {
        padding: 2rem 1rem;
        margin-bottom: 2rem;
    }
    
    /* Founder image mobile */
    .founder-image {
        width: 120px;
        height: 120px;
    }
    
    /* Vision item mobile */
    .vision-item {
        padding: 1.5rem;
    }
    
    .vision-icon {
        font-size: 2.5rem;
    }
}

/* Landscape mobile fixes */
@media (max-width: 768px) and (orientation: landscape) {
    .hero {
        height: auto;
        min-height: 100vh;
        padding: 6rem 0 3rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .glitch {
        font-size: 2rem;
    }
}