*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:Arial, sans-serif;
}

body{
    background:url("images/hero-bg.jpg") center center/cover no-repeat;
    min-height:100vh;
}

.overlay{
    min-height:100vh;
    background:rgba(0,0,0,.45);
    display:flex;
    flex-direction:column;
    align-items:center;
}

.logo{
    margin-top:40px;
}

.logo img{
    width:450px;
}

.login-box{
    margin-top:30px;
    width:700px;
}

.tabs{
    display:flex;
    justify-content:center;
    margin-bottom:20px;
}

.tabs button{
    width:200px;
    height:50px;
    border:none;
    cursor:pointer;
    font-size:20px;
    color:#fff;
    background:#40464f;
}

.tabs .active{
    background:#163f8a;
}

.login-box input{
    width:100%;
    height:60px;
    margin-bottom:15px;
    border:none;
    padding:0 20px;
    font-size:18px;
    background:#2c3340;
    color:white;
}

.options{
    display:flex;
    justify-content:space-between;
    color:#d4a03c;
    margin-bottom:25px;
}

.options a{
    color:#d4a03c;
    text-decoration:none;
}

.login-btn{
    width:100%;
    height:65px;
    border:none;
    background:#e6b937;
    color:#0a214f;
    font-size:32px;
    font-weight:bold;
    cursor:pointer;
    border-radius:5px;
}

.contact{
    text-align:center;
    margin-top:20px;
    color:#aaa;
}#registerForm{
    animation: fadeIn .3s ease;
}

#registerForm h2{
    color:#fff;
    text-align:center;
    margin-bottom:20px;
}

#registerForm input,
#registerForm select{
    width:100%;
    padding:18px;
    margin-bottom:15px;
    background:rgba(40,45,60,.9);
    border:none;
    color:#fff;
    font-size:18px;
}

.register-btn{
    width:100%;
    padding:18px;
    background:#2f6bff;
    color:#fff;
    border:none;
    font-size:20px;
    cursor:pointer;
    border-radius:4px;
}

@keyframes fadeIn{
    from{
        opacity:0;
        transform:translateY(20px);
    }
    to{
        opacity:1;
        transform:translateY(0);
    }
}/* ================= HEADER ================= */

.gaming-header{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:90px;

    display:flex;
    justify-content:space-between;
    align-items:center;

    padding:0 80px;

    background:rgba(0,0,0,.65);
    backdrop-filter:blur(10px);

    border-bottom:1px solid rgba(255,255,255,.08);

    z-index:9999;
}

.menu-left,
.menu-right{
    display:flex;
    align-items:center;
    gap:30px;
}

.menu-left a,
.menu-right a{

    color:#fff;

    text-decoration:none;

    font-size:15px;

    font-weight:bold;

    letter-spacing:1px;

    transition:.3s;
}

.menu-left a:hover,
.menu-right a:hover{

    color:#ff9900;

    text-shadow:0 0 10px #ff9900;
}

.logo-header{

    position:absolute;

    left:50%;

    transform:translateX(-50%);
}

.logo-header img{

    height:65px;

    transition:.3s;
}

.logo-header img:hover{

    transform:scale(1.05);
}

/* Mobile */

@media(max-width:900px){

    .gaming-header{

        padding:0 20px;
    }

    .menu-left,
    .menu-right{

        gap:15px;
    }

    .menu-left a,
    .menu-right a{

        font-size:13px;
    }

    .logo-header img{

        height:50px;
    }

}
*{

margin:0;
padding:0;
box-sizing:border-box;
font-family:Arial, sans-serif;

}

body{

background:#070707;
color:white;

}

/* HEADER */

.gaming-header{

position:fixed;
top:0;
left:0;
width:100%;
height:90px;

display:flex;
justify-content:space-between;
align-items:center;

padding:0 80px;

background:rgba(0,0,0,.75);

backdrop-filter:blur(10px);

z-index:999;

}

.menu-left,
.menu-right{

display:flex;
gap:30px;

}

.menu-left a,
.menu-right a{

color:white;
text-decoration:none;
font-weight:bold;
transition:.3s;

}

.menu-left a:hover,
.menu-right a:hover{

color:#ff6600;

}

.logo-header{

position:absolute;
left:50%;

transform:translateX(-50%);

}

.logo-header img{

height:65px;

}

/* HERO */

.hero{

height:420px;

background:

linear-gradient(rgba(0,0,0,.55),rgba(0,0,0,.75)),
url("images/hero-bg.png");

background-size:cover;
background-position:center;

display:flex;
justify-content:center;
align-items:center;
text-align:center;

}

.hero h1{

font-size:70px;

color:#ff9900;

text-shadow:0 0 15px orange;

margin-bottom:15px;

}

.hero p{

font-size:20px;

color:#ddd;

}

/* NEWS */

.news-section{

padding:80px;

}

.news-section h2{

text-align:center;

font-size:40px;

margin-bottom:50px;

}

.news-container{

display:grid;

grid-template-columns:repeat(auto-fit,minmax(330px,1fr));

gap:40px;

}

.news-card{

background:#111;

border-radius:15px;

overflow:hidden;

transition:.3s;

box-shadow:0 0 20px rgba(255,150,0,.15);

}

.news-card:hover{

transform:translateY(-10px);

box-shadow:0 0 30px orange;

}

.news-card img{

width:100%;

height:220px;

object-fit:cover;

}

.news-content{

padding:25px;

}

.date{

color:#ff9900;

font-size:14px;

}

.news-content h3{

margin:15px 0;

font-size:25px;

}

.news-content p{

line-height:1.8;

color:#ccc;

margin-bottom:20px;

}

.news-content a{

color:#00c8ff;

font-weight:bold;

text-decoration:none;

}

.news-content a:hover{

color:#fff;

}

@media(max-width:900px){

.gaming-header{

padding:0 20px;

}

.menu-left,
.menu-right{

gap:15px;

}

.hero h1{

font-size:45px;

}

.news-section{

padding:40px 20px;

}

}
.footer{

    position:relative;

    overflow:hidden;

    width:100%;

    padding:90px 20px 45px;

    background:#000;

}

/* VIDEO */

.footer-video{

    position:absolute;

    inset:0;

    width:100%;
    height:100%;

    object-fit:cover;

    opacity:.30;

    z-index:0;

}

/* DARK OVERLAY */

.footer::before{

    content:"";

    position:absolute;

    inset:0;

    background:linear-gradient(
        rgba(0,0,0,.70),
        rgba(0,0,0,.95)
    );

    z-index:1;

}

/* CONTENT */

.footer-content{

    position:relative;

    z-index:2;

    max-width:1200px;

    margin:auto;

    text-align:center;

}

.footer h3{

    font-family:'Cinzel',serif;

    font-size:34px;

    color:#fff;

    margin-bottom:15px;

}

.hashtags{

    color:#888;

    margin-bottom:35px;

    letter-spacing:1px;

}

/* SOCIAL ICONS */

.social-icons{

    display:flex;

    justify-content:center;

    gap:22px;

    margin-bottom:40px;

}

.social-icons a{

    width:60px;

    height:60px;

    border-radius:50%;

    display:flex;

    justify-content:center;

    align-items:center;

    text-decoration:none;

    font-size:24px;

    color:#fff;

    background:rgba(255,255,255,.08);

    border:1px solid rgba(255,255,255,.12);

    transition:.35s;

}

.social-icons a:hover{

    transform:translateY(-8px);

    color:#ffd700;

    border-color:#ffd700;

    box-shadow:
    0 0 25px rgba(255,215,0,.45);

}

/* PARTNER BOX */

.partner-box{

    display:inline-flex;

    align-items:center;

    gap:25px;

    padding:20px 40px;

    background:rgba(20,20,20,.65);

    backdrop-filter:blur(10px);

    border-radius:50px;

    border:1px solid rgba(255,255,255,.08);

    margin-bottom:35px;

}

.partner-box img{

    height:42px;

}

.partner-box span{

    color:#666;

}

/* COPYRIGHT */

.copyright{

    color:#aaa;

    margin-bottom:20px;

}

.footer-links{

    display:flex;

    justify-content:center;

    flex-wrap:wrap;

    gap:15px;

}

.footer-links span{

    color:#555;

}

.footer-links a{

    color:#ddd;

    text-decoration:none;

    transition:.3s;

}

.footer-links a:hover{

    color:#ffd700;

}