*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:Arial,sans-serif;
}

body{
    background:#111827;
    color:white;
    min-height:100vh;
    display:flex;
    justify-content:center;
    align-items:center;
    padding:20px;
}

.container{
    width:100%;
    max-width:900px;
    background:#1f2937;
    padding:30px;
    border-radius:15px;
}

h1{
    text-align:center;
    margin-bottom:20px;
}

.stats{
    display:flex;
    justify-content:space-between;
    margin-bottom:20px;
}

#paragraph{
    background:#374151;
    padding:20px;
    border-radius:10px;
    line-height:1.8;
    font-size:20px;
    min-height:150px;
}

#paragraph span.correct{
    color:#22c55e;
}

#paragraph span.incorrect{
    color:#ef4444;
}

#paragraph span.active{
    background:#facc15;
    color:black;
}

textarea{
    width:100%;
    height:140px;
    margin-top:20px;
    padding:15px;
    border:none;
    border-radius:10px;
    resize:none;
    font-size:18px;
}

.buttons{
    margin-top:15px;
}

button{
    padding:12px 25px;
    border:none;
    border-radius:8px;
    cursor:pointer;
    font-size:16px;
}

button:hover{
    opacity:0.9;
}
.progress{
    width:100%;
    height:12px;
    background:#444;
    border-radius:20px;
    margin-top:15px;
    overflow:hidden;
}

#progressBar{
    width:0%;
    height:100%;
    background:limegreen;
    transition:0.3s;
}
#leaderboard{
    margin-top:15px;
    background:#374151;
    padding:15px;
    border-radius:10px;
    line-height:2;
    font-size:18px;
}
.player-box{
    margin:15px 0;
}

#playerName{
    width:100%;
    padding:12px;
    border:none;
    border-radius:8px;
    font-size:16px;
}