/* 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:
        radial-gradient(
            circle at top,
            rgba(255,136,0,.10),
            transparent 45%
        ),
        #050505;

    border-top:2px solid #ff8800;

    box-shadow:
        0 -10px 40px rgba(255,136,0,.20);
}



/* CONTAINER */

.footer-container{

    width:90%;
    margin:auto;

    padding:60px 0;

    display:grid;

    grid-template-columns:
        repeat(auto-fit,minmax(260px,1fr));

    gap:40px;
}



/* TITLES */

.footer-box h3{

    color:#ff9900;

    margin-bottom:25px;

    text-shadow:
        0 0 10px #ff8800;
}



/* LOGO */

.footer-logo{

    display:flex;

    align-items:center;

    gap:15px;

    margin-bottom:20px;
}

.footer-logo i{

    font-size:35px;

    color:#ff9900;

    text-shadow:
        0 0 20px #ff8800;
}

.footer-logo h2{

    color:#ff9900;

    text-shadow:
        0 0 15px #ff8800;
}

.footer-slogan{

    color:#fff;

    margin-bottom:20px;

    font-size:18px;
}

.footer-text{

    color:#aaa;

    line-height:1.8;
}



/* NAVIGATION */

.footer-menu{

    display:flex;

    flex-direction:column;

    gap:15px;
}

.footer-nav{

    display:flex;

    align-items:center;

    gap:15px;

    background:#111;

    padding:15px;

    border:1px solid #ff8800;

    border-radius:12px;

    color:#fff;

    text-decoration:none;

    transition:.3s;

    box-shadow:
        0 0 10px rgba(255,136,0,.20);
}

.footer-nav:hover{

    background:#ff8800;

    color:#000;

    transform:translateX(6px);

    box-shadow:
        0 0 20px #ff8800,
        0 0 40px #ff8800;
}

.footer-nav i{

    width:22px;

    color:#ff9900;
}

.footer-nav:hover i{

    color:#000;
}



/* STATUS */

.footer-status{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:15px;
}

.status-card{

    background:#111;

    border:1px solid #ff8800;

    border-radius:15px;

    padding:20px;

    text-align:center;

    box-shadow:
        0 0 15px rgba(255,136,0,.20);

    transition:.3s;
}

.status-card:hover{

    transform:translateY(-5px);

    box-shadow:
        0 0 25px rgba(255,136,0,.50);
}

.status-card i{

    color:#ff9900;

    font-size:22px;

    margin-bottom:10px;
}

.status-card h4{

    color:#fff;

    font-size:24px;

    margin:10px 0;
}

.status-card span{

    color:#aaa;
}



/* SOCIAL */

.socials{

    display:flex;

    gap:18px;

    flex-wrap:wrap;
}

.socials a{

    width:60px;

    height:60px;

    display:flex;

    justify-content:center;

    align-items:center;

    background:#111;

    border:2px solid #ff8800;

    border-radius:50%;

    color:#ff9900;

    font-size:24px;

    text-decoration:none;

    transition:.3s;

    box-shadow:
        0 0 10px rgba(255,136,0,.20);
}

.socials a:hover{

    background:#ff8800;

    color:#000;

    transform:translateY(-5px);

    box-shadow:
        0 0 25px #ff8800,
        0 0 40px #ff8800;
}



/* BOTTOM */

.footer-bottom{

    border-top:1px solid #222;

    background:#000;

    padding:25px;

    text-align:center;

    color:#888;

    line-height:2;
}



/* MOBILE */

@media(max-width:768px){

    .footer-container{

        grid-template-columns:1fr;
    }

    .footer-status{

        grid-template-columns:1fr 1fr;
    }

}


.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);
}

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

.staff-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:25px;
}

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

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

.staff-rank{
    display:inline-block;
    padding:6px 14px;
    border-radius:8px;
    font-size:12px;
    font-weight:bold;
    margin-bottom:18px;
}

.owner{
    background:#ffd700;
    color:#000;
}

.manager{
    background:#ff8800;
    color:#000;
}

.event{
    background:#00d4ff;
    color:#000;
}

.staff-photo{
    width:140px;
    height:140px;
    object-fit:cover;
    border-radius:50%;
    border:3px solid #ff8800;
    box-shadow:0 0 20px rgba(255,136,0,.6);
    margin-bottom:15px;
}

.staff-card h3{
    color:#ff9900;
    margin-bottom:12px;
    font-size:22px;
    text-shadow:0 0 10px #ff8800;
}

.staff-card p{
    color:#ddd;
    line-height:1.7;
    font-size:15px;
}

.tip-icon{
    font-size:50px;
    color:#ff9900;
    margin:20px 0;
    text-shadow:0 0 20px #ff8800;
}

.tip-text{
    font-size:22px;
    color:#fff;
    line-height:1.8;
    padding:20px;
    background:#111;
    border-radius:15px;
    border:1px solid #ff8800;
    box-shadow:0 0 20px rgba(255,136,0,.3);
}

.tip-footer{
    margin-top:20px;
    color:#aaa;
    font-size:14px;
    letter-spacing:1px;
}