/* =========================
   KRALG NETWORK STYLE
========================= */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    scroll-behavior:smooth;
}

body{
    font-family:Arial, Helvetica, sans-serif;
    background:#0b0b0b;
    color:white;
    overflow-x:hidden;
}

/* Hareketli Arka Plan */

body::before{
    content:"";
    position:fixed;
    width:100%;
    height:100%;
    background:
    radial-gradient(circle at top,#ffd70022,transparent 40%),
    radial-gradient(circle at bottom,#ffae0022,transparent 35%);
    z-index:-2;
}

/* Yıldızlar */

body::after{
    content:"";
    position:fixed;
    inset:0;
    background-image:
    radial-gradient(white 1px,transparent 1px);
    background-size:45px 45px;
    opacity:.15;
    animation:stars 80s linear infinite;
    z-index:-1;
}

@keyframes stars{

from{
transform:translateY(0);
}

to{
transform:translateY(-400px);
}

}

/* NAVBAR */

header{

position:fixed;
top:0;
left:0;
width:100%;
display:flex;
justify-content:space-between;
align-items:center;
padding:25px 70px;

background:rgba(0,0,0,.45);
backdrop-filter:blur(18px);

border-bottom:1px solid rgba(255,215,0,.15);

z-index:999;

}

.logo h1{

font-size:40px;

color:#FFD700;

letter-spacing:3px;

text-shadow:0 0 25px gold;

}

/* Menü */

nav{

display:flex;
gap:35px;

}

nav a{

color:white;

text-decoration:none;

font-size:18px;

transition:.35s;

}

nav a:hover{

color:#FFD700;

text-shadow:0 0 15px gold;

}

/* HERO */

.hero{

height:100vh;

display:flex;

justify-content:center;

align-items:center;

text-align:center;

padding:40px;

}

.hero-content h1{

font-size:85px;

color:#FFD700;

text-shadow:

0 0 20px gold,

0 0 50px gold;

margin-bottom:20px;

}

.hero-content p{

font-size:24px;

opacity:.9;

margin-bottom:35px;

}

/* Butonlar */

.buttons{

display:flex;

justify-content:center;

gap:25px;

margin-bottom:40px;

}

.buttons button{

padding:18px 38px;

border:none;

border-radius:14px;

font-size:18px;

cursor:pointer;

transition:.35s;

font-weight:bold;

}

#play{

background:#FFD700;

color:black;

}

#discordBtn{

background:#5865F2;

color:white;

}

.buttons button:hover{

transform:translateY(-5px) scale(1.05);

box-shadow:0 0 35px gold;

}

/* Sunucu Kutusu */

.server-box{

margin:auto;

width:420px;

padding:30px;

background:rgba(255,255,255,.05);

border:1px solid rgba(255,215,0,.15);

backdrop-filter:blur(20px);

border-radius:20px;

margin-top:40px;

}

.server-box h2{

color:#FFD700;

margin-bottom:15px;

}

.server-box h3{

font-size:24px;

margin-bottom:20px;

}

#copyIP{

padding:14px 30px;

background:#FFD700;

border:none;

border-radius:10px;

cursor:pointer;

font-weight:bold;

}

#copyIP:hover{

box-shadow:0 0 30px gold;

}
/* =========================
   İSTATİSTİKLER
========================= */

.stats{
display:flex;
justify-content:center;
gap:30px;
margin-top:40px;
flex-wrap:wrap;
}

.stat{
width:180px;
padding:25px;
border-radius:18px;
background:rgba(255,255,255,.05);
backdrop-filter:blur(20px);
border:1px solid rgba(255,215,0,.15);
transition:.4s;
}

.stat:hover{
transform:translateY(-10px);
box-shadow:0 0 30px rgba(255,215,0,.4);
}

.stat h2{
font-size:38px;
color:#FFD700;
margin-bottom:10px;
}

.stat p{
font-size:18px;
}

/* =========================
   TÜM BÖLÜMLER
========================= */

section{
padding:120px 8%;
}

section h2{
font-size:45px;
text-align:center;
margin-bottom:60px;
color:#FFD700;
text-shadow:0 0 15px gold;
}

/* =========================
   ÖZELLİK KARTLARI
========================= */

.cards{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:35px;
}

.card{
background:rgba(255,255,255,.05);
padding:35px;
border-radius:20px;
text-align:center;
backdrop-filter:blur(20px);
border:1px solid rgba(255,215,0,.15);
transition:.4s;
}

.card:hover{
transform:translateY(-12px);
box-shadow:0 0 35px rgba(255,215,0,.45);
}

.card i{
font-size:55px;
color:#FFD700;
margin-bottom:20px;
}

.card h3{
font-size:28px;
margin-bottom:15px;
}

.card p{
opacity:.8;
line-height:1.6;
}

/* =========================
   MAĞAZA
========================= */

.shop{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
gap:30px;
}

.item{
background:#111;
padding:35px;
border-radius:20px;
border:2px solid rgba(255,215,0,.2);
text-align:center;
transition:.4s;
}

.item:hover{
transform:scale(1.05);
border-color:#FFD700;
box-shadow:0 0 40px rgba(255,215,0,.5);
}

.item h3{
font-size:30px;
color:#FFD700;
margin-bottom:20px;
}

.item button{
margin-top:25px;
padding:14px 35px;
border:none;
background:#FFD700;
color:black;
font-weight:bold;
border-radius:10px;
cursor:pointer;
transition:.3s;
}

.item button:hover{
transform:scale(1.08);
}

/* =========================
   KURALLAR
========================= */

#rules ul{
max-width:700px;
margin:auto;
list-style:none;
}

#rules li{
background:rgba(255,255,255,.05);
margin-bottom:18px;
padding:18px;
border-left:5px solid gold;
border-radius:12px;
font-size:20px;
}

/* =========================
   DISCORD
========================= */

#discord{
text-align:center;
}

#discord p{
font-size:22px;
margin-bottom:30px;
}

#discord button{
padding:18px 45px;
font-size:18px;
border:none;
border-radius:12px;
background:#5865F2;
color:white;
cursor:pointer;
transition:.3s;
}

#discord button:hover{
transform:translateY(-6px);
box-shadow:0 0 35px #5865F2;
}

/* =========================
   DUYURULAR
========================= */

.news-box{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
gap:25px;
}

.news-box div{
padding:30px;
background:rgba(255,255,255,.05);
border-radius:18px;
border:1px solid rgba(255,215,0,.15);
transition:.3s;
}

.news-box div:hover{
transform:translateY(-8px);
box-shadow:0 0 30px rgba(255,215,0,.4);
}

/* =========================
   FOOTER
========================= */

footer{
padding:50px;
text-align:center;
background:#050505;
border-top:1px solid rgba(255,215,0,.15);
}

footer h2{
color:#FFD700;
margin-bottom:15px;
}

footer p{
opacity:.7;
}
/* ===========================
Animasyon
=========================== */

.hidden{

opacity:0;

transform:translateY(60px);

transition:1s;

}

.show{

opacity:1;

transform:translateY(0);

}

/* Scroll */

::-webkit-scrollbar{

width:10px;

}

::-webkit-scrollbar-thumb{

background:gold;

border-radius:20px;

}

::-webkit-scrollbar-track{

background:#111;

}

/* Responsive */

@media(max-width:900px){

header{

flex-direction:column;

padding:20px;

}

nav{

margin-top:15px;

flex-wrap:wrap;

justify-content:center;

}

.hero-content h1{

font-size:50px;

}

.hero-content p{

font-size:18px;

}

.buttons{

flex-direction:column;

}

.server-box{

width:95%;

}

}
.logo{
    display:flex;
    align-items:center;
    gap:12px;
}

.logo img{
    width:48px;
    height:48px;
    object-fit:contain;
}

.logo h1{
    margin:0;
}
#vote{
    text-align:center;
    padding:100px 20px;
}

#vote button{
    background:#FFD700;
    color:#000;
    border:none;
    padding:18px 40px;
    border-radius:12px;
    font-size:20px;
    cursor:pointer;
    transition:.3s;
}

#vote button:hover{
    transform:scale(1.05);
    box-shadow:0 0 25px gold;
}