*{
margin:0;
padding:0;
box-sizing:border-box;
}

body{
font-family:'Segoe UI',sans-serif;
background:#0b0f14;
color:#fff;
line-height:1.6;
}

section{
padding:100px 8%;
max-width:1400px;
margin:auto;
}

/* HEADER */

header{
padding:20px 8%;
background:#0f141b;
position:fixed;
width:100%;
top:0;
z-index:1000;
border-bottom:1px solid rgba(255,255,255,0.05);
}

header h1{
font-size:20px;
}

/* HERO */

.hero{
height:90vh;
display:flex;
align-items:center;
justify-content:center;
text-align:center;
background:radial-gradient(circle at top,#111820,#0b0f14);
}

.hero-inner{
max-width:800px;
}

.hero-inner h1{
font-size:56px;
margin-bottom:20px;
letter-spacing:2px;
}

.hero-inner p{
color:#9aa7bb;
margin-bottom:40px;
font-size:18px;
}

.hero-buttons{
display:flex;
justify-content:center;
gap:20px;
}

.btn{
padding:14px 32px;
border-radius:8px;
font-weight:700;
text-decoration:none;
transition:.3s;
}

.btn-live{
background:#ff2d55;
color:#fff;
}

.btn-top{
background:#00ffaa;
color:#000;
}

.btn:hover{
transform:translateY(-5px);
box-shadow:0 0 25px rgba(0,255,170,0.3);
}

/* LIVE ARENA */

.live-arena h2{
margin-bottom:40px;
font-size:32px;
}

.live-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
gap:30px;
}

.live-card{
background:#111820;
border-radius:16px;
overflow:hidden;
transition:.3s;
}

.live-card:hover{
transform:translateY(-8px);
box-shadow:0 0 35px rgba(0,255,170,0.15);
}

.live-thumb{
height:200px;
background:#1a222b;
position:relative;
}

.badge-live{
position:absolute;
top:15px;
left:15px;
background:#ff2d55;
padding:6px 12px;
border-radius:6px;
font-size:12px;
font-weight:700;
}

.live-info{
padding:20px;
}

.live-info h3{
font-size:20px;
margin-bottom:5px;
}

.live-info p{
color:#9aa7bb;
margin-bottom:8px;
}

.hype{
color:#00ffaa;
font-weight:700;
}

/* WEEKLY TOP */

.weekly-top{
text-align:center;
}

.weekly-top h2{
margin-bottom:60px;
font-size:32px;
}

.podium{
display:flex;
justify-content:center;
align-items:flex-end;
gap:40px;
margin-top:60px;
}

.podium-card{
width:160px;
display:flex;
align-items:center;
justify-content:center;
border-radius:12px;
font-weight:700;
font-size:20px;
}

.podium-card.first{
height:260px;
background:linear-gradient(180deg,#ffd700,#b8860b);
color:#000;
}

.podium-card.second{
height:200px;
background:#c0c0c0;
color:#000;
}

.podium-card.third{
height:170px;
background:#cd7f32;
color:#000;
}

/* RESPONSIVE */

@media(max-width:768px){

.hero-inner h1{
font-size:32px;
}

.podium{
flex-direction:column;
align-items:center;
}

.podium-card{
width:100%;
max-width:300px;
}

}
.container{
max-width:1400px;
margin:auto;
}

.section-header{
margin-bottom:40px;
}

.section-header h2{
font-size:28px;
}

.card-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
gap:30px;
}

.stream-card{
background:#121821;
border-radius:16px;
overflow:hidden;
transition:.3s;
border:1px solid rgba(255,255,255,0.05);
}

.stream-card:hover{
transform:translateY(-6px);
box-shadow:0 0 35px rgba(0,255,170,0.15);
border-color:#00ffaa;
}

.stream-thumbnail{
height:220px;
background:linear-gradient(135deg,#1a222b,#0f141b);
}

.stream-content{
padding:20px;
}

.stream-top{
display:flex;
justify-content:space-between;
align-items:center;
margin-bottom:10px;
}

.stream-top h3{
font-size:18px;
}

.live-badge{
background:#ff2d55;
padding:4px 10px;
border-radius:6px;
font-size:12px;
font-weight:700;
}

.game{
color:#9aa7bb;
margin-bottom:10px;
}

.stream-stats{
display:flex;
justify-content:space-between;
font-size:14px;
}

.hype{
color:#00ffaa;
font-weight:700;
}