
body{
margin:0;
font-family:system-ui,-apple-system,Segoe UI,Roboto,Helvetica,Arial,sans-serif;
background:#0b0b0f;
color:white;
line-height:1.6;
}

.container{
width:90%;
max-width:1100px;
margin:auto;
}

.header{
background:#0f0f14;
position:sticky;
top:0;
z-index:10;
}

.nav{
display:flex;
justify-content:space-between;
align-items:center;
padding:16px 0;
}

.logo{
font-size:20px;
font-weight:700;
color:#4da3ff;
}

nav a{
margin-left:18px;
text-decoration:none;
color:#ccc;
font-size:14px;
}

nav .cta{
background:#4da3ff;
color:black;
padding:8px 14px;
border-radius:6px;
}

.hero{
height:80vh;
background-image:url("https://images.unsplash.com/photo-1622396636133-ba43f812bc35");
background-size:cover;
background-position:center;
display:flex;
align-items:center;
position:relative;
}

.hero-overlay{
position:absolute;
inset:0;
background:rgba(0,0,0,0.65);
}

.hero-content{
position:relative;
text-align:center;
}

.hero h1{
font-size:40px;
margin-bottom:15px;
}

.hero p{
max-width:600px;
margin:auto;
color:#ccc;
}

.hero-buttons{
margin-top:30px;
}

.btn-primary{
background:#4da3ff;
color:black;
padding:14px 24px;
border-radius:8px;
text-decoration:none;
font-weight:600;
}

.btn-secondary{
border:1px solid #4da3ff;
color:#4da3ff;
padding:12px 22px;
border-radius:8px;
text-decoration:none;
margin-left:10px;
}

.section{
padding:80px 0;
}

.section.alt{
background:#121218;
}

.center{
text-align:center;
}

.leaderboard{
margin-top:30px;
background:#16161d;
border-radius:12px;
overflow:hidden;
}

.player{
display:flex;
justify-content:space-between;
padding:18px 20px;
border-bottom:1px solid #222;
}

.rank{
font-weight:bold;
color:#4da3ff;
}

.rating{
font-weight:bold;
}

.features{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
gap:25px;
margin-top:40px;
}

.feature{
background:#16161d;
padding:25px;
border-radius:10px;
}

.league-features{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(240px,1fr));
gap:25px;
margin:40px 0;
}

.card{
background:#16161d;
padding:30px;
border-radius:10px;
text-align:center;
}

.cta-section{
background:#0f0f14;
padding:80px 0;
}

.footer{
text-align:center;
padding:30px;
background:#08080c;
color:#777;
}
