/* --- Základní reset a typografie --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
}

body {
    background-color: #ffffff; /* Hlavní bílá */
    color: #1f2937; /* Tmavě šedý text */
    display: flex;
    flex-direction: column;
    min-height: 100vh; /* Zajišťuje, že body zabere vždy celou výšku obrazovky */
}

/* --- Layout --- */
.container {
    flex: 1; /* Vyplní zbylé místo, takže footer zůstane dole */
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 1.5rem 2rem 1.5rem;
}

/* --- Banner --- */
.banner {
    background: linear-gradient(135deg, #ff9800, #f57c00); /* Oranžový gradient */
    color: #ffffff;
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    padding: 3rem 1.5rem;
    text-align: center;
    box-shadow: 0 10px 20px rgba(245, 124, 0, 0.15);
    margin-bottom: 3rem;
}

.banner h1 {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.2;
}

/* --- Tlačítka --- */
.actions {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    width: 100%;
    max-width: 400px; /* Omezení šířky na desktopu/tabletu */
}

.btn {
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    padding: 1rem 1.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 12px;
    transition: all 0.2s ease;
    cursor: pointer;
}

/* Primární oranžové tlačítko */
.btn-primary {
    background-color: #f57c00;
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(245, 124, 0, 0.25);
}

.btn-primary:hover, .btn-primary:active {
    background-color: #e65100;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(245, 124, 0, 0.35);
}

/* Sekundární oranžové tlačítko (obrysové) */
.btn-secondary {
    background-color: transparent;
    color: #f57c00;
    border: 2px solid #f57c00;
}

.btn-secondary:hover, .btn-secondary:active {
    background-color: #fff3e0; /* Velmi světlý oranžový podklad */
    transform: translateY(-2px);
}

/* --- Patička --- */
footer {
    text-align: center;
    padding: 1.5rem;
    background-color: #fafafa; /* Jemné oddělení od čistě bílého obsahu */
    border-top: 1px solid #f3f4f6;
    color: #6b7280;
    font-size: 0.9rem;
}

/* Navigace (pro kategorie i pro hlavní menu) */
        .player-nav { display: flex; gap: 0.5rem; margin-bottom: 2rem; border-bottom: 2px solid #e5e7eb; padding-bottom: 1rem; overflow: hidden; }
        .player-nav button, .player-nav a {
            background: none; border: none; padding: 0.5rem 1rem; cursor: pointer;
            font-weight: bold; color: #6b7280; font-size: 1rem; white-space: nowrap;
            transition: color 0.2s; text-decoration: none; display: inline-block;
        }
        .player-nav button.active, .player-nav a.active {
            color: #f57c00; border-bottom: 2px solid #f57c00; margin-bottom: -1rem;
        }
        .player-nav button:hover, .player-nav a:hover {
            color: #f57c00;
        }