/* Reset */
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins',sans-serif;
}

/* Variables */
:root{
    --bg:#050505;
    --card:#101010;
    --gold:#FFD700;
    --gold-dark:#C9A400;
    --text:#FFFFFF;
    --muted:#B8B8B8;
    --discord:#5865F2;
}

/* Body */
body{
    background:var(--bg);
    color:var(--text);
    overflow-x:hidden;
}

/* Navbar */
nav{
    position:fixed;
    top:0;
    width:100%;
    height:80px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:0 8%;
    background:rgba(0,0,0,.75);
    backdrop-filter:blur(15px);
    z-index:1000;
}

/* Logo */
.logo{
    display:flex;
    align-items:center;
    gap:12px;
    color:var(--gold);
    font-size:24px;
    font-weight:700;
}

.logo img{
    width:50px;
    height:50px;
    border-radius:50%;
}

/* Navigation */
nav ul{
    display:flex;
    gap:30px;
    list-style:none;
}

nav a{
    color:white;
    text-decoration:none;
    transition:.3s;
}

nav a:hover{
    color:var(--gold);
}

/* Hero */
.hero{
    min-height:100vh;
    display:flex;
    justify-content:center;
    align-items:center;
    text-align:center;
    position:relative;
    overflow:hidden;
}

.hero-banner{
    position:absolute;
    inset:0;
    width:100%;
    height:100%;
    object-fit:cover;
    opacity:.15;
    filter:blur(4px);
}

.hero-overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(
        rgba(0,0,0,.55),
        rgba(0,0,0,.92)
    );
}

.hero-content{
    position:relative;
    z-index:2;
    max-width:900px;
    padding:20px;
}

.hero-logo{
    width:160px;
    border-radius:50%;
    margin-bottom:25px;
}

.hero h1{
    font-size:80px;
    color:var(--gold);
}

.hero p{
    color:#d8d8d8;
    margin-top:15px;
    line-height:1.8;
}

/* Buttons */
.btn{
    display:inline-block;
    padding:16px 35px;
    border-radius:12px;
    text-decoration:none;
    font-weight:700;
    margin:10px;
}

.btn-gold{
    background:var(--gold);
    color:black;
}

.btn-discord{
    background:var(--discord);
    color:white;
}

/* Sections */
section{
    padding:100px 8%;
}

.section-title{
    text-align:center;
    margin-bottom:50px;
}

.section-title h2{
    color:var(--gold);
    font-size:42px;
}

/* Cards */
.grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:25px;
}

.card{
    background:var(--card);
    border-radius:18px;
    padding:30px;
    border:1px solid rgba(255,215,0,.08);
}

/* About */
.about-content{
    max-width:1000px;
    margin:auto;
    text-align:center;
    line-height:1.9;
    color:#d2d2d2;
}

/* Terms & Policy */
.content-box{
    max-width:1100px;
    margin:auto;
    background:var(--card);
    padding:40px;
    border-radius:20px;
}

.content-box h2{
    color:var(--gold);
    margin-bottom:15px;
}

.content-box p,
.content-box li{
    color:#d0d0d0;
    line-height:1.9;
}

/* Auth Page */
.auth-box{
    max-width:850px;
    margin:auto;
    background:rgba(16,16,16,.9);
    padding:50px;
    border-radius:24px;
    text-align:center;
}

/* Footer */
footer{
    background:#030303;
    padding:70px 8%;
}

.footer-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:40px;
}

.footer-grid h3{
    color:var(--gold);
}

.footer-grid a{
    display:block;
    color:#ccc;
    margin:8px 0;
    text-decoration:none;
}

.footer-bottom{
    text-align:center;
    margin-top:40px;
    color:#888;
}

/* Mobile */
@media(max-width:768px){

    nav{
        flex-direction:column;
        height:auto;
        padding:15px;
    }

    nav ul{
        flex-wrap:wrap;
        justify-content:center;
    }

    .hero h1{
        font-size:55px;
    }

    .hero-logo{
        width:120px;
    }

}
nav ul li a{
color:white;
text-decoration:none;
transition:.3s;
padding:10px 15px;
border-radius:10px;
}

nav ul li a:hover{
color:#FFD700;
background:rgba(255,215,0,.08);
}

nav ul li a.active{
background:rgba(255,215,0,.12);
color:#FFD700;
border:1px solid rgba(255,215,0,.15);
}
