.game-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 3rem 1rem 4rem;
    gap: 2rem;
    color: #fff;
}

/* HRÁČ & BOT */
.player-big,
.choice-big {
    width: 130px;
    height: 130px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #ffcc00;
    background: #111;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.4);
}

.opponent-section {
    text-align: center;
}

/* TEXT VÝSLEDKU */
.result-text {
    font-size: 1.6rem;
    font-weight: bold;
    height: 35px;
    color: #ffcc00;
    text-shadow: 0 0 10px rgba(255, 204, 0, 0.6);
    animation: fadeIn 0.6s ease;
}

/* TEXT VÝBĚRU */
.pick-text {
    font-weight: bold;
    font-size: 1.2rem;
}

/* MOŽNOSTI */
.choices {
    display: flex;
    gap: 2rem;
}

.choice-btn {
    background: transparent;
    border: none;
    cursor: pointer;
    transition: 0.2s;
}

.choice-btn img {
    width: 90px;
    height: 90px;
    border-radius: 8px;
    padding: 6px;
    background: #1b1b1b;
    border: 2px solid #333;
    transition: 0.25s;
}

.choice-btn:hover img {
    transform: scale(1.12);
    border-color: #ffcc00;
}

.choice-btn.selected img {
    transform: scale(1.25);
    border-color: #ffcc00;
    box-shadow: 0 0 15px rgba(255, 204, 0, 0.6);
}

/* ANIMACE */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* MODAL */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.75);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 2000;
}

.modal-content {
    background: #111;
    color: #fff;
    padding: 2rem;
    border-radius: 12px;
    width: 280px;
    text-align: center;
    box-shadow: 0 0 20px rgba(255, 204, 0, 0.3);
    animation: fadeIn 0.4s ease;
}

.modal-content h2 {
    color: #ffcc00;
    margin-bottom: 1.2rem;
}

.modal-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
}

.modal-buttons button {
    padding: 0.6rem;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: bold;
    background: #ffcc00;
    color: #111;
    transition: 0.3s;
}

.modal-buttons button:hover {
    background: #ffdd44;
    transform: scale(1.05);
}

/* RESPONSIVE */
@media (max-width: 600px) {
    .choice-btn img {
        width: 70px;
        height: 70px;
    }
    .player-big,
    .choice-big {
        width: 110px;
        height: 110px;
    }
}
