*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
body{
    background-image: url('./assets/background-image.jpg');
    background-size: cover;
    background-position: center;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}
.container{
    background: rgba(255, 255, 255, 0.8);
    padding: 30px;
    border-radius: 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    text-align: center;
    width: 100%;
    max-width: 600px;
}
header {
    text-align: center;
    margin-bottom: 25px;
}
header h1 {
    font-size: 38px;
    margin-bottom: 8px;
    color: #667eea;
}
header p {
    font-size: 17px;
    color: #666;
}
.scoreboard {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    align-items: center;
    margin-bottom: 25px;
    background: #f8f9fa;
    padding: 18px;
    border-radius: 10px;
}
.score {
    text-align: center;
}
.score h2 {
    font-size: 17px;
    margin-bottom: 10px;
    color: #666;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
}
.player-icon, .computer-icon, .draw-icon {
    font-size: 22px;
}
.score-value {
    font-size: 30px;
    font-weight: bold;
    color: #667eea;
}


.game-area {
    margin-bottom: 25px;
}
.choices {
    text-align: center;
    margin-bottom: 30px;
}
.choices h2 {
    font-size: 21px;
    margin-bottom: 18px;
    color: #333;
}
.buttons {
    display: flex;
    justify-content: center;
    gap: 28px;
    flex-wrap: wrap;
}
#rock{
    background: red;
}
#paper{
    background: blue;
}
#scissors{
    background: green;
}
.choice-icon {
    font-size: 48px;
    padding: 5px;
    border: none;
    cursor: pointer;
    transition: transform 0.2s;
}
.choice-icon:hover {
    transform: scale(1.1);
}
.choice-icon:active {
    transform: scale(0.95);
}
.result {
    text-align: center;
}
.result h2 {
    font-size: 21px;
    color: #333;
    margin-bottom: 18px;
}
.match {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 18px;
    margin-bottom: 18px;
    background: #f8f9fa;
    padding: 45px;
    border-radius: 10px;
}
.player-choice, .computer-choice {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.player-avatar, .computer-avatar {
    font-size: 44px;
    margin-bottom: 10px;
}
.player-choice p,
.computer-choice p {
    font-weight: 600;
    color: #666;
    margin-bottom: 10px;
    font-size: 15px;
}
.choice-display {
    margin: 8px 0;
    font-size: 30px;
    padding: 14px 28px;
    border: none;
}
.vs {
    font-size: 26px;
    font-weight: bold;
    color: #667eea;
    text-align: center;
}
.result-message {
    font-size: 19px;
    font-weight: bold;
    color: #667eea;
    padding: 14px;
    background: #f0f4ff;
    border-radius: 10px;
}
footer {
    text-align: center;
    margin-top: 18px;
}
.reset-btn {
    background: #667eea;
    color: white;
    border: none;
    padding: 14px 38px;
    font-size: 17px;
    font-weight: 600;
    border-radius: 10px;
    cursor: pointer;
    transition: background 0.3s;
}
.reset-btn:hover {
    background: #5568d3;
}