/* ==== Seite: games ==== */

.games-section {
    margin-bottom: 50px;
}

.section-title {
    text-align: center;
    color: white;
    font-size: 2.5em;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    font-weight: 700;
    letter-spacing: -0.5px;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.section-subtitle {
    text-align: center;
    color: rgba(255,255,255,0.9);
    font-size: 1.5em;
    margin-bottom: 40px;
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

/* Kategorie-Filter: muss die display:flex-Regel der Karten überschreiben */
.games-grid .main-card.hidden,
.games-grid .tool-card.hidden {
    display: none !important;
}

.game-icon {
    font-size: 3em;
    margin-bottom: 15px;
}

.game-title {
    font-size: 1.5em;
    font-weight: 700;
    color: var(--c-text);
    margin-bottom: 12px;
    letter-spacing: -0.3px;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.game-description {
    color: var(--c-muted);
    line-height: 1.7;
    margin-bottom: 20px;
    font-size: 16px;
    font-weight: 400;
}

/* Dark Theme – Seite: games */
body.dark-theme .game-title {
    color: var(--c-text);
}

body.dark-theme .game-description {
    color: var(--c-muted);
}

/* Responsive – Seite: games */
@media (max-width: 768px) {
    .games-grid {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 2em;
    }
}
