body{
margin:0;
font-family:Arial;
background:#111;
color:white;
}

/* ===== الهيدر ===== */
header{
display:flex;
justify-content:space-between;
align-items:center;
padding:15px 50px;
background:rgba(0,0,0,0.65);
backdrop-filter:blur(8px);
box-shadow:0 5px 20px rgba(0,0,0,0.4);
position:fixed;
top:0;
width:100%;
box-sizing:border-box;
z-index:1000;
animation:headerFade 0.8s ease;
}

/* حركة دخول */
@keyframes headerFade{
from{
opacity:0;
transform:translateY(-20px);
}
to{
opacity:1;
transform:translateY(0);
}
}

/* ===== اللوقو ===== */
.logo{
display:flex;
align-items:center;
font-size:22px;
font-weight:bold;
color:white;
}

.logo-img{
height:40px;
margin-right:10px;
border-radius:8px;
}

/* ===== القائمة ===== */
nav{
display:flex;
align-items:center;
gap:30px;
}

/* روابط */
nav a{
position:relative;
color:white;
text-decoration:none;
font-size:16px;
padding:8px 5px;
transition:0.3s;
}

/* خط الانميشن */
nav a::before{
content:"";
position:absolute;
bottom:-4px;
left:50%;
width:0%;
height:2px;
background:white;
transition:0.35s;
transform:translateX(-50%);
}

nav a:hover{
transform:translateY(-2px);
text-shadow:0 0 8px rgba(255,255,255,0.7);
}

nav a:hover::before{
width:100%;
}

/* ===== زر Discord ===== */
.social-btn{
display:flex;
align-items:center;
gap:8px;
padding:8px 16px;
border:none;
border-radius:8px;
background:#7FC7D9;
color:white;
cursor:pointer;
font-size:14px;
transition:0.3s;
}

.social-btn:hover{
background:#7FC7D9;
transform:translateY(-2px);
box-shadow:0 0 15px #7FC7D9;
}

/* ===== صورة الحساب ===== */
.profile-avatar{
width:35px;
height:35px;
border-radius:50%;
border:2px solid white;
transition:0.3s;
}

.profile-avatar:hover{
transform:scale(1.1);
box-shadow:0 0 10px white;
}

/* ===== زر المينيو للجوال ===== */
.menu-toggle{
display:none;
font-size:28px;
color:white;
cursor:pointer;
}

/* ===== الجوال ===== */
@media (max-width:900px){

nav{
position:absolute;
top:70px;
right:0;
background:rgba(0,0,0,0.95);
width:200px;
flex-direction:column;
align-items:flex-start;
padding:20px;
display:none;
}

nav.active{
display:flex;
}

.menu-toggle{
display:block;
}

}

nav a{
color:white;
margin:10px;
text-decoration:none;
font-size:18px;
}

.hero{
height:100vh;
background: url("../images/background.jpg") center center / cover no-repeat;
display:flex;
align-items:center;
justify-content:center;
position:relative;
}

.overlay{
position:absolute;
width:100%;
height:100%;
background:rgba(0, 0, 0, 0.6);
}

.hero-content{
position:relative;
text-align:center;
}

.hero h1{
font-size:60px;
}

.hero p{
font-size:22px;
}

.join-btn{

display:inline-block;
margin-top:20px;
padding:15px 40px;
background:#ff6600;
color:white;
text-decoration:none;
font-size:20px;
border-radius:12px;
transition:0.25s;
cursor:pointer;

}

.join-btn:hover{
transform:translateY(-3px);
box-shadow:0 8px 20px rgba(0,0,0,0.25);
}

.join-btn:active{
transform:scale(0.95);
}

.hero {
  background: url("../images/background.jpg");
}

.logo img.logo-img {
  height: 50px;       /* ارتفاع اللوجو */
  width: auto;        /* يحافظ على النسبة */
  vertical-align: middle;
  margin-right: 10px; /* مسافة بين الصورة والنص */
  
}


.discord-btn{

display:inline-block;
margin-top:20px;
padding:15px 40px;
background:#5865F2;
color:white;
text-decoration:none;
font-size:20px;
border-radius:12px;
transition:0.25s;
cursor:pointer;

}

.discord-btn:hover{
transform:translateY(-3px);
box-shadow:0 8px 20px rgba(0,0,0,0.25);
}

.discord-btn:active{
transform:scale(0.95);
}

*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:Arial;
}

body{
background:#0f0f0f;
color:white;
}

/* NAVBAR */

header{
display:flex;
justify-content:space-between;
align-items:center;
padding:20px 80px;
background:rgba(0,0,0,0.6);
backdrop-filter:blur(10px);
position:fixed;
width:100%;
z-index:10;
}

.logo{
display:flex;
align-items:center;
gap:10px;
font-size:22px;
font-weight:bold;
}

.logo-img{
width:40px;
}

nav a{
margin-left:25px;
text-decoration:none;
color:white;
font-size:16px;
transition:0.3s;
}

nav a:hover{
color:#7FC7D9;
}


/* HERO */

.hero{
height:100vh;
display:flex;
align-items:center;
justify-content:center;
text-align:center;
position:relative;
}

.bg-video{
position:absolute;
width:100%;
height:100%;
object-fit:cover;
z-index:-2;
}

.overlay{
position:absolute;
width:100%;
height:100%;
background:rgba(0,0,0,0.6);
z-index:-1;
}

.hero-content{
background:rgba(255,255,255,0.05);
padding:40px;
border-radius:20px;
backdrop-filter:blur(10px);
border:1px solid rgba(255,255,255,0.1);
}

.hero h1{
font-size:50px;
margin-bottom:10px;
}

.server-status{
margin:20px 0;
font-size:20px;
color:#7FC7D9;
}


/* BUTTONS */

.buttons{
margin-top:20px;
}

.join-btn{
background:#7FC7D9;
padding:12px 30px;
border-radius:8px;
text-decoration:none;
color:white;
margin-right:10px;
font-weight:bold;
}

.discord-btn{
background:#7FC7D9;
padding:12px 30px;
border-radius:8px;
text-decoration:none;
color:white;
font-weight:bold;
}


/* FEATURES */

.features{
padding:100px 80px;
text-align:center;
}

.cards{
display:flex;
justify-content:center;
gap:30px;
margin-top:40px;
flex-wrap:wrap;
}

.card{
background:rgba(255,255,255,0.05);
padding:30px;
border-radius:15px;
width:250px;
backdrop-filter:blur(10px);
border:1px solid rgba(255,255,255,0.1);
}

footer{
text-align:center;
padding:30px;
background:#000;
}

/* PARTNERS */

.partners{
padding:100px 80px;
text-align:center;
background:#0b0b0b;
}

.partners h2{
margin-bottom:40px;
font-size:28px;
}

.partners-slider{
display:flex;
gap:40px;
overflow:hidden;
position:relative;
}

.partner{
min-width:200px;
height:100px;
display:flex;
align-items:center;
justify-content:center;
background:rgba(255,255,255,0.05);
border-radius:15px;
padding:20px;
transition:0.3s;
}

.partner img{
max-width:100%;
max-height:60px;
}

.partner:hover{
transform:scale(1.05);
background:rgba(255,255,255,0.1);
}