html, body{
overflow-x:hidden;
}

*{
box-sizing:border-box;
}

body{
margin:0;
padding:0;
min-height:100vh;
font-family:'Segoe UI', sans-serif;
color:#1a1a1a;
text-align:center;
background:#f5f5f5;
}

h1{
font-size:42px;
margin-top:40px;
letter-spacing:2px;
}

h2{
margin-top:60px;
margin-bottom:30px;
}

/* CONTAINER */
.container{
max-width:1200px;
margin:auto;
padding:20px;
margin-top:90px;
}

.ranking-container{
display:flex;
gap:30px;
justify-content:center;
flex-wrap:wrap;
}

.ranking-box{
background:#fff;
padding:20px;
border-radius:10px;
color:#1a1a1a;
width:100%;
max-width:520px;
margin-bottom:50px;
border:1px solid #e0e0e0;
}

/* TOP RANKING */
#podio{
display:none;
}

.ranking-top{
display:flex;
align-items:center;
justify-content:space-between;
padding:8px;
margin-bottom:6px;
cursor:pointer;
transition:0.3s;
}

.ranking-top:hover{
transform:scale(1.01);
}

.numero{
width:42px;
font-size:28px;
font-weight:900;
text-align:center;
}

.nome-player{
flex:1;
font-size:20px;
font-weight:900;
text-transform:uppercase;
margin-left:10px;
text-align:left;
}

.medalhas-side{
font-size:16px;
font-weight:bold;
display:flex;
gap:6px;
}

.top1 .numero{
background:#ffe600;
padding:6px;
}

.top2 .numero{
background:#f1f1f1;
padding:6px;
}

.top3 .numero{
background:#d8934d;
padding:6px;
}

.ranking-resto{
font-size:18px;
font-weight:800;
padding:4px 0;
text-align:left;
cursor:pointer;
}

.ranking-resto:hover{
color:#d40055;
padding-left:6px;
}

/* RANKING PONTOS */
.linha-ranking{
display:flex;
justify-content:space-between;
align-items:center;
padding:10px;
border-bottom:1px solid rgba(0,0,0,0.1);
}

.lado-dir{
display:flex;
align-items:center;
gap:8px;
justify-content:flex-end;
}

.zoeira{
width:25px;
text-align:center;
font-size:18px;
}

/* MSG ZOEIRA */
.mensagem-zoeira{
padding:12px;
margin-bottom:20px;
border-radius:8px;
text-align:center;
font-weight:bold;
font-size:16px;
overflow-x:hidden;
}

.msg{
white-space:nowrap;
margin:4px 0;
}

/* MODAL */
.modal{
display:none;
position:fixed;
inset:0;
background:rgba(0,0,0,0.75);
justify-content:center;
align-items:center;
padding:40px;
z-index:999;
}

.modal-content{
background:#fff;
color:#000;
padding:40px 30px;
border-radius:20px;
width:350px;
max-width:90%;
text-align:center;
position:relative;
box-shadow:0 10px 40px rgba(0,0,0,0.5);
}

#fechar{
position:absolute;
top:15px;
right:20px;
cursor:pointer;
font-size:26px;
font-weight:bold;
}

img, video{
max-width:100%;
height:auto;
}

/* RESPONSIVO */
@media(max-width:768px){

h1{
font-size:28px;
}

.ranking-box{
max-width:100%;
}

.numero{
width:36px;
font-size:22px;
}

.nome-player{
font-size:16px;
}

.medalhas-side{
font-size:13px;
gap:4px;
}

.ranking-resto{
font-size:15px;
}

.mensagem-zoeira{
font-size:14px;
overflow-x:auto;
}

.msg{
white-space:normal;
}

}