:root {
  --gold: #ffd700;
  --gold-light: #ffe44d;
  --gold-dark: #b8941f;
  --dark: #0a0c14;
  --dark-soft: #1a1d2e;
  --card: #222639;
  --card-hover: #2a2f47;
  --text: #f0f2f5;
  --text-secondary: #a0a7c2;
  --accent: #6c63ff;
  --accent-light: #8a84ff;
  --gradient-primary: linear-gradient(135deg, #0a0c14 0%, #1a1d2e 100%);
  --gradient-gold: linear-gradient(
    135deg,
    var(--gold) 0%,
    var(--gold-dark) 100%
  );
  --gradient-card: linear-gradient(145deg, #222639 0%, #1a1d2e 100%);
  --shadow-glow: 0 0 40px rgba(255, 215, 0, 0.15);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Inter", "Segoe UI", system-ui, sans-serif;
}

body {
  background: var(--gradient-primary);
  color: var(--text);
  min-height: 100vh;
  overflow-x: hidden;
}

/* تلميحات حركية */
::selection {
  background: rgba(255, 215, 0, 0.3);
  color: white;
}

/* HERO - محسنة مع تأثيرات */
.hero {
  text-align: center;
  padding: 150px 20px 120px;
  background:
    radial-gradient(
      circle at 20% 30%,
      rgba(255, 215, 0, 0.1) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 70%,
      rgba(108, 99, 255, 0.08) 0%,
      transparent 50%
    ),
    linear-gradient(135deg, #0a0c14 0%, #1a1d2e 100%);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23ffd700' fill-opacity='0.03' fill-rule='evenodd'/%3E%3C/svg%3E");
  animation: float 20s linear infinite;
}

@keyframes float {
  0% {
    transform: translateY(0) translateX(0);
  }
  100% {
    transform: translateY(-100px) translateX(100px);
  }
}

.hero h1 {
  font-size: clamp(48px, 7vw, 72px);
  color: var(--gold);
  margin-bottom: 20px;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 2px 10px rgba(255, 215, 0, 0.3);
  position: relative;
  display: inline-block;
}

.hero h1::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 3px;
  background: var(--gradient-gold);
  border-radius: 2px;
}

.hero p {
  margin: 25px auto 40px;
  font-size: 20px;
  max-width: 600px;
  line-height: 1.6;
  color: var(--text-secondary);
}

.cta {
  background: var(--gradient-gold);
  color: #000;
  padding: 16px 42px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 18px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
  z-index: 1;
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.3);
}

.cta::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.4),
    transparent
  );
  transition: left 0.7s;
  z-index: -1;
}

.cta:hover::before {
  left: 100%;
}

.cta:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 15px 35px rgba(255, 215, 0, 0.4);
}

/* SECTIONS */
.section {
  max-width: 1200px;
  margin: auto;
  padding: 100px 20px;
  position: relative;
}

.section h2 {
  text-align: center;
  margin-bottom: 60px;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 800;
  position: relative;
  display: inline-block;
  left: 50%;
  transform: translateX(-50%);
}

.section h2::before {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--gradient-gold);
  border-radius: 2px;
}

/* FEATURES GRID - محسنة */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin: 0 auto;
}

/* بطاقات الميزات - محسنة */
.feature-card {
  background: var(--gradient-card);
  border-radius: 20px;
  padding: 35px 30px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  min-height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transform: translateY(40px) rotateX(10deg);
  position: relative;
  overflow: hidden;
  box-shadow:
    0 10px 30px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.6s ease;
}

.feature-card::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 300px;
  height: 300px;
  background: radial-gradient(
    circle,
    rgba(255, 215, 0, 0.1) 0%,
    transparent 70%
  );
  transform: translate(-50%, -50%) scale(0);
  transition: transform 0.6s ease;
  border-radius: 50%;
  z-index: 0;
}

/* أيقونات البطاقات */
.feature-card .icon-wrapper {
  width: 80px;
  height: 80px;
  background: rgba(255, 215, 0, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  position: relative;
  z-index: 1;
  transition: all 0.4s ease;
}

.feature-card .icon-wrapper::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: var(--gradient-gold);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.feature-card .icon {
  font-size: 36px;
  color: var(--gold);
  position: relative;
  z-index: 2;
  transition: all 0.4s ease;
}

/* النصوص */
.feature-card h3 {
  color: var(--text);
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 15px;
  line-height: 1.3;
  position: relative;
  z-index: 1;
}

.feature-card p {
  color: var(--text-secondary);
  font-size: 16px;
  line-height: 1.6;
  margin: 0;
  position: relative;
  z-index: 1;
}

/* تأثيرات الظهور */
.feature-card.visible {
  opacity: 1;
  transform: translateY(0) rotateX(0);
}

/* تأثيرات hover */
.feature-card:hover {
  transform: translateY(-15px) scale(1.02);
  border-color: rgba(255, 215, 0, 0.3);
  box-shadow:
    0 25px 50px rgba(0, 0, 0, 0.4),
    0 0 0 1px rgba(255, 215, 0, 0.2),
    var(--shadow-glow);
}

.feature-card:hover::before {
  transform: scaleX(1);
}

.feature-card:hover::after {
  transform: translate(-50%, -50%) scale(1);
}

.feature-card:hover .icon-wrapper {
  background: transparent;
  transform: scale(1.1) rotate(10deg);
}

.feature-card:hover .icon-wrapper::before {
  opacity: 1;
}

.feature-card:hover .icon {
  color: #000;
  transform: scale(1.1);
}

/* SUPPORT - محسنة */
.support-box {
  background: var(--gradient-card);
  padding: 50px;
  border-radius: 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 215, 0, 0.1);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.support-box::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: conic-gradient(
    transparent,
    rgba(255, 215, 0, 0.1),
    transparent 30%
  );
  animation: rotate 4s linear infinite;
}

@keyframes rotate {
  100% {
    transform: rotate(360deg);
  }
}

.support-box .content {
  position: relative;
  z-index: 1;
  background: rgba(10, 12, 20, 0.8);
  padding: 30px;
  border-radius: 16px;
  backdrop-filter: blur(10px);
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 25px;
  background: var(--gradient-gold);
  color: #000;
  padding: 16px 40px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 17px;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
  z-index: 1;
  border: none;
  cursor: pointer;
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.3);
}

.btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.4),
    transparent
  );
  transition: left 0.7s;
  z-index: -1;
}

.btn:hover::before {
  left: 100%;
}

.btn:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 15px 35px rgba(255, 215, 0, 0.4);
}

/* FOOTER - محسنة */
.footer {
  text-align: center;
  padding: 40px 20px;
  color: var(--text-secondary);
  background: rgba(10, 12, 20, 0.9);
  border-top: 1px solid rgba(255, 215, 0, 0.1);
  position: relative;
}

.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 3px;
  background: var(--gradient-gold);
  border-radius: 2px;
}

/* BOT LOGO - محسنة */
.bot-logo {
  width: 140px;
  height: 140px;
  margin-bottom: 25px;
  border-radius: 50%;
  position: relative;
  animation: floatLogo 6s ease-in-out infinite;
  box-shadow:
    0 0 50px rgba(255, 215, 0, 0.4),
    inset 0 0 20px rgba(255, 255, 255, 0.1);
  border: 3px solid rgba(255, 215, 0, 0.3);
}

@keyframes floatLogo {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(5deg);
  }
}

.bot-logo::after {
  content: "";
  position: absolute;
  top: -10px;
  left: -10px;
  right: -10px;
  bottom: -10px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(255, 215, 0, 0.2) 0%,
    transparent 70%
  );
  z-index: -1;
  animation: pulseLogo 2s ease-in-out infinite;
}

@keyframes pulseLogo {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.5;
  }
  50% {
    transform: scale(1.1);
    opacity: 0.8;
  }
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .features-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .feature-card {
    min-height: 250px;
    padding: 30px 25px;
  }

  .hero {
    padding: 120px 20px 90px;
  }

  .section {
    padding: 80px 20px;
  }

  .support-box {
    padding: 30px;
  }

  .support-box .content {
    padding: 25px;
  }
}

@media (max-width: 600px) {
  .bot-logo {
    width: 100px;
    height: 100px;
  }

  .navbar a {
    margin: 0 12px;
    padding: 6px 12px;
    font-size: 14px;
  }

  .cta,
  .btn {
    padding: 14px 32px;
    font-size: 16px;
  }

  .feature-card h3 {
    font-size: 20px;
  }

  .feature-card p {
    font-size: 15px;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: clamp(36px, 10vw, 42px);
  }

  .hero p {
    font-size: 17px;
  }

  .section h2 {
    font-size: clamp(28px, 8vw, 32px);
  }

  .feature-card .icon-wrapper {
    width: 70px;
    height: 70px;
  }

  .feature-card .icon {
    font-size: 32px;
  }
}
/* قسم بوتات أخرى لنا - محسن */
.section-subtitle {
  text-align: center;
  color: var(--text-secondary);
  font-size: 18px;
  margin-bottom: 50px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.other-bots-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  max-width: 900px;
  margin: 0 auto 60px;
}

.other-bot-card {
  background: linear-gradient(145deg, #222639 0%, #1a1d2e 100%);
  border-radius: 28px;
  padding: 40px;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 1px solid rgba(255, 215, 0, 0.1);
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateY(30px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
  gap: 40px;
}

.other-bot-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.other-bot-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #00ff88, var(--accent), var(--gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.8s ease;
}

.other-bot-card:hover::before {
  transform: scaleX(1);
}

.other-bot-card:hover {
  transform: translateY(-10px) scale(1.01);
  border-color: rgba(255, 215, 0, 0.3);
  box-shadow:
    0 25px 60px rgba(0, 0, 0, 0.5),
    0 0 0 1px rgba(255, 215, 0, 0.2),
    0 0 50px rgba(108, 99, 255, 0.2);
}

/* صورة البوت */
.bot-image-container {
  position: relative;
  width: 180px;
  height: 180px;
  flex-shrink: 0;
}

.other-bot-image {
  width: 100%;
  height: 100%;
  border-radius: 24px;
  object-fit: cover;
  border: 4px solid rgba(255, 215, 0, 0.2);
  transition: all 0.5s ease;
  background: linear-gradient(135deg, #1a1d2e 0%, #2a2f47 100%);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.other-bot-card:hover .other-bot-image {
  transform: scale(1.05) rotate(3deg);
  border-color: rgba(255, 215, 0, 0.4);
  box-shadow:
    0 15px 40px rgba(255, 215, 0, 0.3),
    0 0 30px rgba(108, 99, 255, 0.2);
}

.bot-status-indicator {
  position: absolute;
  bottom: 15px;
  right: 15px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 3px solid var(--dark);
  z-index: 2;
}

.bot-status-indicator.online {
  background: #00ff88;
  box-shadow: 0 0 15px #00ff88;
  animation: pulseOnline 2s infinite;
}

@keyframes pulseOnline {
  0%,
  100% {
    box-shadow: 0 0 15px #00ff88;
  }
  50% {
    box-shadow: 0 0 25px #00ff88;
  }
}

/* معلومات البوت */
.bot-info {
  text-align: left;
  flex: 1;
}

.bot-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.bot-header h3 {
  color: var(--text);
  font-size: 32px;
  font-weight: 800;
  margin: 0;
  background: linear-gradient(135deg, var(--gold) 0%, var(--accent) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.bot-tag {
  padding: 8px 18px;
  border-radius: 25px;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.bot-tag.premium {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: #000;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.bot-tag.ai {
  background: linear-gradient(135deg, var(--accent) 0%, #8a2be2 100%);
  color: white;
  box-shadow: 0 4px 15px rgba(108, 99, 255, 0.3);
}

.bot-description {
  color: var(--text-secondary);
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 25px;
  padding: 20px;
  background: rgba(10, 12, 20, 0.4);
  border-radius: 15px;
  border-left: 4px solid var(--accent);
}

/* ميزات البوت */
.bot-features {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 30px;
}

.bot-feature {
  background: linear-gradient(
    135deg,
    rgba(108, 99, 255, 0.1) 0%,
    rgba(255, 215, 0, 0.1) 100%
  );
  padding: 10px 20px;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  border: 1px solid rgba(108, 99, 255, 0.2);
  transition: all 0.3s ease;
}

.other-bot-card:hover .bot-feature {
  background: linear-gradient(
    135deg,
    rgba(108, 99, 255, 0.2) 0%,
    rgba(255, 215, 0, 0.2) 100%
  );
  color: var(--gold-light);
  border-color: rgba(255, 215, 0, 0.4);
  transform: translateY(-3px);
}

/* إحصائيات البوت */
.bot-stats {
  display: flex;
  gap: 30px;
  margin-bottom: 30px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
}

.stat-value {
  font-size: 32px;
  font-weight: 800;
  background: linear-gradient(135deg, var(--gold) 0%, var(--accent) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 5px;
}

.stat-label {
  font-size: 14px;
  color: var(--text-secondary);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* أزرار البوت */
.bot-actions {
  display: flex;
  gap: 20px;
}

.bot-btn {
  padding: 16px 32px;
  border-radius: 15px;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: none;
  cursor: pointer;
  min-width: 180px;
  justify-content: center;
}

.bot-btn.primary {
  background: linear-gradient(135deg, var(--accent) 0%, #8a2be2 100%);
  color: white;
  box-shadow: 0 8px 25px rgba(108, 99, 255, 0.4);
}

.bot-btn.secondary {
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.1) 0%,
    rgba(255, 255, 255, 0.05) 100%
  );
  color: var(--text);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.bot-btn:hover {
  transform: translateY(-5px) scale(1.05);
}

.bot-btn.primary:hover {
  box-shadow:
    0 15px 35px rgba(108, 99, 255, 0.5),
    0 0 30px rgba(108, 99, 255, 0.3);
}

.bot-btn.secondary:hover {
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.15) 0%,
    rgba(255, 255, 255, 0.1) 100%
  );
  border-color: rgba(255, 215, 0, 0.4);
  box-shadow:
    0 15px 35px rgba(0, 0, 0, 0.3),
    0 0 20px rgba(255, 215, 0, 0.2);
}

.btn-icon {
  font-size: 18px;
}

/* قسم المميزات التفصيلية */
.detailed-features {
  margin-top: 80px;
  padding: 40px;
  background: linear-gradient(
    145deg,
    rgba(10, 12, 20, 0.8) 0%,
    rgba(26, 29, 46, 0.8) 100%
  );
  border-radius: 24px;
  border: 1px solid rgba(255, 215, 0, 0.1);
}

.detailed-features h3 {
  text-align: center;
  font-size: 32px;
  margin-bottom: 50px;
  color: var(--text);
  background: linear-gradient(135deg, var(--gold) 0%, var(--accent) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.detailed-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.detailed-feature {
  background: rgba(255, 255, 255, 0.03);
  padding: 30px;
  border-radius: 20px;
  text-align: center;
  transition: all 0.4s ease;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.detailed-feature:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(108, 99, 255, 0.3);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.detailed-icon {
  font-size: 48px;
  margin-bottom: 20px;
  display: inline-block;
  background: linear-gradient(135deg, var(--gold) 0%, var(--accent) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.detailed-feature h4 {
  color: var(--text);
  font-size: 20px;
  margin-bottom: 15px;
  font-weight: 700;
}

.detailed-feature p {
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 1.6;
}

/* تأثيرات متجاوبة */
@media (max-width: 992px) {
  .other-bot-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 30px;
  }

  .bot-info {
    text-align: center;
  }

  .bot-header {
    justify-content: center;
  }

  .bot-stats {
    justify-content: center;
  }

  .bot-actions {
    justify-content: center;
  }

  .detailed-features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .other-bot-card {
    padding: 30px 25px;
  }

  .bot-image-container {
    width: 150px;
    height: 150px;
  }

  .bot-header h3 {
    font-size: 28px;
  }

  .bot-description {
    font-size: 15px;
    padding: 15px;
  }

  .bot-stats {
    flex-direction: column;
    gap: 20px;
  }

  .bot-actions {
    flex-direction: column;
    gap: 15px;
  }

  .bot-btn {
    width: 100%;
  }

  .detailed-features {
    padding: 30px 20px;
  }

  .detailed-features-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .other-bot-card {
    padding: 25px 20px;
  }

  .bot-image-container {
    width: 120px;
    height: 120px;
  }

  .bot-header h3 {
    font-size: 24px;
  }

  .bot-tag {
    padding: 6px 12px;
    font-size: 11px;
  }

  .bot-description {
    font-size: 14px;
  }

  .bot-features {
    gap: 8px;
  }

  .bot-feature {
    font-size: 12px;
    padding: 8px 15px;
  }

  .stat-value {
    font-size: 28px;
  }

  .detailed-features h3 {
    font-size: 28px;
  }
}
/* تحسينات Responsive الشاملة */
:root {
  --gold: #ffd700;
  --gold-light: #ffe44d;
  --gold-dark: #b8941f;
  --dark: #0a0c14;
  --dark-soft: #1a1d2e;
  --card: #222639;
  --card-hover: #2a2f47;
  --text: #f0f2f5;
  --text-secondary: #a0a7c2;
  --accent: #6c63ff;
  --accent-light: #8a84ff;
  --gradient-primary: linear-gradient(135deg, #0a0c14 0%, #1a1d2e 100%);
  --gradient-gold: linear-gradient(
    135deg,
    var(--gold) 0%,
    var(--gold-dark) 100%
  );
  --gradient-card: linear-gradient(145deg, #222639 0%, #1a1d2e 100%);
  --shadow-glow: 0 0 40px rgba(255, 215, 0, 0.15);

  /* أحجام متغيرة حسب الشاشة */
  --section-padding: clamp(60px, 8vw, 100px);
  --card-padding: clamp(20px, 3vw, 40px);
  --heading-size: clamp(28px, 5vw, 48px);
  --subheading-size: clamp(20px, 3vw, 32px);
  --body-size: clamp(14px, 2vw, 16px);
  --small-size: clamp(12px, 1.5vw, 14px);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Inter", "Segoe UI", system-ui, sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--gradient-primary);
  color: var(--text);
  min-height: 100vh;
  overflow-x: hidden;
  font-size: var(--body-size);
}

/* ============ HERO SECTION ============ */
.hero {
  text-align: center;
  padding: clamp(80px, 15vh, 150px) 20px;
  background:
    radial-gradient(
      circle at 20% 30%,
      rgba(255, 215, 0, 0.1) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 70%,
      rgba(108, 99, 255, 0.08) 0%,
      transparent 50%
    ),
    linear-gradient(135deg, #0a0c14 0%, #1a1d2e 100%);
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.bot-logo {
  width: clamp(80px, 20vw, 140px);
  height: clamp(80px, 20vw, 140px);
  margin-bottom: clamp(15px, 3vw, 25px);
  border-radius: 50%;
  position: relative;
  animation: floatLogo 6s ease-in-out infinite;
  box-shadow:
    0 0 30px rgba(255, 215, 0, 0.4),
    inset 0 0 20px rgba(255, 255, 255, 0.1);
  border: clamp(2px, 0.3vw, 3px) solid rgba(255, 215, 0, 0.3);
}

.hero h1 {
  font-size: clamp(36px, 8vw, 72px);
  color: var(--gold);
  margin-bottom: clamp(15px, 2vw, 20px);
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 2px 10px rgba(255, 215, 0, 0.3);
  line-height: 1.1;
  max-width: 90%;
}

.hero p {
  margin: 0 auto clamp(25px, 4vw, 40px);
  font-size: clamp(16px, 2.5vw, 20px);
  max-width: min(90%, 600px);
  line-height: 1.6;
  color: var(--text-secondary);
}

.cta {
  background: var(--gradient-gold);
  color: #000;
  padding: clamp(12px, 2vw, 16px) clamp(30px, 4vw, 42px);
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: clamp(16px, 2vw, 18px);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
  z-index: 1;
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.3);
}

/* ============ NAVBAR ============ */
.navbar {
  background: rgba(10, 12, 20, 0.95);
  backdrop-filter: blur(15px) saturate(180%);
  -webkit-backdrop-filter: blur(15px) saturate(180%);
  text-align: center;
  padding: clamp(12px, 2vw, 18px);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(255, 215, 0, 0.1);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.navbar a {
  color: var(--text);
  margin: 0 clamp(8px, 2vw, 24px);
  text-decoration: none;
  font-weight: 600;
  font-size: clamp(14px, 1.8vw, 16px);
  padding: clamp(6px, 1vw, 8px) clamp(12px, 2vw, 16px);
  border-radius: 8px;
  transition: all 0.3s ease;
  position: relative;
  white-space: nowrap;
}

/* ============ SECTIONS ============ */
.section {
  max-width: min(1200px, 95vw);
  margin: auto;
  padding: var(--section-padding) clamp(15px, 3vw, 20px);
  position: relative;
}

.section h2 {
  text-align: center;
  margin-bottom: clamp(30px, 5vw, 60px);
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-size: var(--heading-size);
  font-weight: 800;
  position: relative;
  display: inline-block;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
}

/* ============ FEATURES SECTION ============ */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr));
  gap: clamp(20px, 3vw, 30px);
  margin: 0 auto;
  padding: 0 clamp(10px, 2vw, 20px);
}

.feature-card {
  background: var(--gradient-card);
  border-radius: clamp(16px, 2vw, 20px);
  padding: clamp(25px, 3vw, 35px) clamp(20px, 2.5vw, 30px);
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  min-height: clamp(200px, 25vw, 280px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transform: translateY(40px) rotateX(10deg);
  position: relative;
  overflow: hidden;
}

.feature-card .icon-wrapper {
  width: clamp(60px, 10vw, 80px);
  height: clamp(60px, 10vw, 80px);
  margin-bottom: clamp(15px, 2vw, 25px);
}

.feature-card .icon {
  font-size: clamp(28px, 4vw, 36px);
}

.feature-card h3 {
  color: var(--text);
  font-size: clamp(18px, 2.5vw, 22px);
  font-weight: 700;
  margin-bottom: clamp(10px, 1.5vw, 15px);
  line-height: 1.3;
}

.feature-card p {
  color: var(--text-secondary);
  font-size: clamp(14px, 1.8vw, 16px);
  line-height: 1.6;
  margin: 0;
}

/* ============ OTHER BOTS SECTION ============ */
.section-subtitle {
  text-align: center;
  color: var(--text-secondary);
  font-size: clamp(16px, 2.5vw, 18px);
  margin-bottom: clamp(30px, 5vw, 50px);
  max-width: min(90%, 700px);
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
  padding: 0 clamp(10px, 2vw, 20px);
}

.other-bots-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(25px, 4vw, 40px);
  max-width: min(900px, 95vw);
  margin: 0 auto clamp(40px, 6vw, 60px);
}

.other-bot-card {
  background: linear-gradient(145deg, #222639 0%, #1a1d2e 100%);
  border-radius: clamp(20px, 3vw, 28px);
  padding: clamp(25px, 4vw, 40px);
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 1px solid rgba(255, 215, 0, 0.1);
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateY(30px);
  gap: clamp(25px, 4vw, 40px);
}

/* صورة البوت */
.bot-image-container {
  position: relative;
  width: clamp(120px, 25vw, 180px);
  height: clamp(120px, 25vw, 180px);
  flex-shrink: 0;
}

.other-bot-image {
  width: 100%;
  height: 100%;
  border-radius: clamp(16px, 2vw, 24px);
  object-fit: cover;
  border: clamp(3px, 0.5vw, 4px) solid rgba(255, 215, 0, 0.2);
  transition: all 0.5s ease;
  background: linear-gradient(135deg, #1a1d2e 0%, #2a2f47 100%);
}

/* معلومات البوت */
.bot-info {
  text-align: center;
  width: 100%;
}

.bot-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(8px, 1.5vw, 15px);
  margin-bottom: clamp(15px, 2vw, 20px);
  flex-wrap: wrap;
}

.bot-header h3 {
  color: var(--text);
  font-size: clamp(24px, 4vw, 32px);
  font-weight: 800;
  margin: 0;
  background: linear-gradient(135deg, var(--gold) 0%, var(--accent) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.bot-tag {
  padding: clamp(6px, 1vw, 8px) clamp(12px, 2vw, 18px);
  border-radius: 25px;
  font-size: clamp(11px, 1.5vw, 13px);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.bot-description {
  color: var(--text-secondary);
  font-size: clamp(14px, 2vw, 16px);
  line-height: 1.7;
  margin-bottom: clamp(20px, 3vw, 25px);
  padding: clamp(15px, 3vw, 20px);
  background: rgba(10, 12, 20, 0.4);
  border-radius: clamp(12px, 2vw, 15px);
  border-left: 4px solid var(--accent);
}

/* ميزات البوت */
.bot-features {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(8px, 1.5vw, 12px);
  margin-bottom: clamp(20px, 3vw, 30px);
  justify-content: center;
}

.bot-feature {
  background: linear-gradient(
    135deg,
    rgba(108, 99, 255, 0.1) 0%,
    rgba(255, 215, 0, 0.1) 100%
  );
  padding: clamp(8px, 1.5vw, 10px) clamp(15px, 2.5vw, 20px);
  border-radius: 25px;
  font-size: clamp(12px, 1.8vw, 14px);
  font-weight: 600;
  color: var(--text);
  border: 1px solid rgba(108, 99, 255, 0.2);
  transition: all 0.3s ease;
}

/* إحصائيات البوت */
.bot-stats {
  display: flex;
  gap: clamp(15px, 3vw, 30px);
  margin-bottom: clamp(20px, 3vw, 30px);
  padding: clamp(15px, 3vw, 20px);
  background: rgba(255, 255, 255, 0.03);
  border-radius: clamp(12px, 2vw, 15px);
  border: 1px solid rgba(255, 255, 255, 0.05);
  flex-wrap: wrap;
  justify-content: center;
}

.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
  min-width: 80px;
}

.stat-value {
  font-size: clamp(24px, 4vw, 32px);
  font-weight: 800;
  background: linear-gradient(135deg, var(--gold) 0%, var(--accent) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 5px;
}

.stat-label {
  font-size: clamp(12px, 1.8vw, 14px);
  color: var(--text-secondary);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-align: center;
}

/* أزرار البوت */
.bot-actions {
  display: flex;
  gap: clamp(15px, 2vw, 20px);
  justify-content: center;
  flex-wrap: wrap;
}

.bot-btn {
  padding: clamp(14px, 2vw, 16px) clamp(24px, 3vw, 32px);
  border-radius: clamp(12px, 2vw, 15px);
  font-weight: 700;
  font-size: clamp(14px, 2vw, 15px);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: clamp(8px, 1.5vw, 10px);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: none;
  cursor: pointer;
  min-width: min(180px, 100%);
  justify-content: center;
}

/* قسم المميزات التفصيلية */
.detailed-features {
  margin-top: clamp(40px, 6vw, 80px);
  padding: clamp(25px, 4vw, 40px);
  background: linear-gradient(
    145deg,
    rgba(10, 12, 20, 0.8) 0%,
    rgba(26, 29, 46, 0.8) 100%
  );
  border-radius: clamp(20px, 3vw, 24px);
  border: 1px solid rgba(255, 215, 0, 0.1);
}

.detailed-features h3 {
  text-align: center;
  font-size: clamp(24px, 4vw, 32px);
  margin-bottom: clamp(30px, 5vw, 50px);
  color: var(--text);
  background: linear-gradient(135deg, var(--gold) 0%, var(--accent) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.detailed-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(250px, 100%), 1fr));
  gap: clamp(20px, 3vw, 30px);
}

.detailed-feature {
  background: rgba(255, 255, 255, 0.03);
  padding: clamp(20px, 3vw, 30px);
  border-radius: clamp(16px, 2vw, 20px);
  text-align: center;
  transition: all 0.4s ease;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.detailed-icon {
  font-size: clamp(36px, 6vw, 48px);
  margin-bottom: clamp(15px, 2vw, 20px);
  display: inline-block;
  background: linear-gradient(135deg, var(--gold) 0%, var(--accent) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.detailed-feature h4 {
  color: var(--text);
  font-size: clamp(18px, 3vw, 20px);
  margin-bottom: clamp(10px, 1.5vw, 15px);
  font-weight: 700;
}

.detailed-feature p {
  color: var(--text-secondary);
  font-size: clamp(13px, 1.8vw, 15px);
  line-height: 1.6;
}

/* ============ SUPPORT SECTION ============ */
.support-box {
  background: var(--gradient-card);
  padding: clamp(30px, 5vw, 50px);
  border-radius: clamp(20px, 3vw, 24px);
  text-align: center;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 215, 0, 0.1);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.support-box .content {
  position: relative;
  z-index: 1;
  background: rgba(10, 12, 20, 0.8);
  padding: clamp(20px, 3vw, 30px);
  border-radius: clamp(12px, 2vw, 16px);
  backdrop-filter: blur(10px);
}

.support-box p {
  color: var(--text-secondary);
  font-size: clamp(16px, 2.5vw, 18px);
  margin-bottom: clamp(15px, 2vw, 20px);
  line-height: 1.6;
}

/* ============ FOOTER ============ */
.footer {
  text-align: center;
  padding: clamp(20px, 4vw, 40px) clamp(15px, 3vw, 20px);
  color: var(--text-secondary);
  background: rgba(10, 12, 20, 0.9);
  border-top: 1px solid rgba(255, 215, 0, 0.1);
  position: relative;
}

.footer p {
  font-size: clamp(14px, 2vw, 16px);
  margin: clamp(5px, 1vw, 10px) 0;
  line-height: 1.6;
}

/* ============ MEDIA QUERIES ============ */

/* شاشات متوسطة (تابلت) */
@media (min-width: 768px) {
  .other-bot-card {
    flex-direction: row;
    align-items: flex-start;
    text-align: left;
  }

  .bot-info {
    text-align: left;
  }

  .bot-header {
    justify-content: flex-start;
  }

  .bot-features {
    justify-content: flex-start;
  }

  .bot-actions {
    justify-content: flex-start;
  }

  .bot-stats {
    justify-content: space-between;
  }

  .detailed-features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* شاشات كبيرة (لابتوب) */
@media (min-width: 992px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .other-bots-grid {
    grid-template-columns: 1fr;
  }

  .detailed-features-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .bot-stats {
    flex-wrap: nowrap;
  }
}

/* شاشات كبيرة جداً (ديسكتوب) */
@media (min-width: 1200px) {
  .features-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* شاشات صغيرة جداً (موبايل) */
@media (max-width: 480px) {
  .navbar a {
    margin: 0 6px;
    font-size: 13px;
    padding: 6px 10px;
  }

  .hero h1 {
    font-size: clamp(28px, 10vw, 36px);
  }

  .hero p {
    font-size: clamp(14px, 4vw, 16px);
  }

  .section h2 {
    font-size: clamp(24px, 8vw, 28px);
  }

  .bot-header {
    flex-direction: column;
    align-items: center;
    gap: 8px;
  }

  .bot-header h3 {
    text-align: center;
  }

  .bot-description {
    text-align: center;
  }

  .bot-features {
    justify-content: center;
  }

  .bot-stats {
    flex-direction: column;
    align-items: center;
  }

  .stat {
    width: 100%;
    margin-bottom: 15px;
  }

  .bot-actions {
    flex-direction: column;
    width: 100%;
  }

  .bot-btn {
    width: 100%;
  }

  .detailed-features-grid {
    grid-template-columns: 1fr;
  }
}

/* تعديلات للأجهزة بالوضع الأفقي */
@media (max-height: 600px) and (orientation: landscape) {
  .hero {
    min-height: auto;
    padding: 60px 20px;
  }

  .bot-logo {
    width: 80px;
    height: 80px;
  }

  .hero h1 {
    font-size: 32px;
  }

  .hero p {
    font-size: 16px;
    margin-bottom: 20px;
  }
}

/* تحسينات للشاشات عالية الدقة */
@media (min-width: 1600px) {
  .section {
    max-width: 1400px;
  }

  .features-grid {
    gap: 40px;
  }

  .feature-card {
    min-height: 300px;
  }
}

/* تحسينات للطباعة */
@media print {
  .navbar,
  .cta,
  .btn,
  .bot-btn {
    display: none !important;
  }

  body {
    background: white !important;
    color: black !important;
  }

  .section {
    padding: 20px !important;
    page-break-inside: avoid;
  }
}

/* دعم الأجهزة التي لا تحبذ الحركات */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* تحسينات للوضع الداكن */
@media (prefers-color-scheme: dark) {
  :root {
    --text: #f0f2f5;
    --text-secondary: #a0a7c2;
  }
}

/* تحسينات للوضع الفاتح */
@media (prefers-color-scheme: light) {
  :root {
    --dark: #f0f2f5;
    --dark-soft: #e0e5f0;
    --card: #ffffff;
    --text: #0a0c14;
    --text-secondary: #4a5568;
  }

  body {
    background: linear-gradient(135deg, #f0f2f5 0%, #e0e5f0 100%);
  }

  .feature-card,
  .other-bot-card,
  .support-box,
  .detailed-feature {
    background: white;
    border-color: rgba(0, 0, 0, 0.1);
  }
}

/* ============ ANIMATIONS ============ */
@keyframes floatLogo {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(5deg);
  }
}

@keyframes pulseOnline {
  0%,
  100% {
    box-shadow: 0 0 15px #00ff88;
  }
  50% {
    box-shadow: 0 0 25px #00ff88;
  }
}
/* ============ منشور لاصدار التجريبي ============ */
.beta-note {
  width: 100%;
  text-align: center;
  font-size: 16px;
  color: #ffffff;
  background: #000000;
  padding: 12px 0;
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 9999;
  font-family: "Inter", sans-serif;
  font-weight: 600;
  box-shadow: 0 -2px 6px rgba(0, 0, 0, 0.3);
}
