/* RESET */

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

body{
font-family: -apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Arial,sans-serif;
background: radial-gradient(circle at top,#111827,#020617);
color:#e5e7eb;
}

/* NAVBAR */

.topbar{
background:rgba(0,0,0,0.6);
backdrop-filter:blur(10px);
border-bottom:1px solid rgba(255,255,255,0.05);
}

.nav{
max-width:1100px;
margin:auto;
display:flex;
align-items:center;
justify-content:space-between;
padding:18px 20px;
}

.brand{
display:flex;
align-items:center;
gap:10px;
font-weight:700;
font-size:18px;
}

.dot{
width:10px;
height:10px;
background:#d4a056;
border-radius:50%;
}

.links a{
margin-left:18px;
text-decoration:none;
color:#cbd5f5;
font-size:14px;
transition:0.2s;
}

.links a:hover{
color:#d4a056;
}

/* HERO */

.container{
max-width:900px;
margin:auto;
padding:50px 20px;
}

.hero h1{
font-size:42px;
margin-bottom:10px;
font-weight:700;
}

.hero p{
color:#9ca3af;
font-size:16px;
}

/* CARD */

.card{
margin-top:30px;
border-radius:20px;
background:rgba(255,255,255,0.04);
border:1px solid rgba(255,255,255,0.08);
backdrop-filter:blur(12px);
box-shadow:0 10px 30px rgba(0,0,0,0.6);
}

.inner{
padding:25px;
}

.section-title{
display:flex;
align-items:center;
justify-content:space-between;
margin-bottom:20px;
}

.section-title h2{
font-size:22px;
}

.pill{
border:1px solid #d4a056;
color:#d4a056;
padding:6px 12px;
border-radius:20px;
font-size:13px;
}

/* RANK LIST */

.rank{
list-style:none;
}

.rank li{
display:flex;
align-items:center;
gap:15px;
padding:16px;
border-radius:14px;
background:rgba(255,255,255,0.02);
border:1px solid rgba(255,255,255,0.05);
margin-bottom:12px;
transition:0.25s;
}

.rank li:hover{
background:rgba(255,255,255,0.06);
border:1px solid rgba(212,160,86,0.4);
transform:translateY(-2px);
}

.num{
width:34px;
height:34px;
border-radius:8px;
border:2px solid #d4a056;
display:flex;
align-items:center;
justify-content:center;
font-weight:700;
color:#d4a056;
}

.item{
font-size:16px;
}

/* RELATED */

.related{
margin-top:30px;
border-top:1px solid rgba(255,255,255,0.05);
padding-top:20px;
}

.related h3{
margin-bottom:12px;
font-size:18px;
}

.related a{
display:flex;
justify-content:space-between;
text-decoration:none;
padding:10px 0;
color:#cbd5f5;
border-bottom:1px solid rgba(255,255,255,0.05);
transition:0.2s;
}

.related a:hover{
color:#d4a056;
}

/* FOOTER */

.footer{
text-align:center;
padding:40px 20px;
font-size:13px;
color:#6b7280;
}