/* RESET */

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

body{
    font-family:Arial,Helvetica,sans-serif;
    background:#050505;
    color:#fff;
    line-height:1.6;
    overflow-x:hidden;
}

/* BACKGROUND GLOW */

body::before{
    content:'';
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:
    radial-gradient(circle at top,#ff660022,transparent 40%),
    radial-gradient(circle at bottom,#ff006622,transparent 40%);
    z-index:-1;
}

/* HEADER */

.home-header{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:20px 50px;
    background:#000;
    border-bottom:2px solid #ff8800;
    box-shadow:0 0 20px #ff8800;
    position:sticky;
    top:0;
    z-index:999;
}

/* LOGO */

.logo{
    display:flex;
    align-items:center;
    gap:15px;
    font-size:32px;
    font-weight:bold;
    color:#ff9900;
    text-shadow:0 0 20px #ff8800;
}

.logo i{
    font-size:40px;
}

/* NAVIGATION */

.main-nav{
    display:flex;
    gap:15px;
}

.nav-btn{
    text-decoration:none;
    color:#ff9900;
    padding:12px 20px;
    border:1px solid #ff8800;
    border-radius:10px;
    transition:.3s;
    box-shadow:0 0 10px #ff880044;
}

.nav-btn:hover{
    background:#ff8800;
    color:#000;
    box-shadow:0 0 25px #ff8800;
}

/* HERO */

.hero{
    min-height:80vh;

    display:flex;
    justify-content:center;
    align-items:center;
    text-align:center;

    background:
        linear-gradient(
            rgba(0,0,0,0.55),
            rgba(0,0,0,0.75)
        ),
       url("../video/gbggrid.png");

    background-size:cover;
    background-position:center center;
    background-repeat:no-repeat;
    background-attachment:fixed;
}
.hero-content{
    padding:50px;
    background:rgba(0,0,0,.35);
    border:2px solid #ff8800;
    border-radius:20px;
    backdrop-filter:blur(8px);
    box-shadow:0 0 30px rgba(255,136,0,.4);
}

.hero-content h1{
    font-size:72px;
    color:#ff9900;
    text-shadow:
        0 0 10px #ff8800,
        0 0 30px #ff6600;
}

.hero-content p{
    font-size:24px;
    color:#fff;
    margin:20px 0 30px;
    letter-spacing:2px;
}
.hero-btn{
    display:inline-block;
    padding:18px 35px;
    background:#ff8800;
    color:#000;
    text-decoration:none;
    border-radius:10px;
    font-weight:bold;
    box-shadow:0 0 20px #ff8800;
    transition:.3s;
}

.hero-btn:hover{
    transform:translateY(-3px);
    box-shadow:0 0 35px #ff8800;
}

/* SECTIONS */

section{
    width:90%;
    margin:70px auto;
}

section h2{
    text-align:center;
    color:#ff9900;
    font-size:40px;
    margin-bottom:30px;
    text-shadow:0 0 15px #ff8800;
}

/* WELCOME */

.welcome{
    background:#090909;
    border:2px solid #ff8800;
    border-radius:15px;
    padding:40px;
    box-shadow:0 0 20px #ff880033;
}

.welcome p{
    font-size:18px;
    color:#ddd;
}

/* FEATURED REGIONS */

.poster-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
    gap:30px;
}

.poster-grid img{
    width:100%;
    height:250px;
    object-fit:cover;
    border-radius:15px;
    border:2px solid #ff8800;
    box-shadow:0 0 20px #ff880044;
    transition:.3s;
}

.poster-grid img:hover{
    transform:scale(1.03);
    box-shadow:0 0 30px #ff8800;
}

/* INFO BOXES */

.quote{
    display:grid;
    gap:20px;
}

.quote-box{
    background:#0b0b0b;
    border:2px solid #ff8800;
    border-radius:15px;
    padding:25px;
    text-align:center;
    font-size:22px;
    box-shadow:0 0 20px #ff880033;
}

.quote-box:hover{
    box-shadow:0 0 30px #ff8800;
}

/* CARDS */

.latest-card{
    background:#090909;
    border:2px solid #ff8800;
    border-radius:15px;
    padding:40px;
    text-align:center;
    box-shadow:0 0 20px #ff880044;
}

.latest-card h3{
    color:#ff9900;
    margin-bottom:20px;
    font-size:30px;
}

.latest-card p{
    color:#ddd;
    margin-bottom:25px;
}

.latest-card a{
    color:#00ffff;
    text-decoration:none;
    font-weight:bold;
}

.latest-card a:hover{
    color:#ff8800;
}

/* STATS */

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

.stat-card{
    background:#0b0b0b;
    border:2px solid #ff8800;
    border-radius:18px;
    padding:35px 20px;
    text-align:center;
    transition:.3s;
    box-shadow:0 0 20px rgba(255,136,0,.25);
}

.stat-card:hover{
    transform:translateY(-8px);
    box-shadow:0 0 35px rgba(255,136,0,.7);
}

.stat-card h1{
    font-size:48px;
    color:#ff9900;
    margin-bottom:15px;
    text-shadow:0 0 15px #ff8800;
}

.stat-number{
    font-size:42px;
    font-weight:700;
    color:#ffffff;
    margin-bottom:10px;
    text-shadow:0 0 10px rgba(255,255,255,.4);
}

.stat-card p{
    color:#bdbdbd;
    font-size:18px;
    letter-spacing:1px;
    text-transform:uppercase;
}
/* FOOTER */

footer{
    margin-top:80px;
    padding:30px;
    text-align:center;
    border-top:2px solid #ff8800;
    background:#000;
    color:#999;
}

/* SCROLLBAR */

::-webkit-scrollbar{
    width:10px;
}

::-webkit-scrollbar-track{
    background:#111;
}

::-webkit-scrollbar-thumb{
    background:#ff8800;
    border-radius:10px;
}

/* MOBILE */

@media(max-width:900px){

    .home-header{
        flex-direction:column;
        gap:20px;
        padding:20px;
    }

    .main-nav{
        flex-wrap:wrap;
        justify-content:center;
    }

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

    .hero-content p{
        font-size:18px;
    }

}

/* FOOTER */

.footer{
    margin-top:80px;
    background:#030303;
    border-top:2px solid #ff8800;
    box-shadow:0 -5px 30px #ff880033;
}

.footer-container{
    width:90%;
    margin:auto;
    padding:60px 0;
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
    gap:40px;
}

.footer-box h3,
.footer-box h4{
    color:#ff9900;
    margin-bottom:20px;
    text-shadow:0 0 10px #ff8800;
}

.footer-box p{
    color:#bbb;
    line-height:1.8;
    margin-bottom:10px;
}

.footer-box ul{
    list-style:none;
}

.footer-box ul li{
    margin:12px 0;
}

.footer-box ul li a{
    color:#ddd;
    text-decoration:none;
    transition:.3s;
}

.footer-box ul li a:hover{
    color:#ff9900;
    text-shadow:0 0 10px #ff8800;
}

.socials{
    display:flex;
    gap:15px;
    margin-top:15px;
}

.socials a{
    width:50px;
    height:50px;
    background:#111;
    border:2px solid #ff8800;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#ff9900;
    font-size:22px;
    transition:.3s;
    box-shadow:0 0 10px #ff880044;
}

.socials a:hover{
    background:#ff8800;
    color:#000;
    transform:translateY(-5px);
    box-shadow:0 0 20px #ff8800;
}

.footer-bottom{
    border-top:1px solid #222;
    text-align:center;
    padding:25px;
    color:#777;
    background:#000;
}

/* MOBILE */

@media(max-width:768px){

    .footer-container{
        text-align:center;
    }

    .socials{
        justify-content:center;
    }

}

.welcome{
    background:#090909;
    border:2px solid #ff8800;
    border-radius:20px;
    padding:50px;
    box-shadow:0 0 25px #ff880033;
}

.welcome h2{
    text-align:center;
    color:#ff9900;
    font-size:42px;
    margin-bottom:40px;
    text-shadow:0 0 15px #ff8800;
}

.welcome-text{
    font-size:20px;
    line-height:2;
    color:#d8d8d8;
    margin-bottom:20px;
    letter-spacing:.5px;
    font-weight:300;
}

.highlight{
    color:#ff9900;
    font-weight:700;
    text-shadow:0 0 10px #ff8800;
}

.final{
    text-align:center;
    margin-top:35px;
    font-size:24px;
    font-weight:bold;
    color:#00ff88;
    text-shadow:0 0 15px #00ff88;
}

.welcome h2{
    font-family:'Orbitron',sans-serif;
}

.highlight,
.final{
    font-family:'Orbitron',sans-serif;
}

.grid-info{
    margin:70px auto;
}

.grid-info-container{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
    gap:20px;
}

.grid-item{
    background:#0b0b0b;
    border:2px solid #ff8800;
    border-radius:15px;
    padding:20px;
    text-align:center;
    box-shadow:0 0 20px rgba(255,136,0,.25);
    transition:.3s;
}

.grid-item:hover{
    transform:translateY(-5px);
    box-shadow:0 0 30px rgba(255,136,0,.7);
}

.grid-item i{
    font-size:28px;
    color:#ff9900;
    margin-bottom:15px;
    text-shadow:0 0 10px #ff8800;
}

.grid-item span{
    display:block;
    color:#aaa;
    font-size:14px;
    text-transform:uppercase;
    letter-spacing:1px;
    margin-bottom:8px;
}

.grid-item strong{
    display:block;
    color:#fff;
    font-size:18px;
}

.grid-item.success{
    border-color:#00ff88;
    box-shadow:0 0 20px rgba(0,255,136,.25);
}

.grid-item.success i,
.grid-item.success strong{
    color:#00ff88;
}

.grid-item.warning{
    border-color:#ff4444;
    box-shadow:0 0 20px rgba(255,68,68,.25);
}

.grid-item.warning i,
.grid-item.warning strong{
    color:#ff5555;
}


.videos-section{
    margin:70px auto;
}

.videos-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(350px,1fr));
    gap:30px;
}

.video-card{
    background:#0b0b0b;
    border:2px solid #ff8800;
    border-radius:18px;
    padding:15px;
    box-shadow:0 0 20px rgba(255,136,0,.25);
    transition:.3s;
}

.video-card:hover{
    transform:translateY(-6px);
    box-shadow:0 0 35px rgba(255,136,0,.7);
}

.video-wrapper{
    position:relative;
    width:100%;
    padding-bottom:56.25%; /* 16:9 */
    overflow:hidden;
    border-radius:12px;
}

.video-wrapper iframe,
.video-wrapper video{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    border:none;
    border-radius:12px;
    object-fit:cover;
}

@media(max-width:900px){
    .videos-grid{
        grid-template-columns:1fr;
    }
}

.join-container{
    text-align:center;
    margin-top:40px;
}

.join-btn{
    display:inline-block;
    padding:18px 45px;
    background:linear-gradient(45deg,#ff6600,#ff9900);
    color:#000;
    text-decoration:none;
    font-size:22px;
    font-weight:bold;
    border-radius:50px;
    border:2px solid #ff9900;
    box-shadow:
        0 0 15px #ff8800,
        0 0 30px #ff6600;
    transition:all .3s ease;
    letter-spacing:2px;
}

.join-btn i{
    margin-right:10px;
}

.join-btn:hover{
    transform:translateY(-5px) scale(1.05);
    box-shadow:
        0 0 25px #ff8800,
        0 0 50px #ff6600,
        0 0 70px #ff9900;
}

.join-btn:active{
    transform:scale(.98);
}