body{
    background:
        radial-gradient(circle at top left, rgba(57,255,20,.13), transparent 35%),
        radial-gradient(circle at bottom right, rgba(57,255,20,.08), transparent 30%),
        #050505;
}

.home-hero{
    position:relative;
    overflow:hidden;
    padding:80px 20px;
    border-bottom:1px solid rgba(57,255,20,.25);
    background:
        linear-gradient(135deg,rgba(57,255,20,.11),rgba(0,0,0,.82)),
        radial-gradient(circle at 70% 40%,rgba(57,255,20,.18),transparent 30%);
}

.hero-glow{
    position:absolute;
    width:420px;
    height:420px;
    right:-130px;
    top:-120px;
    border-radius:50%;
    background:rgba(57,255,20,.18);
    filter:blur(35px);
    pointer-events:none;
}

.home-hero-inner{
    width:min(1450px,96vw);
    margin:auto;
    display:grid;
    grid-template-columns:1.2fr 420px;
    gap:45px;
    align-items:center;
    position:relative;
    z-index:1;
}

.eyebrow{
    color:#baffb1;
    text-transform:uppercase;
    letter-spacing:2px;
    font-size:12px;
    font-weight:bold;
}

.hero-content h1{
    margin:10px 0;
    font-size:clamp(54px,9vw,110px);
    line-height:.95;
    color:#39ff14;
    text-shadow:0 0 28px rgba(57,255,20,.8);
}

.hero-text{
    max-width:780px;
    font-size:20px;
    line-height:1.6;
    color:#dcffd8;
}

.hero-actions{
    margin-top:26px;
    display:flex;
    gap:10px;
    flex-wrap:wrap;
}

.hero-logo-card{
    background:rgba(0,0,0,.52);
    border:1px solid rgba(57,255,20,.42);
    border-radius:34px;
    padding:26px;
    text-align:center;
    box-shadow:0 0 38px rgba(57,255,20,.16);
}

.hero-logo-card img{
    width:100%;
    max-width:310px;
    border-radius:32px;
    border:2px solid rgba(57,255,20,.45);
    box-shadow:0 0 34px rgba(57,255,20,.28);
}

.hero-logo-card span{
    display:inline-block;
    margin-top:18px;
    background:#39ff14;
    color:#000;
    border-radius:999px;
    padding:8px 13px;
    font-size:12px;
    font-weight:900;
    letter-spacing:1px;
}

.home-stats{
    width:min(1450px,96vw);
    margin:-34px auto 38px;
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(180px,1fr));
    gap:16px;
    position:relative;
    z-index:2;
}

.stat-box{
    background:linear-gradient(135deg,rgba(15,22,15,.98),rgba(0,0,0,.92));
    border:1px solid rgba(57,255,20,.34);
    border-radius:22px;
    padding:20px;
    box-shadow:0 0 30px rgba(57,255,20,.12);
}

.stat-box span{
    display:block;
    color:#baffb1;
    margin-bottom:8px;
}

.stat-box strong{
    color:#39ff14;
    font-size:36px;
    text-shadow:0 0 16px rgba(57,255,20,.6);
}

.home-section{
    width:min(1450px,96vw);
    margin:45px auto;
}

.section-head{
    display:flex;
    justify-content:space-between;
    align-items:flex-end;
    gap:20px;
    margin-bottom:20px;
}

.section-head h2{
    color:#39ff14;
    font-size:38px;
    margin:4px 0 0;
    text-shadow:0 0 18px rgba(57,255,20,.45);
}

.news-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(310px,1fr));
    gap:24px;
}

.news-card{
    overflow:hidden;
    background:linear-gradient(135deg,rgba(15,22,15,.98),rgba(0,0,0,.92));
    border:1px solid rgba(57,255,20,.34);
    border-radius:26px;
    box-shadow:0 0 30px rgba(57,255,20,.10);
    transition:.18s ease;
}

.news-card:hover{
    border-color:#39ff14;
    box-shadow:0 0 38px rgba(57,255,20,.22);
    transform:translateY(-3px);
}

.news-card img,
.news-placeholder{
    width:100%;
    height:210px;
}

.news-card img{
    object-fit:cover;
}

.news-placeholder{
    display:grid;
    place-items:center;
    background:
        radial-gradient(circle,rgba(57,255,20,.18),transparent 60%),
        rgba(0,0,0,.55);
    color:#000;
    font-size:72px;
    font-weight:900;
}

.news-placeholder::before{
    content:"A";
    width:90px;
    height:90px;
    border-radius:28px;
    background:#39ff14;
    display:grid;
    place-items:center;
    box-shadow:0 0 24px rgba(57,255,20,.75);
}

.news-content{
    padding:22px;
}

.news-content span{
    color:#baffb1;
    font-size:13px;
}

.news-content h3{
    color:#39ff14;
    margin:10px 0;
    font-size:25px;
}

.news-content p{
    color:#eaffea;
    line-height:1.6;
}

.live-pill{
    background:#39ff14;
    color:#000;
    border-radius:999px;
    padding:8px 13px;
    font-weight:900;
}

.stream-card{
    background:linear-gradient(135deg,rgba(15,22,15,.98),rgba(0,0,0,.92));
    border:1px solid rgba(57,255,20,.34);
    border-radius:28px;
    padding:18px;
    box-shadow:0 0 34px rgba(57,255,20,.12);
}

.stream-frame{
    width:100%;
    aspect-ratio:16/9;
    border:0;
    border-radius:22px;
    box-shadow:0 0 30px rgba(57,255,20,.14);
}

.empty-stream{
    text-align:center;
    padding:60px 20px;
    border:1px dashed rgba(57,255,20,.45);
    border-radius:22px;
    background:rgba(0,0,0,.35);
}

.empty-stream h3{
    color:#39ff14;
}

.empty-stream p{
    color:#baffb1;
}

.quick-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(240px,1fr));
    gap:18px;
}

.quick-card{
    background:linear-gradient(135deg,rgba(15,22,15,.98),rgba(0,0,0,.92));
    border:1px solid rgba(57,255,20,.34);
    border-radius:22px;
    padding:22px;
    text-decoration:none;
    box-shadow:0 0 28px rgba(57,255,20,.10);
    transition:.18s ease;
}

.quick-card:hover{
    border-color:#39ff14;
    box-shadow:0 0 30px rgba(57,255,20,.22);
    transform:translateY(-3px);
}

.quick-card span{
    color:#baffb1;
    display:block;
    margin-bottom:8px;
}

.quick-card strong{
    color:#39ff14;
    font-size:22px;
}

@media(max-width:1050px){
    .home-hero-inner{
        grid-template-columns:1fr;
    }

    .hero-logo-card{
        max-width:420px;
    }

    .home-stats{
        margin-top:24px;
    }
}

@media(max-width:650px){
    .home-hero{
        padding:55px 18px;
    }

    .hero-content h1{
        font-size:52px;
    }

    .hero-text{
        font-size:17px;
    }

    .section-head{
        align-items:flex-start;
        flex-direction:column;
    }

    .section-head h2{
        font-size:31px;
    }
}
