/* ===========================
   RESET
=========================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

:root{
    --primary:#ff9800;
    --primary-hover:#ff7700;
    --dark:#161616;
    --dark2:#202020;
    --input:#242424;
    --white:#fff;
    --gray:#ddd;
}

body{
    font-family:Arial, Helvetica, sans-serif;
    color:var(--white);

    min-height:100vh;
    overflow-x:hidden;

    background:
    linear-gradient(rgba(0,0,0,.65),rgba(0,0,0,.75)),
    url("images/hero-bg.jpg") center/cover no-repeat fixed;
}


/* ===========================
   HEADER
=========================== */

.gaming-header{

    position:fixed;
    top:0;
    left:0;

    width:100%;
    height:90px;

    display:flex;
    align-items:center;
    justify-content:space-between;

    padding:0 70px;

    background:rgba(0,0,0,.65);
    backdrop-filter:blur(10px);

    z-index:999;
}

.menu-left,
.menu-right{
    display:flex;
    gap:30px;
}

.menu-left a,
.menu-right a{

    color:var(--white);
    text-decoration:none;
    font-weight:bold;
    transition:.3s;
}

.menu-left a:hover,
.menu-right a:hover{
    color:var(--primary);
}

.logo-header{
    position:absolute;
    left:50%;
    transform:translateX(-50%);
}

.logo-header img{
    height:65px;
}


/* ===========================
   LOGIN
=========================== */

.overlay{

    min-height:100vh;

    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;

    padding:120px 20px 40px;
}

.logo img{
    width:250px;
    margin-bottom:25px;
}

.login-box{

    width:550px;
    max-width:100%;

    padding:40px;

    background:rgba(15,15,15,.92);

    border:1px solid rgba(255,255,255,.08);
    border-radius:15px;

    box-shadow:0 15px 40px rgba(0,0,0,.45);
}


/* ===========================
   TABS
=========================== */

.tabs{
    display:flex;
    margin-bottom:25px;
}

.tabs button{

    flex:1;

    padding:18px;

    border:none;

    background:var(--dark2);

    color:var(--white);

    cursor:pointer;

    font-size:16px;

    transition:.3s;
}

.tabs button:first-child{
    border-radius:8px 0 0 8px;
}

.tabs button:last-child{
    border-radius:0 8px 8px 0;
}

.tabs button.active{
    background:var(--primary);
}


/* ===========================
   INPUT
=========================== */

input{

    width:100%;

    margin-bottom:18px;

    padding:16px;

    border:1px solid transparent;
    border-radius:8px;

    background:var(--input);

    color:var(--white);

    font-size:15px;

    transition:.3s;
}

input::placeholder{
    color:#999;
}

input:focus{

    outline:none;

    border-color:var(--primary);

    box-shadow:0 0 8px rgba(255,152,0,.35);
}


/* ===========================
   BUTTONS
=========================== */

.login-btn,
.register-btn{

    width:100%;

    padding:16px;

    border:none;

    border-radius:8px;

    background:var(--primary);

    color:var(--white);

    font-size:17px;

    cursor:pointer;

    transition:.3s;
}

.login-btn:hover,
.register-btn:hover{

    background:var(--primary-hover);

    transform:translateY(-2px);
}

.register-btn:disabled{

    opacity:.5;

    cursor:not-allowed;

    transform:none;
}


/* ===========================
   MESSAGE
=========================== */

.message{

    margin-top:18px;

    text-align:center;

    color:#ff4b4b;

    font-weight:bold;
}

.message.success{
    color:#74df91;
}


/* ===========================
   TERMS LINK
=========================== */

.terms-link{

    margin:20px 0;

    text-align:center;
}

.terms-link a{

    color:#4da6ff;

    text-decoration:none;

    transition:.3s;
}

.terms-link a:hover{

    color:var(--primary);

    text-decoration:underline;
}


/* ===========================
   MODAL
=========================== */

.modal{

    display:none;

    position:fixed;

    inset:0;

    justify-content:center;
    align-items:center;

    background:rgba(0,0,0,.85);

    z-index:99999;

    animation:fadeIn .25s ease;
}

.modal-content{

    width:700px;
    max-width:95%;

    background:var(--dark);

    border:1px solid var(--primary);

    border-radius:12px;

    overflow:hidden;

    box-shadow:0 0 30px rgba(255,152,0,.35);

    animation:zoomIn .25s ease;
}

.modal-content h2{

    padding:20px;

    text-align:center;

    background:var(--dark2);

    color:var(--primary);
}

.terms-content{

    height:350px;

    overflow-y:auto;

    padding:25px;

    color:var(--gray);

    line-height:1.8;
}

.terms-content h3{

    margin:15px 0 8px;

    color:var(--primary);
}

.terms-content p{
    margin-bottom:10px;
}

.terms-content::-webkit-scrollbar{
    width:8px;
}

.terms-content::-webkit-scrollbar-thumb{

    background:var(--primary);

    border-radius:50px;
}


/* ===========================
   MODAL FOOTER
=========================== */

.modal-footer{

    display:flex;

    justify-content:flex-end;

    gap:10px;

    padding:20px;

    background:var(--dark2);
}

.agree-btn,
.close-btn{

    padding:12px 25px;

    border:none;

    border-radius:8px;

    cursor:pointer;

    font-weight:bold;

    transition:.3s;
}

.agree-btn{

    background:var(--primary);

    color:var(--white);
}

.agree-btn:hover{
    background:var(--primary-hover);
}

.close-btn{

    background:#444;

    color:var(--white);
}

.close-btn:hover{
    background:#666;
}


/* ===========================
   ANIMATION
=========================== */

@keyframes fadeIn{

    from{
        opacity:0;
    }

    to{
        opacity:1;
    }
}

@keyframes zoomIn{

    from{
        opacity:0;
        transform:scale(.9);
    }

    to{
        opacity:1;
        transform:scale(1);
    }
}


/* ===========================
   RESPONSIVE
=========================== */

@media (max-width:768px){

    .gaming-header{

        height:80px;

        padding:0 20px;
    }

    .menu-left,
    .menu-right{

        gap:15px;
    }

    .menu-left a,
    .menu-right a{

        font-size:13px;
    }

    .logo-header img{

        height:50px;
    }

    .logo img{

        width:180px;
    }

    .login-box{

        width:100%;

        padding:25px;
    }

    .modal-content{

        width:95%;
    }

    .terms-content{

        height:260px;
    }
}
/* ===========================
   LOGIN BUTTON
=========================== */

.login-link{

    padding:10px 22px;

    border:2px solid #ff9800;

    border-radius:8px;

    color:#ff9800;

    text-decoration:none;

    font-weight:bold;

    transition:.3s;
}

.login-link:hover{

    background:#ff9800;

    color:#fff;

    box-shadow:0 0 15px rgba(255,152,0,.6);
}


/* ===========================
   REGISTER BUTTON
=========================== */

.register-link{

    padding:10px 22px;

    background:#ff9800;

    border:2px solid #ff9800;

    border-radius:8px;

    color:#fff;

    text-decoration:none;

    font-weight:bold;

    box-shadow:0 0 15px rgba(255,152,0,.45);

    transition:.3s;
}

.register-link:hover{

    background:#ff7700;

    border-color:#ff7700;

    transform:translateY(-2px);

    box-shadow:0 0 20px rgba(255,152,0,.7);
}
.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;

}
