/* ---------- RESET & FONTS ---------- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary: #6f5cff;
  --primary-glow: #9b7bff;
  --bg-dark: #070708;
  --nav-bg: #0b0b0d;
  --text-main: #ffffff;
  --text-dim: #949fb4;
  --border-light: rgba(111, 92, 255, 0.15);
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg-dark);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
}

/* ---------- NAVBAR (FIXED POSITIONS) ---------- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 90px;
  background: var(--nav-bg);
  border-bottom: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 60px;
  z-index: 1000;
}

.logo {
  font-family: 'Orbitron', sans-serif;
  font-size: 20px;
  font-weight: 900;
  color: #fff;
  text-shadow: 0 0 10px var(--primary-glow);
  width: 250px; /* מונע תזוזה של התפריט */
}

.nav-links {
  display: flex;
  gap: 80px;
  justify-content: center;
  align-items: center;
}

.nav-item {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 80px;
}

.nav-link {
  text-decoration: none;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--text-dim);
  transition: 0.3s ease;
}

.nav-link:hover {
  color: #fff;
  text-shadow: 0 0 10px var(--primary-glow);
}

/* ---------- COMING SOON - PURPLE GLOW EFFECT ---------- */
.coming-soon-glow {
  position: absolute;
  top: 25px; /* ממוקם בדיוק מתחת לטקסט Donate */
  font-size: 9px;
  font-weight: 900;
  text-transform: uppercase;
  color: #fff;
  background: var(--primary);
  padding: 2px 8px;
  border-radius: 4px;
  white-space: nowrap;
  letter-spacing: 0.5px;
  /* האנימציה של הזוהר הסגול */
  animation: purplePulse 2s infinite ease-in-out;
  pointer-events: none;
}

@keyframes purplePulse {
  0% { 
    box-shadow: 0 0 5px #6f5cff, 0 0 10px #6f5cff;
    transform: scale(1);
    background: #6f5cff;
  }
  50% { 
    box-shadow: 0 0 15px #9b7bff, 0 0 25px #9b7bff;
    transform: scale(1.05);
    background: #9b7bff;
  }
  100% { 
    box-shadow: 0 0 5px #6f5cff, 0 0 10px #6f5cff;
    transform: scale(1);
    background: #6f5cff;
  }
}

/* ---------- ONLINE BOX ---------- */
.right {
  width: 250px; /* תואם לרוחב הלוגו בשביל איזון */
  display: flex;
  justify-content: flex-end;
}

.online-box {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(111, 92, 255, 0.05);
  border: 1px solid rgba(155, 123, 255, 0.3);
  padding: 8px 18px;
  border-radius: 50px;
}

.dot {
  width: 8px;
  height: 8px;
  /* נקודה סגולה בהירה */
  background: var(--primary-glow); 
  border-radius: 50%;
  /* זוהר סגול סביב הנקודה */
  box-shadow: 0 0 10px var(--primary-glow);
  /* אנימציית פעימה קלה לנקודה */
  animation: dotPulse 2s infinite ease-in-out;
}

.count {
  font-weight: 800;
  /* טקסט סגול בהיר מאוד/לבן */
  color: #e0d9ff; 
  font-size: 11px;
  letter-spacing: 0.5px;
  text-shadow: 0 0 5px rgba(155, 123, 255, 0.5);
}

/* ---------- HERO & GLOW TITLE ---------- */
.hero {
  height: 100vh;
  background: url("hero.png") center / cover no-repeat;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero .overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(7, 7, 8, 0.2) 0%, rgba(7, 7, 8, 0.9) 100%);
}

.hero-content {
  position: relative;
  z-index: 5;
}

.glow-title {
  font-family: 'Orbitron', sans-serif;
  font-size: clamp(50px, 10vw, 85px);
  font-weight: 900;
  line-height: 1.1;
  color: #fff;
  text-shadow: 0 0 20px rgba(111, 92, 255, 0.4);
  margin-bottom: 25px;
}

.glow-title span {
  color: var(--primary-glow);
  text-shadow: 0 0 20px var(--primary-glow), 0 0 50px var(--primary-glow);
}

/* סטייל לטקסט הקטן שמעל הכותרת */
.hero-tag {
  font-family: 'Orbitron', sans-serif; /* הפונט העתידני של הלוגו */
  text-transform: uppercase;
  letter-spacing: 4px; /* ריווח אותיות למראה יוקרתי */
  color: var(--primary-glow); /* צבע סגול בהיר */
  font-size: 12px;
  font-weight: 900;
  margin-bottom: 10px;
  text-shadow: 0 0 10px rgba(155, 123, 255, 0.5); /* זוהר סגול עדין */
}

/* סטייל לפסקת התיאור מתחת לכותרת */
/* סטייל משודרג לפסקת התיאור */
/* סטייל משודרג לפסקת התיאור עם פונט חדש */
.hero p {
  /* שיניתי ל-Orbitron כדי שיתאים לאווירה של שאר האתר */
  font-family: 'Orbitron', sans-serif; 
  font-size: 16px; /* הקטנתי מעט כי הפונט הזה תופס המון מקום */
  color: #d1c9ff; 
  max-width: 800px;
  margin: 0 auto 40px;
  line-height: 2; /* הגדלתי מרווח בין שורות לקריאות */
  font-weight: 400;
  letter-spacing: 1.5px; /* ריווח אותיות למראה נקי ועתידני */
  
  /* שילוב של צל שחור לעומק וזוהר סגול רך */
  text-shadow: 
    0 2px 10px rgba(0, 0, 0, 0.8), 
    0 0 15px rgba(111, 92, 255, 0.3);
    
  animation: fadeInText 2s ease-out;
}

@keyframes fadeInText {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ---------- BUTTONS - THE WOW EFFECT (NO SCALE) ---------- */
.btn-discord {
  position: relative;
  display: inline-block;
  background: linear-gradient(135deg, #5865F2 0%, #404eed 100%);
  color: #fff;
  padding: 20px 60px;
  border-radius: 14px;
  text-decoration: none;
  font-family: 'Orbitron', sans-serif;
  font-weight: 900;
  text-transform: uppercase;
  font-size: 15px;
  letter-spacing: 2px;
  overflow: hidden;
  /* מעבר חלק לכל התכונות */
  transition: all 0.3s ease-in-out; 
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 
    0 4px 15px rgba(0, 0, 0, 0.4),
    0 0 20px rgba(88, 101, 242, 0.3),
    inset 0 0 10px rgba(255, 255, 255, 0.1);
  z-index: 1;
}

/* אפקט הברק שעובר על הכפתור */
.btn-discord::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  transition: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: -1;
}

.btn-discord:hover::before {
  left: 100%;
}

.btn-discord:hover {
  /* תנועה קלה למעלה בלבד - בלי הגדלה */
  transform: translateY(-4px); 
  background: linear-gradient(135deg, #6270ff 0%, #4755ff 100%);
  box-shadow: 
    0 8px 25px rgba(0, 0, 0, 0.5),
    0 0 40px rgba(88, 101, 242, 0.6);
  /* אפקט פתיחת טקסט יוקרתי */
  letter-spacing: 3.5px; 
  border-color: rgba(255, 255, 255, 0.5);
}

.btn-discord:active {
  /* תחושת לחיצה אמיתית */
  transform: translateY(-1px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.6);
}

/* ---------- FEATURES ---------- */
.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  padding: 100px 8%;
}

.feature {
  background: rgba(111, 92, 255, 0.02);
  border: 1px solid var(--border-light);
  padding: 50px 30px;
  border-radius: 20px;
  text-align: center;
}

.feature h3 {
  font-family: 'Orbitron', sans-serif;
  color: var(--primary-glow);
  margin-bottom: 10px;
}

footer {
  text-align: center;
  padding: 60px;
  color: #333;
  border-top: 1px solid var(--border-light);
}