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

body {
    background: linear-gradient(135deg, #0f2027, #203a43, #2c5364);
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: white;
}

/* nav{
width:100%;
padding:15px;
background:#111;
text-align:left;
font-size:22px;
padding-left:30px;
} */

.arena {
    margin-top: 40px;
    background: #1e272e;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    width: 450px;
    position: relative;
}

.battle-area {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 20px 0;
}

.move {
    font-size: 60px;
    margin-top: 10px;
    transition: 0.3s;
}

.vs {
    font-size: 24px;
}

.choices {
    margin: 20px 0;
}

.choice {
    font-size: 40px;
    margin: 10px;
    padding: 15px 25px;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: 0.3s;
}

.choice:hover {
    transform: scale(1.2) rotate(10deg);
}

.score {
    margin: 10px;
    font-size: 18px;
}

#result {
    margin-top: 10px;
}

.game-over {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 15px;
}

.hidden {
    display: none;
}

#play-again {
    margin-top: 20px;
    padding: 10px 20px;
    border: none;
    background: #ff4757;
    color: white;
    font-size: 18px;
    border-radius: 8px;
    cursor: pointer;
}

#play-again:hover {
    background: #ff6b81;
}