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

body{
background:#16120d;
color:#f7e7c6;
overflow-x:hidden;
}

/* HEADER */

header{
position:fixed;
top:0;
left:0;
right:0;

height:100px;

display:flex;
justify-content:space-between;
align-items:center;

padding:0 8%;

background:transparent;

transition:.35s ease;

z-index:9999;
}

header.scrolled{
background:rgba(22,18,13,.88);
backdrop-filter:blur(15px);
border-bottom:1px solid rgba(212,164,90,.15);
}

.logo{
display:flex;
align-items:center;
gap:15px;

font-size:2rem;
font-weight:700;

color:white;
}

.logo img{
width:70px;
height:70px;
object-fit:contain;
}

nav{
display:flex;
gap:30px;
}

nav a{
color:white;
text-decoration:none;
font-weight:600;
transition:.3s;
}

nav a:hover{
color:#f0c987;
}

/* HERO */

.hero{
position:relative;

min-height:100vh;

display:flex;
justify-content:center;
align-items:center;
text-align:center;

overflow:hidden;
}

.hero::before{
content:"";
position:absolute;
inset:0;

background:url("download.gif") center center no-repeat;
background-size:cover;

z-index:-2;
}

.hero::after{
content:"";
position:absolute;
inset:0;

background:
linear-gradient(
rgba(22,18,13,.35),
rgba(22,18,13,.75)
);

z-index:-1;
}

.hero-content{
max-width:900px;
padding:20px;
}

.hero-logo{
width:220px;
margin-bottom:25px;

filter:
drop-shadow(0 0 25px rgba(212,164,90,.35));
}

.hero h1{
font-size:5rem;
font-weight:800;
margin-bottom:10px;

color:white;
}

.subtitle{
font-size:1.4rem;
font-weight:600;
color:#f0c987;
margin-bottom:15px;
}

.badge{
display:inline-block;

padding:10px 20px;

margin-bottom:20px;

border-radius:999px;

background:rgba(212,164,90,.15);

border:1px solid rgba(212,164,90,.25);

color:#f0c987;
}

.hero p{
max-width:700px;
margin:auto;
margin-bottom:30px;
font-size:1.15rem;
line-height:1.8;
}

/* BUTTON */

.btn{
display:inline-block;

padding:15px 35px;

background:#d4a45a;
color:#16120d;

font-weight:700;

border-radius:12px;

text-decoration:none;

transition:.3s;
}

.btn:hover{
background:#f0c987;
transform:translateY(-3px);
}

/* SECTIONS */

section{
padding:100px 8%;
}

.section-title{
font-size:2.8rem;
text-align:center;
margin-bottom:50px;

color:#f0c987;
}

/* CARDS */

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

.card{
background:#241b14;

padding:30px;

border-radius:20px;

border:1px solid rgba(212,164,90,.15);

transition:.3s;
}

.card:hover{
transform:translateY(-6px);

box-shadow:
0 0 30px rgba(212,164,90,.25);
}

.card h3{
color:#f0c987;
margin-bottom:10px;
}

.card p{
line-height:1.7;
}

/* COMMUNITY */

.counter-box{
background:#241b14;

padding:40px;

max-width:500px;

margin:auto;

border-radius:20px;

text-align:center;

border:1px solid rgba(212,164,90,.15);
}

.counter-box h1{
font-size:4rem;
color:#f0c987;
margin-bottom:10px;
}

/* DISCORD */

.discord-widget{
display:flex;
justify-content:center;
align-items:center;

padding:25px;

max-width:430px;
margin:auto;

border-radius:25px;

background:#241b14;

border:1px solid rgba(212,164,90,.15);

box-shadow:
0 0 30px rgba(212,164,90,.15);
}

.discord-widget iframe{
border:none;
border-radius:20px;
}

/* REVIEWS */

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

.review{
background:#241b14;

padding:25px;

border-radius:15px;

border:1px solid rgba(212,164,90,.15);

transition:.3s;
}

.review:hover{
transform:translateY(-5px);

box-shadow:
0 0 20px rgba(212,164,90,.15);
}

/* FOOTER */

footer{
background:#120e0a;

padding:30px;

text-align:center;

color:#d9c3a0;
}

footer p{
margin:5px 0;
}

/* SCROLLBAR */

::-webkit-scrollbar{
width:10px;
}

::-webkit-scrollbar-track{
background:#16120d;
}

::-webkit-scrollbar-thumb{
background:#d4a45a;
border-radius:20px;
}

/* MOBILE */

@media(max-width:900px){

header{
padding:20px;
height:auto;
flex-direction:column;
gap:15px;
}

nav{
flex-wrap:wrap;
justify-content:center;
}

.logo{
font-size:1.5rem;
}

.logo img{
width:55px;
height:55px;
}

.hero h1{
font-size:3rem;
}

.hero-logo{
width:140px;
}

.subtitle{
font-size:1.1rem;
}

.section-title{
font-size:2rem;
}

.discord-widget iframe{
width:100%;
max-width:350px;
}

}
