* { box-sizing: border-box; margin: 0; padding: 0; }

body {
    background: #ffffff;
    color: #1a1a1a;
    font-family: 'Gruppo', sans-serif;
    min-height: 100vh;
    display: flex;
    align-items: center; /* Vycentrování vertikálně */
    justify-content: center; /* Vycentrování horizontálně */
    padding: 40px 20px;
}

.wiki-container {
    max-width: 800px;
    width: 100%;
    text-align: center;
}

h1 {
    font-family: 'Yanone Kaffeesatz', sans-serif;
    font-size: 3rem;
    text-transform: uppercase;
    margin-bottom: 50px;
    letter-spacing: 1px;
}

.zpet-link {
    color: #888;
    text-decoration: none;
    display: inline-block;
    margin-bottom: 20px;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}
.zpet-link:hover { color: #000; }

/* --- FLEXBOX SEZNAM --- */
.hry-flex-list {
    display: flex;
    flex-direction: column; /* Položky pod sebou */
    gap: 25px;
    width: 100%;
}

.hra-polozka {
    display: block;
    text-decoration: none;
    color: inherit;
    padding: 20px 30px;
    border: 1px solid #eeeeee;
    border-radius: 8px;
    text-align: left;
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), border-color 0.4s ease, box-shadow 0.4s ease;
}

/* Naše milovaná žlutá z Plutomu */
.hra-polozka:hover {
    transform: translateY(-4px) scale(1.01);
    border-color: rgba(255, 230, 0, 0.4);
    box-shadow: 0 10px 25px rgba(255, 230, 0, 0.05);
}

.hra-polozka h2 {
    font-family: 'Yanone Kaffeesatz', sans-serif;
    font-size: 1.8rem;
    text-transform: uppercase;
    margin-bottom: 8px;
    transition: color 0.3s ease;
}

.hra-polozka:hover h2 {
    color: #ffe600;
    text-shadow: 0 0 8px rgba(255, 230, 0, 0.4);
}

.hra-polozka p {
    font-size: 1.05rem;
    color: #555555;
}