body {
  margin: 0;
  font-family: Arial;
  background: radial-gradient(circle at top right, #1a1a1a, #000);
  color: white;
}

/* NAV */
nav {
  display: flex;
  justify-content: space-between;
  padding: 15px 50px; /* أصغر */
  background: black;
  border-bottom: 1px solid #111;
}

.nav-links a {
  margin-left: 20px;
  color: #ccc;
  text-decoration: none;
  transition: 0.3s;
  font-size: 14px;
}

.nav-links a:hover {
  color: orange;
}

.nav-btn {
  background: orange;
  padding: 8px 16px;
  border-radius: 20px;
  color: black;
  font-size: 14px;
}

/* HERO */
.hero {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 50px 50px; /* أصغر */
}

/* LEFT */
.hero-left {
  max-width: 550px;
}

.hero h1 {
  font-size: 42px; /* كان 55 */
  line-height: 1.2;
}

.hero span {
  color: orange;
}

.hero p {
  color: #aaa;
  margin-top: 10px;
  font-size: 14px;
}

/* BUTTONS */
.hero-buttons {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: bold;
  font-size: 14px;
  transition: 0.3s;
}

/* زر رئيسي */
.btn.primary {
  background: linear-gradient(45deg, orange, #ffb347);
  color: black;
}

.btn.primary:hover {
  transform: scale(1.05);
}

/* زر الدعم */
.btn.secondary {
  border: 1px solid orange;
  color: white;
  background: transparent;
}

.btn.secondary small {
  color: #888;
  font-size: 10px;
}

.btn.secondary:hover {
  background: rgba(255,165,0,0.1);
}

/* FEATURES */
.features {
  margin-top: 30px;
  display: flex;
  gap: 12px;
  flex-wrap: nowrap;
}

.feature {
  display: flex;
  gap: 8px;
  align-items: center;
  background: #111;
  padding: 8px 12px;
  border-radius: 25px;
  border: 1px solid #222;
  transition: 0.3s;
  min-width: 130px;
}

.feature:hover {
  border: 1px solid orange;
  transform: translateY(-3px);
}

.feature img {
  width: 18px;
}

.feature strong {
  font-size: 12px;
}

.feature small {
  font-size: 10px;
  color: #888;
}

/* HERO IMAGE */
.hero-right {
  position: relative;
}

.hero-img {
  width: 420px; /* أصغر */
  filter: drop-shadow(0 0 35px orange);
}

/* PUMP BOX */
.pump-box {
  position: absolute;
  bottom: -5px;
  right: 0;
  background: #111;
  padding: 15px;
  border-radius: 12px;
  border: 1px solid #222;
  font-size: 13px;
}

/* STATS */
/* STATS */
.stats {
  display: flex;
  justify-content: space-between;
  gap: 15px;
  margin: 20px 40px;
}

/* كل كارد */
.stat {
  flex: 1;
  background: #111;
  padding: 20px;
  border-radius: 12px;
  text-align: center;
  border: 1px solid #222;
  transition: 0.3s;
}

/* hover */
.stat:hover {
  border: 1px solid orange;
  transform: translateY(-5px);
}

/* الرقم */
.stat {
  font-size: 22px;
  font-weight: bold;
}

/* النص */
.stat span {
  display: block;
  font-size: 11px;
  color: #888;
  margin-top: 5px;
}

.stat {
  text-align: center;
  font-size: 22px;
}

.stat span {
  font-size: 11px;
  color: #888;
}
.stat img {
  width: 30px;
  margin-bottom: 10px;
}

/* SECTION */
.section {
  padding: 60px;
  text-align: center;
}

.dark {
  background: #111;
}

/* STEPS */
.steps {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  margin-top: 30px;
}

.step {
  background: #1a1a1a;
  padding: 15px;
  border-radius: 10px;
  width: 130px;
}

.step img {
  width: 35px;
}

.arrow {
  font-size: 24px;
  color: orange;
}




.steps {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 25px;
  margin-top: 40px;
}

.step {
  text-align: center;
  width: 180px;
}

/* الدوائر */
.circle {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 15px;
  border: 2px solid;
}

.circle img {
  width: 28px;
}

/* ألوان */
.orange { border-color: orange; }
.green { border-color: #00ff88; }
.blue { border-color: #00c3ff; }
.red { border-color: #ff4d4d; }

/* النص */
.step h4 {
  font-size: 13px;
  margin-bottom: 5px;
}

.step p {
  font-size: 11px;
  color: #aaa;
}

/* الأسهم */
.arrow {
  font-size: 22px;
  color: #555;
}


.about-how {
  display: flex;
  gap: 50px;
  padding: 80px;
  background: radial-gradient(circle at top right, #111, #000);
}

/* LEFT */
.about-left {
  width: 35%;
}

.about-left h3 {
  font-size: 18px;
  margin-bottom: 20px;
  position: relative;
}

.about-left h3::before {
  content: "";
  width: 25px;
  height: 3px;
  background: orange;
  position: absolute;
  left: -35px;
  top: 8px;
}

.about-left p {
  color: #aaa;
  font-size: 14px;
  line-height: 1.7;
}

/* VIP BOX 🔥 */
.vip-box {
  margin-top: 25px;
  background: rgba(255,165,0,0.08);
  border: 1px solid rgba(255,165,0,0.4);
  padding: 18px;
  border-radius: 14px;
  display: flex;
  gap: 12px;
  align-items: center;
  backdrop-filter: blur(8px);
  transition: 0.3s;
}

.vip-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 25px rgba(255,165,0,0.3);
}

.vip-box img {
  width: 28px;
}

.vip-box strong {
  color: orange;
  font-size: 14px;
}

.vip-box small {
  display: block;
  color: #ccc;
  font-size: 12px;
}

/* RIGHT */
.about-right {
  width: 65%;
  background: rgba(255,255,255,0.02);
  border: 1px solid #222;
  padding: 30px;
  border-radius: 20px;
} 

.about-page {
  padding: 80px;
}

.about-page h1 {
  text-align: center;
  margin-bottom: 50px;
  font-size: 32px;
}

/* CARD 🔥 */
.about-box {
  background: rgba(255,255,255,0.02);
  padding: 25px;
  border-radius: 16px;
  margin-bottom: 25px;
  border: 1px solid #222;
  position: relative;
  overflow: hidden;
  transition: 0.3s;
}

/* glow effect */
.about-box::before {
  content: "";
  position: absolute;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255,165,0,0.2), transparent);
  top: -50%;
  left: -50%;
  opacity: 0;
  transition: 0.5s;
}

.about-box:hover::before {
  opacity: 1;
}

.about-box:hover {
  transform: translateY(-5px);
  border-color: orange;
  box-shadow: 0 0 30px rgba(255,165,0,0.15);
}

.about-box h3 {
  color: orange;
  margin-bottom: 10px;
  font-size: 16px;
}

.about-box p {
  color: #aaa;
  font-size: 14px;
  line-height: 1.7;
}  

.how-page {
  padding: 80px;
}

.how-page h1 {
  text-align: center;
  margin-bottom: 50px;
  font-size: 32px;
}

/* BOX */
.how-box {
  background: rgba(255,255,255,0.02);
  padding: 25px;
  border-radius: 16px;
  margin-bottom: 25px;
  border: 1px solid #222;
  transition: 0.3s;
  position: relative;
}

.how-box:hover {
  transform: translateY(-5px) scale(1.01);
  border-color: orange;
  box-shadow: 0 0 25px rgba(255,165,0,0.15);
}

/* title */
.how-box h3 {
  color: orange;
  margin-bottom: 10px;
  font-size: 16px;
}

/* text */
.how-box p {
  color: #aaa;
  font-size: 14px;
  line-height: 1.7;
}

/* list */
.how-box ul {
  color: #ccc;
  padding-left: 20px;
}

/* step highlight */
.how-box h3::after {
  content: "";
  display: block;
  width: 40px;
  height: 2px;
  background: orange;
  margin-top: 5px;
}

/* ================= MOBILE ================= */
@media (max-width: 768px) {

  /* NAV */
  nav {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

  .nav-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }

  /* HERO */
  .hero {
    flex-direction: column;
    text-align: center;
    padding: 30px 20px;
  }

  .hero-right {
    margin-top: 30px;
  }

  .hero-img {
    width: 90%;
    max-width: 100%;
  }

  /* FEATURES */
  .features {
    flex-wrap: wrap;
    justify-content: center;
  }

  /* STATS */
  .stats {
    flex-wrap: wrap;
    justify-content: center;
  }

  .stat {
    flex: 1 1 45%;
  }

  /* ABOUT + HOW SECTION */
  .about-how {
    flex-direction: column;
    padding: 40px 20px;
  }

  .about-left,
  .about-right {
    width: 100%;
  }

  .about-right {
    overflow: hidden;
  }

  /* STEPS 🔥 FIX النهائي */
  .steps {
    flex-direction: column;
    align-items: center;
    gap: 25px;
  }

  .step {
    width: 100%;
    max-width: 260px;
    margin: 0 auto;
  }

  /* ❌ إخفاء الأسهم بالموبايل */
  .arrow {
    display: none !important;
  }

  /* PAGES */
  .about-page,
  .how-page {
    padding: 40px 20px;
  }

}


/* ================= SMALL MOBILE ================= */
@media (max-width: 480px) {

  .hero h1 {
    font-size: 28px;
  }

  .hero p {
    font-size: 13px;
  }

  .stat {
    flex: 1 1 100%;
  }

  .step {
    width: 100%;
    max-width: 100%;
  }

}


/* ================= GLOBAL FIXES ================= */

/* 🔥 يمنع أي عنصر يطلع برا الشاشة */
body {
  overflow-x: hidden;
}

/* الصور */
img {
  max-width: 100%;
  height: auto;
}

/* مهم جدًا */
.steps {
  flex-wrap: wrap;
  justify-content: center;
}

/* يمنع overflow */
.about-right {
  max-width: 100%;
}

/* تحسين توزيع الكروت */
.step {
  display: flex;
  flex-direction: column;
  align-items: center;
}