*{
margin:0;
padding:0;
box-sizing:border-box;
}

body{
font-family:'Inter',sans-serif;
color:white;
overflow-x:hidden;
line-height:1.6;
background:#0f172a;
}



/* BACKGROUND */

.bg-image{
position:fixed;
width:100%;
height:100%;
background:url("img/bg.png") center/cover no-repeat;
z-index:-2;
animation:zoomBg 22s infinite alternate;
}

@keyframes zoomBg{
from{
transform:scale(1);
}
to{
transform:scale(1.08);
}
}

.bg-overlay{
position:fixed;
width:100%;
height:100%;
background:
linear-gradient(
rgba(2,6,23,.65),
rgba(2,6,23,.88)
);
z-index:-1;
}



/* NAVBAR */

.navbar{
position:fixed;
top:0;
width:100%;
height:78px;

display:flex;
justify-content:space-between;
align-items:center;

padding:0 22px;

background:rgba(2,6,23,.35);
backdrop-filter:blur(18px);

border-bottom:1px solid rgba(34,197,94,.15);

z-index:999;
}

/* LOGO */

.brand img{
width:125px;
height:125px;
object-fit:contain;

filter:drop-shadow(0 0 18px #22c55e);

transition:.3s;
}

.brand img:hover{
transform:scale(1.08);
}

.nav-right{
display:flex;
align-items:center;
gap:14px;
}

/* DISCORD BUTTON */

.discord-btn{
font-family:'Oxanium',sans-serif;
font-weight:700;
text-decoration:none;
color:white;

padding:10px 18px;
border-radius:12px;

background:linear-gradient(
135deg,
#5865F2,
#4752c4
);

box-shadow:0 0 15px rgba(88,101,242,.4);

transition:.3s;
}

.discord-btn:hover{
transform:translateY(-2px);
}

/* MENU BUTTON */

.menu-btn{
font-size:30px;
cursor:pointer;
font-family:'Minecraft',sans-serif;
transition:.3s;
}

.menu-btn:hover{
transform:scale(1.1);
color:#22c55e;
}

/* DROPDOWN */

.dropdown{
display:none;
flex-direction:column;

position:absolute;
top:88px;
right:25px;

background:rgba(0,0,0,.92);

border-radius:14px;
overflow:hidden;

box-shadow:0 0 20px rgba(0,0,0,.4);
}

.dropdown a{
font-family:'Oxanium',sans-serif;

padding:14px 20px;

color:white;
text-decoration:none;

transition:.25s;
}

.dropdown a:hover{
background:#22c55e;
color:black;
}



/* HERO */

.hero{
height:100vh;

display:flex;
justify-content:center;
align-items:center;

padding-top:70px;
}

.hero-content{
display:flex;
flex-direction:column;
align-items:center;

gap:20px;
text-align:center;

margin-top:30px;
}

/* CENTER LOGO */

.hero-center-logo{
width:390px;
max-width:85vw;

margin-top:15px;

filter:drop-shadow(0 0 30px #22c55e);

animation:floatLogo 3s ease-in-out infinite;
}

@keyframes floatLogo{
0%{
transform:translateY(0);
}
50%{
transform:translateY(-12px);
}
100%{
transform:translateY(0);
}
}



/* IP BOX */

.ip-box{
font-family:'Minecraft',sans-serif;

padding:15px 30px;

border:2px solid #22c55e;
border-radius:12px;

cursor:pointer;

background:rgba(0,0,0,.35);

transition:.3s;
}

.ip-box:hover{
transform:scale(1.04);

box-shadow:0 0 18px rgba(34,197,94,.35);
}



/* COPY MESSAGE */

.copy-msg{
position:fixed;

top:95px;
right:-250px;

background:#22c55e;
color:#08120c;

font-family:'Minecraft',sans-serif;

padding:14px 22px;

border-radius:12px;

box-shadow:0 0 20px rgba(34,197,94,.45);

transition:.45s ease;

opacity:0;
z-index:3000;
}

.copy-msg.show{
right:25px;
opacity:1;
}



/* SERVER PANEL */

.server-panel{
display:flex;
gap:14px;
align-items:center;
}

.status{
font-family:'Minecraft',sans-serif;

border:2px solid #22c55e;

padding:10px 16px;

border-radius:12px;

color:#22c55e;

background:rgba(0,0,0,.3);
}

.shop-btn{
font-family:'Minecraft',sans-serif;
text-decoration:none;

background:#5865F2;
color:white;

padding:10px 16px;

border-radius:12px;

transition:.3s;
}

.shop-btn:hover{
transform:translateY(-2px);
}



/* SHOP SELECTOR */

.shop-selector{
display:flex;
gap:55px;

margin-top:40px;

align-items:flex-end;
justify-content:center;
}

.shop-item{
text-decoration:none;
text-align:center;
}

.shop-item img{
width:200px;
height:200px;

object-fit:contain;

filter:drop-shadow(0 0 12px rgba(34,197,94,.45));

transition:.35s;
}

.shop-item img:hover{
transform:scale(1.12);

filter:drop-shadow(0 0 25px #22c55e);
}

.shop-item span{
display:block;

margin-top:12px;

font-family:'Minecraft',sans-serif;
font-size:18px;

color:#22c55e;
}

.middle img{
width:240px;
height:240px;
}



/* INFO GRID */

.info-grid{
display:grid;
grid-template-columns:repeat(3,1fr);

gap:30px;

padding:50px;
}

.info-box{
background:rgba(0,0,0,.55);

backdrop-filter:blur(14px);

padding:30px;

border-radius:20px;

border:1px solid rgba(34,197,94,.18);

box-shadow:0 0 20px rgba(0,0,0,.2);
}

.info-box h2{
font-family:'Oxanium',sans-serif;

font-size:30px;

margin-bottom:18px;

font-weight:800;
}

.info-box p,
.info-box li{
font-size:16px;
opacity:.92;
}

.info-box ul{
padding-left:18px;
}



/* FOOTER */

footer{
text-align:center;

padding:35px;

font-family:'Oxanium',sans-serif;

opacity:.75;
}



/* MOBILE */

@media(max-width:768px){

.navbar{
height:68px;
padding:0 16px;
}

.brand img{
width:95px;
height:95px;
}

.discord-btn{
padding:9px 14px;
font-size:14px;
}

.menu-btn{
font-size:26px;
}

.hero{
height:auto;
min-height:100vh;
padding-top:110px;
}

.hero-content{
margin-top:50px;
}

.hero-center-logo{
width:250px;
}

.server-panel{
flex-direction:column;
}

.shop-selector{
flex-direction:column;
gap:28px;
}

.shop-item img{
width:150px;
height:150px;
}

.middle img{
width:175px;
height:175px;
}

.info-grid{
grid-template-columns:1fr;
padding:30px;
}

.copy-msg{
top:85px;
}

}