/* mobile.css - Vollständige Optimierung für OPGAMING */

@media (max-width: 768px) {
    /* 1. Header & Navigation */
    .header-container {
        width: 100%;
        top: 0;
        padding: 0;
    }
    .tile-nav {
        border-radius: 0; /* Full-width auf Mobile wirkt oft sauberer */
        padding: 10px;
    }
    .tile-nav ul {
        gap: 5px;
        justify-content: center;
    }
    .tile-nav a {
        padding: 8px 10px;
        font-size: 0.75rem;
    }
    .tile-nav a i {
        font-size: 1rem;
    }

    /* 2. Hero Bereich */
    .hero-section {
        height: auto;
        padding: 60px 20px;
    }
    .hero-logo {
        max-width: 200px !important; /* Verkleinert das 400px Logo */
        margin-top: 0 !important;
    }
    .animate-rgb {
        font-size: 1.8rem !important; /* Haupttitel kleiner */
    }
    .animate-rgb:nth-of-type(2) { font-size: 1.4rem !important; }
    .animate-rgb:nth-of-type(3) { font-size: 1.1rem !important; }

    /* 3. Status-Karten (Das kompakte Grid) */
    .status-grid {
        grid-template-columns: 1fr 1fr; /* 2 Spalten auf Mobile */
        gap: 8px;
    }
    .status-card {
        padding: 10px;
        min-height: 70px;
    }
    .status-card h3 { font-size: 0.8rem; }

    /* 4. News & Vote Grids */
    .news-grid, .vote-grid, .support-grid {
        grid-template-columns: 1fr; /* Alles untereinander */
        gap: 20px;
    }

    /* 5. Join-Sektion (Wichtig!) */
    .join-container {
        flex-direction: column; /* Video unter den Text */
    }
    .video-side {
        border-left: none;
        border-top: 2px solid rgba(255,255,255,0.1);
        padding: 20px;
    }
    .steps-side {
        padding: 30px 20px;
    }
    .edition-switcher {
        width: 100%;
        max-width: 100%;
    }

    /* 6. Livemap */
    .map-iframe {
        height: 350px;
    }

    /* 7. Support & Apply Boxen */
    .support-box, .apply-container {
        padding: 25px 15px;
        width: 100%;
    }
    .apply-title, .support-section h2 {
        font-size: 2rem !important;
    }

    /* 8. Footer */
    footer {
        width: 100% !important;
        border-radius: 0;
        margin-bottom: 0;
    }
    .footer-nav {
        flex-direction: column;
        gap: 15px;
    }
}

/* Optimierung für sehr kleine Geräte (iPhone SE etc.) */
@media (max-width: 480px) {
    .tile-nav a span {
        display: none; /* Nur noch Icons im Header zeigen */
    }
    .status-grid {
        grid-template-columns: 1fr; /* Status-Karten komplett untereinander */
    }
}