:root{

--primary:#6f3cff;
--secondary:#2a7bff;
--dark:#080b12;
--dark2:#111827;
--text:#ffffff;
--silver:#bfc6d1;

}

*{

margin:0;
padding:0;
box-sizing:border-box;

}

body{

background:#080b12;
color:white;
font-family:Arial,Helvetica,sans-serif;

}

.container{

width:min(1200px,92%);
margin:auto;

}

.header{

position:fixed;
top:0;
left:0;
width:100%;
height:90px;

background:rgba(8,11,18,.92);

backdrop-filter:blur(10px);

border-bottom:1px solid rgba(111,60,255,.35);

z-index:999;

}

.header .container{

height:100%;

display:flex;

align-items:center;

justify-content:space-between;

}

.header-logo img{

height:85px;
width:auto;
display:block;

}

.menu{

display:flex;

gap:35px;

}

.menu a{

color:white;

text-decoration:none;

font-weight:700;

transition:.3s;

}

.menu a:hover{

color:var(--primary);

}

/* HERO */

.hero{

position:relative;

height:100vh;

background:url("../images/hero-bg.jpg");

background-size:cover;

background-position:center;

display:flex;

justify-content:center;

align-items:center;

overflow:hidden;

}

.overlay{

position:absolute;

left:0;
top:0;

width:100%;
height:100%;

background:linear-gradient(rgba(5,8,15,.65),rgba(5,8,15,.88));

}

.hero-content{

position:relative;

z-index:5;

text-align:center;

max-width:900px;

padding:20px;

}

.hero-logo{

width:520px;

max-width:90%;

margin-bottom:30px;

filter:drop-shadow(0 0 25px #6f3cff);

animation:float 4s ease-in-out infinite;

}

.hero h2{

font-size:42px;

letter-spacing:8px;

margin-bottom:20px;

color:white;

}

.hero p{

font-size:22px;

line-height:1.7;

color:#d7d7d7;

margin-bottom:45px;

}

.hero-buttons{

display:flex;

justify-content:center;

gap:20px;

flex-wrap:wrap;

}

.btn{

padding:18px 42px;

border-radius:8px;

text-decoration:none;

font-weight:bold;

transition:.35s;

}

.btn-primary{

background:#6f3cff;

color:white;

}

.btn-primary:hover{

transform:translateY(-4px);

}

.btn-secondary{

background:#2a7bff;

color:white;

}

.btn-secondary:hover{

transform:translateY(-4px);

}

.btn-discord{

background:#5865F2;

color:white;

}

.btn-discord:hover{

transform:translateY(-4px);

}

@keyframes float{

0%{

transform:translateY(0);

}

50%{

transform:translateY(-12px);

}

100%{

transform:translateY(0);

}

}
