/* Rock-Paper-Scissors Styles */
.rock-paper-scissors .section-title {
    text-align: center;
    margin-bottom: 30px;
    font-size: 2rem;
    color: var(--primary-color);
}

.game-container {
    background-color: #f9f9f9;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.scoreboard {
    text-align: center;
    margin-bottom: 20px;
}

.scoreboard h3 {
    font-size: 1.5rem;
    color: #333;
}

.scores {
    display: flex;
    justify-content: center;
    gap: 20px;
    font-size: 1.2rem;
    color: #555;
}

.game-area {
    text-align: center;
    margin-bottom: 20px;
}

.choices {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.choice-btn {
    padding: 10px 20px;
    border: none;
    background-color: var(--primary-color);
    color: #fff;
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.choice-btn:hover {
    background-color: var(--primary-hover-color);
}

.result-display {
    text-align: center;
    margin-bottom: 20px;
    font-size: 1.2rem;
    color: #555;
}

.controls {
    text-align: center;
}

#reset-game {
    padding: 10px 20px;
    border: none;
    background-color: #ff4d4d;
    color: #fff;
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

#reset-game:hover {
    background-color: #e63939;
}