/* ═══════════════════════════════════════════
   Tageed Shared Styles
   ═══════════════════════════════════════════ */

/* ─── Reset & Base ─── */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Cairo', system-ui, -apple-system, sans-serif;
  background: #0A0A0A;
  color: #fff;
  min-height: 100vh;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
::selection { background: rgba(255,87,34,0.3); color: #fff; }
a { color: inherit; }

/* ─── Navbar ─── */
.navbar {
  width: 100%;
  background: #1A1A1A;
  padding: 0 2rem;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.navbar .logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  color: #fff;
  font-size: 1.3rem;
  font-weight: 800;
}
.navbar .logo img { width: 34px; height: 34px; border-radius: 10px; }
.navbar .logo em { color: #FF5722; font-style: normal; }
.nav-links { display: flex; gap: 1.8rem; list-style: none; align-items: center; }
.nav-links a {
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 600;
  transition: color 0.3s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: #FF5722;
  transition: width 0.3s;
  border-radius: 2px;
}
.nav-links a:hover { color: #fff; }
.nav-links a:hover::after { width: 100%; }

/* ─── Buttons ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, #FF5722, #FF9800);
  color: #fff;
  padding: 0.9rem 2.5rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1rem;
  transition: transform 0.3s, box-shadow 0.3s;
  box-shadow: 0 4px 24px rgba(255,87,34,0.35);
}
.btn:hover { transform: translateY(-3px) scale(1.02); box-shadow: 0 8px 40px rgba(255,87,34,0.45); }
.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,0.15);
  padding: 0.8rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: border-color 0.3s, background 0.3s;
}
.btn-outline:hover { border-color: #FF5722; background: rgba(255,87,34,0.1); }
.play-badge { display: inline-block; margin-top: 1rem; }
.play-badge img { height: 48px; filter: drop-shadow(0 2px 8px rgba(0,0,0,0.4)); }

/* ─── Page Hero (for inner pages) ─── */
.page-hero {
  padding: 8rem 2rem 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 20% 30%, rgba(255,87,34,0.08) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 70%, rgba(255,152,0,0.05) 0%, transparent 50%),
    #0A0A0A;
}
.page-hero h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 900;
  color: #FF5722;
  margin-bottom: 0.5rem;
}
.page-hero p {
  color: rgba(255,255,255,0.4);
  font-size: 1rem;
}

/* ─── Sections ─── */
.container { width: 100%; max-width: 900px; margin: 0 auto; padding: 0 1.5rem; }
section { padding: 4rem 0; }
.section-title {
  text-align: center;
  font-size: clamp(1.5rem, 4vw, 2rem);
  margin-bottom: 0.8rem;
  font-weight: 800;
}
.section-title em { color: #FF5722; font-style: normal; }
.section-sub {
  text-align: center;
  color: rgba(255,255,255,0.4);
  margin-bottom: 3rem;
  font-size: 1rem;
}

/* ─── Content Card ─── */
.content-card {
  background: #1A1A1A;
  border-radius: 20px;
  padding: 2rem;
  border: 1px solid rgba(255,255,255,0.05);
  margin-bottom: 1.5rem;
  line-height: 1.9;
}
.content-card h2 {
  font-size: 1.15rem;
  font-weight: 800;
  color: #FF9800;
  margin-bottom: 0.8rem;
}
.content-card p { color: rgba(255,255,255,0.55); font-size: 0.95rem; }
.content-card ul { color: rgba(255,255,255,0.55); padding-right: 1.5rem; font-size: 0.95rem; }
.content-card ul li { margin-bottom: 0.4rem; }
.content-card a { color: #FF9800; text-decoration: none; }
.content-card a:hover { text-decoration: underline; }

/* ─── Features Grid ─── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.2rem;
}
.card {
  background: #1A1A1A;
  border-radius: 20px;
  padding: 2rem 1.5rem;
  border: 1px solid rgba(255,255,255,0.05);
  transition: transform 0.4s, box-shadow 0.4s, border-color 0.4s;
  opacity: 0;
  transform: translateY(40px);
  position: relative;
  overflow: hidden;
}
.card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 3px;
  background: linear-gradient(90deg, #FF5722, #FF9800);
  opacity: 0;
  transition: opacity 0.4s;
}
.card.visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out, box-shadow 0.4s, border-color 0.4s;
}
.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.5);
  border-color: rgba(255,87,34,0.15);
}
.card:hover::before { opacity: 1; }
.card:hover .card-icon { transform: scale(1.15) rotate(-6deg); }
.card .card-icon {
  width: 58px; height: 58px;
  border-radius: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, rgba(255,87,34,0.2), rgba(255,152,0,0.1));
  border: 1px solid rgba(255,87,34,0.15);
  transition: transform 0.4s;
}
.card h3 { font-size: 1.1rem; margin-bottom: 0.5rem; color: #fff; }
.card p { font-size: 0.9rem; color: rgba(255,255,255,0.5); line-height: 1.7; }

/* Stats */
.stats-row {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin: 3rem 0;
}
.stat {
  text-align: center;
  background: #1A1A1A;
  border-radius: 16px;
  padding: 1.5rem 2.5rem;
  border: 1px solid rgba(255,255,255,0.05);
  min-width: 140px;
}
.stat .num {
  font-size: 2rem;
  font-weight: 900;
  background: linear-gradient(135deg, #FF5722, #FF9800);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.stat .label {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.4);
  margin-top: 4px;
}

/* About */
.about-box {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  line-height: 1.9;
  color: rgba(255,255,255,0.55);
  font-size: 1.05rem;
}
.about-box strong { color: #FF9800; }
.about-note {
  margin-top: 1rem;
  background: rgba(255,87,34,0.06);
  border: 1px solid rgba(255,87,34,0.12);
  border-radius: 16px;
  padding: 1.5rem;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.5);
}

/* CTA */
.cta-section { text-align: center; padding: 4rem 0 5rem; }
.cta-buttons { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* Footer */
footer {
  width: 100%;
  background: #1A1A1A;
  padding: 2.5rem 2rem;
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.05);
}
footer .links {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}
footer .links a {
  color: rgba(255,255,255,0.4);
  text-decoration: none;
  font-size: 0.85rem;
  transition: color 0.3s;
  font-weight: 500;
}
footer .links a:hover { color: #FF5722; }
footer p { color: rgba(255,255,255,0.2); font-size: 0.8rem; }

/* Scrollbar */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: #0A0A0A; }
::-webkit-scrollbar-thumb { background: #2C3E50; border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: #FF5722; }

/* ─── Responsive ─── */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .navbar { padding: 0 1rem; }
  .page-hero { padding: 6rem 1rem 3rem; }
  .features-grid { grid-template-columns: 1fr; }
  .stats-row { gap: 1rem; }
  .stat { padding: 1rem 1.5rem; min-width: 100px; }
  .stat .num { font-size: 1.5rem; }
}
@media (max-width: 480px) {
  .cta-buttons { flex-direction: column; align-items: center; }
}
