
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: linear-gradient(145deg, #f0f0f0, #e0e0e0); 
}


header {
    padding: 0.5rem 7rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

label {
    font-weight: 600;
    margin-right: 1rem;
}

select   {
    font-family: inherit;
    background-color: #f5f5f5;
    cursor: pointer;
}

button {
    font-family: inherit;
    padding: 10px 20px;
    margin: 15px;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.3s ease;
    background-color: #f5f5f5;
    color: #333;
}

button:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(0,0,0,0.2);
    background-color: #fff;
}

button:active {
    transform: scale(0.95);
}

h1 {
    font-size: 5rem;
}

.game-header-label {
    width: 100%;
    margin: 0 auto;
    font-size: 5rem;
    text-align: center;
    font-weight: 900;
}

.player-card {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.card-section {
    display: flex;
    align-items: center;
    justify-content: center;
}

.game-card {
    width: 300px;
    height: 300px;
    border: 1px solid black;
    border-radius: 2rem;
    margin: 1rem 2rem;
    background-color: white;
    border: 2px solid #ccc;
    border-radius: 20px;
    box-shadow: 0 6px 12px rgba(0,0,0,0.1);

}

.computer, .player {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 8rem;
}

.score-card {
    margin: 1rem 3rem;
    color: #555;
    font-size: 2rem;
    border: none
}



.user-choices {
    margin: 2rem 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
    
}

.choice {
    margin: 0.5rem 3rem;
    font-size: 1.5rem;
 
}


.game-img {
    max-width: 100%;
    max-height: 100%;
    object-fit: cover;
}

.win-bg {
    background: linear-gradient(135deg, #00c853, #b2ff59);
    transition: background 0.8s ease;
}

.lose-bg {
    background: linear-gradient(135deg, #d50000, #ff8a80);
    transition: background 0.8s ease;
}

.draw-bg {
    background: linear-gradient(135deg, #546e7a, #b0bec5);
    transition: background 0.8s ease;
}