*{
    margin:0;
    padding: 0;
    text-align: center;
}


body {
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', 'Roboto', Arial, sans-serif;
    background: linear-gradient(135deg, #0f2027 0%, #2c5364 100%);
    min-height: 100vh;
    color: #fff;
}

.container {
    max-width: 700px;
    margin: 2rem auto;
    background: rgba(255,255,255,0.05);
    border-radius: 1.5rem;
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
    padding: 2rem 1rem 1rem 1rem;
}

header {
    margin-bottom: 2rem;
}

h1 {
    font-size: 2.5rem;
    font-weight: 800;
    letter-spacing: 2px;
    margin-bottom: 0.2rem;
}

.subtitle {
    font-size: 1.2rem;
    color: #b3c6e7;
    margin-top: 0.5rem;
    letter-spacing: 1px;
}
h1 {
    font-size: 2.5rem;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 0.2rem;
}

footer {
    text-align: center;
    margin-top: 2rem;
    color: #b3c6e7;
    font-size: 1rem;
}

.footer-text {
    margin: 0.5rem 0 0 0;
}

.choice {
    height: 170px;
    width: 170px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: rgba(255,255,255,0.08);
    box-shadow: 0 4px 16px 0 rgba(8, 27, 49, 0.15);
    transition: transform 0.2s, box-shadow 0.2s;
    position: relative;
}


.choice-label {
    margin-top: 0.5rem;
    font-size: 1.1rem;
    color: #ffffff;
    letter-spacing: 1.5px;
    font-weight: 500;
}

.choice:hover {
    cursor: pointer;
    transform: scale(1.08);
    box-shadow: 0 8px 32px 0 rgba(8, 27, 49, 0.25);
    background: linear-gradient(135deg, #081b31 0%, #2c5364 100%);
}

.choices {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2.5rem;
    margin-top: 2rem;
    margin-bottom: 2rem;
}

img {
    height: 120px;
    width: 120px;
    object-fit: cover;
    border-radius: 50%;
    border: 3px solid #b3c6e7;
    box-shadow: 0 2px 8px 0 rgba(44, 83, 100, 0.15);
}
.score-board {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2rem;
    margin-top: 2rem;
    gap: 4rem;
    background: rgba(255,255,255,0.07);
    border-radius: 1rem;
    padding: 1rem 0.5rem;
    box-shadow: 0 2px 8px 0 rgba(44, 83, 100, 0.10);
}


#user-score, #bot-score {
    font-size: 3rem;
    font-weight: 700;
    color: #faec51;
    margin-bottom: 0.2rem;
}

.msg-container {
    margin-top: 2.5rem;
    margin-bottom: 1.5rem;
}

#msg {
    background: linear-gradient(90deg, #081b31 0%, #2c5364 100%);
    color: #fff;
    font-size: 1.5rem;
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 1rem;
    box-shadow: 0 2px 8px 0 rgba(44, 83, 100, 0.10);
    min-width: 220px;
    letter-spacing: 1px;
    font-weight: 500;
    border: 2px solid #ffd700;
}