*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:'Poppins',sans-serif;
}

:root{
--gold:#F5B301;
--gold-dark:#D89A00;
--black:#050505;
--dark:#111111;
--card:#171717;
--white:#ffffff;
--gray:#cfcfcf;
}

body{
background:var(--black);
color:var(--white);
overflow-x:hidden;
}

/* HEADER */

.header{
position:fixed;
top:0;
left:0;
width:100%;
padding:18px 6%;
background:rgba(0,0,0,.95);
backdrop-filter:blur(12px);
display:flex;
justify-content:space-between;
align-items:center;
z-index:1000;
border-bottom:1px solid rgba(245,179,1,.15);
}

.logo{
font-size:28px;
font-weight:800;
display:flex;
align-items:center;
gap:10px;
color:var(--gold);
}

.logo span{
width:40px;
height:40px;
background:var(--gold);
color:#000;
border-radius:50%;
display:flex;
align-items:center;
justify-content:center;
font-size:16px;
font-weight:800;
}

nav{
display:flex;
gap:30px;
align-items:center;
}

nav a{
text-decoration:none;
color:#fff;
font-size:15px;
font-weight:500;
transition:.3s;
}

nav a:hover{
color:var(--gold);
}

.register-btn{
background:var(--gold);
color:#000 !important;
padding:12px 24px;
border-radius:8px;
font-weight:700;
}

.login-btn{
border:1px solid var(--gold);
padding:12px 24px;
border-radius:8px;
}

.menu-btn{
display:none;
font-size:25px;
cursor:pointer;
color:var(--gold);
}

/* HERO */

.hero{
padding:150px 6% 100px;
display:flex;
justify-content:space-between;
align-items:center;
gap:50px;
}

.hero-content{
max-width:600px;
}

.tag{
display:inline-block;
background:rgba(245,179,1,.15);
border:1px solid rgba(245,179,1,.3);
padding:10px 20px;
border-radius:40px;
color:var(--gold);
margin-bottom:25px;
}

.hero h1{
font-size:70px;
line-height:1.1;
margin-bottom:20px;
}

.hero p{
font-size:18px;
line-height:1.8;
color:var(--gray);
margin-bottom:35px;
}

.hero-buttons{
display:flex;
gap:15px;
}

.primary-btn{
background:var(--gold);
color:#000;
padding:15px 35px;
text-decoration:none;
font-weight:700;
border-radius:10px;
}

.secondary-btn{
border:1px solid var(--gold);
color:#fff;
padding:15px 35px;
text-decoration:none;
border-radius:10px;
}

.hero-image img{
width:420px;
max-width:100%;
}

/* STATS */

.stats{
padding:50px 6%;
display:grid;
grid-template-columns:repeat(4,1fr);
gap:20px;
}

.stat-card{
background:var(--card);
padding:30px;
border-radius:20px;
text-align:center;
border:1px solid rgba(245,179,1,.1);
}

.stat-card h2{
color:var(--gold);
font-size:35px;
margin-bottom:10px;
}

/* SECTIONS */

section{
padding:90px 6%;
}

section h2{
text-align:center;
font-size:40px;
margin-bottom:20px;
}

.about p{
max-width:900px;
margin:auto;
text-align:center;
color:var(--gray);
line-height:1.9;
}

/* FEATURES */

.feature-grid{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:25px;
margin-top:50px;
}

.feature-card{
background:var(--card);
border-radius:20px;
overflow:hidden;
transition:.4s;
}

.feature-card:hover{
transform:translateY(-10px);
}

.feature-card img{
width:100%;
height:220px;
object-fit:cover;
}

.feature-card h3{
padding:20px 20px 10px;
}

.feature-card p{
padding:0 20px 25px;
color:#ccc;
}

/* FLYER */

.flyer{
width:100%;
max-width:900px;
display:block;
margin:auto;
border-radius:20px;
border:2px solid rgba(245,179,1,.3);
}

/* MEMBERSHIP */

.membership-card{
max-width:500px;
margin:auto;
background:var(--card);
padding:50px;
border-radius:25px;
text-align:center;
border:2px solid var(--gold);
}

.badge{
background:var(--gold);
color:#000;
padding:10px 20px;
border-radius:30px;
display:inline-block;
font-weight:700;
}

.membership-card h2{
font-size:60px;
color:var(--gold);
margin:25px 0;
}

.membership-card ul{
list-style:none;
margin:30px 0;
}

.membership-card li{
padding:12px;
border-bottom:1px solid rgba(255,255,255,.08);
}

.membership-card a{
display:inline-block;
background:var(--gold);
color:#000;
padding:16px 40px;
border-radius:10px;
text-decoration:none;
font-weight:700;
}

/* EARNERS */

.earner-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:25px;
}

.earner-card{
background:var(--card);
padding:25px;
border-radius:20px;
text-align:center;
}

.earner-card img{
width:100px;
height:100px;
border-radius:50%;
object-fit:cover;
margin-bottom:15px;
}

.earner-card span{
display:block;
margin-top:10px;
color:var(--gold);
font-weight:700;
}

/* FAQ SECTION */

.faq-section{
    padding:100px 6%;
}

.section-title{
    text-align:center;
    margin-bottom:50px;
}

.section-title h2{
    font-size:42px;
    color:#fff;
    margin-bottom:10px;
}

.section-title p{
    color:#bdbdbd;
}

.faq-container{
    max-width:900px;
    margin:auto;
}

.faq-item{
    background:#171717;
    border:1px solid rgba(245,179,1,.15);
    border-radius:15px;
    margin-bottom:15px;
    overflow:hidden;
}

.faq-question{
    width:100%;
    background:none;
    border:none;
    outline:none;
    color:#fff;
    font-size:17px;
    font-weight:600;
    padding:22px;
    cursor:pointer;
    display:flex;
    justify-content:space-between;
    align-items:center;
    text-align:left;
}

.faq-question:hover{
    color:#F5B301;
}

.faq-question span{
    color:#F5B301;
    font-size:28px;
    transition:.3s;
}

.faq-answer{
    max-height:0;
    overflow:hidden;
    transition:max-height .4s ease;
}

.faq-answer p{
    padding:0 22px 22px;
    color:#cfcfcf;
    line-height:1.8;
}

.faq-item.active .faq-answer{
    max-height:300px;
}

.faq-item.active .faq-question span{
    transform:rotate(45deg);
}

/* MOBILE */

@media(max-width:768px){

    .faq-section{
        padding:80px 20px;
    }

    .section-title h2{
        font-size:32px;
    }

    .faq-question{
        font-size:15px;
        padding:18px;
    }

}
/* FOOTER */

footer{
padding:50px 6%;
background:#000;
text-align:center;
}

.footer-links{
display:flex;
justify-content:center;
gap:25px;
flex-wrap:wrap;
margin-bottom:25px;
}

.footer-links a{
text-decoration:none;
color:#fff;
}

/* MOBILE */

@media(max-width:900px){

.menu-btn{
display:block;
}

nav{
position:fixed;
top:80px;
right:-100%;
width:280px;
height:100vh;
background:#111;
flex-direction:column;
padding-top:50px;
transition:.4s;
}

nav.active{
right:0;
}

.hero{
flex-direction:column;
text-align:center;
}

.hero h1{
font-size:48px;
}

.stats,
.feature-grid,
.earner-grid{
grid-template-columns:1fr;
}

.hero-image img{
width:300px;
}

/* TOP EARNERS DATABASE */

.earner-avatar{
width:80px;
height:80px;
border-radius:50%;
background:linear-gradient(
135deg,
#d4af37,
#f4d06f
);
display:flex;
align-items:center;
justify-content:center;
font-size:34px;
margin:0 auto 15px;
box-shadow:0 0 20px rgba(212,175,55,.3);
}

.view-earners-btn{
display:inline-block;
padding:15px 28px;
border-radius:14px;
background:linear-gradient(
135deg,
#d4af37,
#f4d06f
);
color:#000;
font-weight:700;
text-decoration:none;
transition:.3s;
}

.view-earners-btn:hover{
transform:translateY(-3px);
}

.earner-card{
text-align:center;
}

.earner-card h3{
margin-top:10px;
font-size:18px;
}

.earner-card span{
display:block;
margin-top:8px;
font-weight:700;
color:#25ff9a;
}