/* landing/css/style.css */
:root {
  --bg-dark: #070412; /* Deep space dark violet */
  --bg-card: rgba(13, 9, 30, 0.8); /* Rich indigo card background */
  --border-color: rgba(219, 39, 119, 0.35); /* Magenta stroke outline */
  --border-hover: rgba(255, 200, 59, 0.7); /* Gold stroke outline */

  --brand-gold: #ffc83b; /* Vibrant Gold/Yellow from logo */
  --brand-magenta: #db2777; /* Deep Hot Pink/Magenta from logo */
  --brand-navy: #0b0726; /* Navy shadow tone */

  --primary: var(--brand-gold);
  --primary-light: #ffe066;
  --primary-grad: linear-gradient(135deg, var(--brand-gold) 0%, #ff9800 100%);

  --accent: var(--brand-magenta);
  --accent-light: #f472b6;
  --accent-grad: linear-gradient(135deg, var(--brand-magenta) 0%, #9d174d 100%);

  --text-main: #f8fafc;
  --text-muted: #94a3b8;
  --text-dark: #475569;

  --font-cairo: "Cairo", sans-serif;
  --font-outfit: "Outfit", sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

html,
body {
  background-color: var(--bg-dark);
  color: var(--text-main);
  font-family: var(--font-cairo);
  position: relative;
  overflow-x: hidden !important;
  max-width: 100% !important;
  width: 100% !important;
  line-height: 1.6;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: var(--bg-dark);
}
::-webkit-scrollbar-thumb {
  background: var(--brand-navy);
  border: 2px solid var(--bg-dark);
  border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--accent);
}

/* Cyber Gaming Grid Background */
.bg-grid {
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0.08;
  background-size: 60px 60px;
  background-image:
    linear-gradient(to right, var(--brand-magenta) 1px, transparent 1px),
    linear-gradient(to bottom, var(--brand-magenta) 1px, transparent 1px);
  pointer-events: none;
}

/* Glowing Neon Orbs */
.glow-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(140px);
  z-index: -1;
  opacity: 0.18;
  pointer-events: none;
}

@keyframes pulseGlow {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
    opacity: 0.18;
  }
  50% {
    transform: translate(40px, -30px) scale(1.1);
    opacity: 0.26;
  }
}

@keyframes pulseGlowAlt {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
    opacity: 0.14;
  }
  50% {
    transform: translate(-50px, 40px) scale(1.08);
    opacity: 0.22;
  }
}

.orb-primary {
  background: var(--primary-grad);
  width: 500px;
  height: 500px;
  animation: pulseGlow 12s ease-in-out infinite;
}

.orb-secondary {
  background: var(--accent-grad);
  width: 450px;
  height: 450px;
  animation: pulseGlowAlt 16s ease-in-out infinite;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: 1.45;
}

/* Container */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Gaming Header & Navigation */
header.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background: rgba(7, 4, 18, 0.75);
  backdrop-filter: blur(20px);
  border-bottom: 2px solid var(--border-color);
  transition: all 0.3s ease;
}

header.site-header.scrolled {
  background: rgba(7, 4, 18, 0.95);
  border-bottom-color: var(--brand-magenta);
  box-shadow: 0 5px 30px rgba(219, 39, 119, 0.15);
}

header.site-header.scrolled .navbar {
  padding: 4px 0;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  transition: all 0.3s ease;
}

.logo img {
  height: 52px;
  width: auto;
  filter: drop-shadow(0 0 8px rgba(255, 200, 59, 0.2));
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.logo:hover img {
  transform: scale(1.1) rotate(-3deg);
}

.nav-links {
  display: flex;
  gap: 35px;
  list-style: none;
  align-items: center;
}

.nav-actions-desktop {
  display: flex;
  gap: 12px;
  align-items: center;
}

.nav-cta-mobile {
  display: none !important;
}

.nav-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 800;
  transition: all 0.2s ease;
  position: relative;
}

.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--brand-gold);
  transition: width 0.2s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--brand-gold);
  text-shadow: 0 0 8px rgba(255, 200, 59, 0.3);
}

/* Premium Cyber Gaming Button */
.btn-gaming {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 28px;
  border-radius: 12px;
  font-family: var(--font-cairo);
  font-weight: 800;
  font-size: 0.95rem;
  text-decoration: none;
  cursor: pointer;
  border: 2px solid transparent;
  outline: none !important;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.btn-gaming:focus,
.btn-gaming:focus-visible {
  outline: none !important;
}

.btn-gaming-primary {
  background: var(--primary-grad);
  color: #070412;
  box-shadow: 0 4px 20px rgba(255, 200, 59, 0.25);
}

.btn-gaming-primary:hover {
  transform: translateY(-3px);
  background: linear-gradient(135deg, #ffe066 0%, #ffb300 100%);
  box-shadow: 0 8px 30px rgba(255, 200, 59, 0.5);
}

.btn-gaming-primary:active {
  transform: translateY(-1px);
  box-shadow: 0 4px 15px rgba(255, 200, 59, 0.3);
}

.btn-gaming-outline {
  background: rgba(255, 255, 255, 0.03);
  color: #fff;
  border: 2px solid var(--brand-gold);
  box-shadow: 0 4px 15px rgba(255, 200, 59, 0.05);
}

.btn-gaming-outline:hover {
  transform: translateY(-3px);
  background: rgba(255, 200, 59, 0.15);
  border-color: transparent;
  box-shadow: 0 8px 25px rgba(255, 200, 59, 0.25);
  color: var(--brand-gold);
}

.btn-gaming-outline:active {
  transform: translateY(-1px);
}

/* Specific styling for header buttons to make them smaller and more elegant */
.nav-links .btn-gaming,
.nav-actions-desktop .btn-gaming {
  padding: 8px 22px;
  font-size: 0.88rem;
  border-radius: 10px;
}

.nav-links li.nav-cta-mobile a.btn-gaming-primary,
.nav-actions-desktop a.btn-gaming-primary {
  color: #070412 !important;
  text-shadow: none !important;
}

.nav-links li.nav-cta-mobile a.btn-gaming-primary:hover,
.nav-actions-desktop a.btn-gaming-primary:hover {
  color: #070412 !important;
  text-shadow: none !important;
}

.nav-links li.nav-cta-mobile a.btn-gaming-outline,
.nav-actions-desktop a.btn-gaming-outline {
  color: #fff !important;
  text-shadow: none !important;
}

.nav-links li.nav-cta-mobile a.btn-gaming-outline:hover,
.nav-actions-desktop a.btn-gaming-outline:hover {
  color: var(--brand-gold) !important;
  text-shadow: none !important;
}

/* Globally disable all link underlines and borders on hover for both buttons */
.nav-links li.nav-cta-mobile a,
.nav-links li.nav-cta-mobile a:hover,
.nav-actions-desktop a,
.nav-actions-desktop a:hover {
  text-decoration: none !important;
  border-bottom: none !important;
}

.nav-links li.nav-cta-mobile a::after,
.nav-actions-desktop a::after {
  display: none !important;
}

/* Mobile menu toggle */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text-main);
  font-size: 1.6rem;
  cursor: pointer;
}

/* Hero Section */
.hero {
  position: relative;
  padding: 120px 0 110px;
  overflow: hidden;
  text-align: center;
}

/* Internal Page Header */
.page-header {
  position: relative;
  padding: 140px 0 60px;
  overflow: hidden;
  text-align: center;
  background: radial-gradient(circle at top, rgba(99, 102, 241, 0.1) 0%, rgba(7, 10, 18, 0) 60%);
}

.page-header-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 30px;
  padding: 60px 40px;
  margin: 0 auto;
  max-width: 900px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  position: relative;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
}


.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(219, 39, 119, 0.08);
  border: 2px solid rgba(219, 39, 119, 0.25);
  color: var(--accent-light);
  padding: 8px 18px;
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 800;
  margin-bottom: 28px;
  box-shadow: 0 0 15px rgba(219, 39, 119, 0.1);
  animation: fadeInDown 0.8s ease;
}

.hero-title {
  font-size: 3.8rem;
  font-weight: 900;
  line-height: 1.5;
  margin-bottom: 28px;
  letter-spacing: -0.5px;
  animation: fadeInUp 0.8s ease 0.2s both;
}

/* Custom 3D text styling matching the logo vibe */
.logo-text-3d {
  color: var(--brand-gold);
  font-weight: 950;
  text-shadow:
    2px 2px 0px var(--brand-magenta),
    4px 4px 0px var(--brand-navy);
}

.hero-desc {
  font-size: 1.2rem;
  color: var(--text-muted);
  max-width: 800px;
  margin: 0 auto 44px;
  line-height: 1.9;
  animation: fadeInUp 0.8s ease 0.4s both;
}

.hero-ctas {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-bottom: 70px;
  animation: fadeInUp 0.8s ease 0.6s both;
}

/* Hero Preview Wrapper with Neon Frames */
.hero-preview {
  position: relative;
  max-width: 1050px;
  margin: 0 auto;
  border-radius: 20px;
  border: 2px solid var(--border-color);
  background: var(--bg-card);
  padding: 14px;
  box-shadow: 0 0 40px rgba(219, 39, 119, 0.15);
  animation: zoomIn 1s cubic-bezier(0.16, 1, 0.3, 1) 0.8s both;
}

.hero-preview::before {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: 20px;
  padding: 2px;
  background: linear-gradient(
    135deg,
    var(--brand-magenta) 0%,
    transparent 60%,
    var(--brand-gold) 100%
  );
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

/* Stats Section */
.stats {
  padding: 60px 0;
  position: relative;
  border-top: 2px solid var(--border-color);
  border-bottom: 2px solid var(--border-color);
  background: rgba(11, 7, 38, 0.4);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.stat-card {
  background: rgba(255, 255, 255, 0.015);
  border: 1px solid rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 35px 25px;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.stat-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 200, 59, 0.2);
  box-shadow: 0 15px 35px rgba(255, 200, 59, 0.05);
}

.stat-card .stat-num {
  font-size: 3rem;
  font-weight: 950;
  font-family: var(--font-outfit);
  margin-bottom: 8px;
  color: var(--brand-gold);
  text-shadow: 2px 2px 0px var(--brand-magenta);
}

.stat-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  font-weight: 800;
}

/* Features Section */
.features {
  padding: 120px 0;
  position: relative;
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 80px;
}

.section-subtitle {
  color: var(--brand-magenta);
  text-transform: uppercase;
  font-size: 0.9rem;
  font-weight: 900;
  letter-spacing: 2px;
  margin-bottom: 14px;
  display: block;
}

.section-title {
  font-size: 2.8rem;
  font-weight: 950;
  margin-bottom: 24px;
}

.section-desc {
  color: var(--text-muted);
  font-size: 1.1rem;
  line-height: 1.8;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
}

.features-grid-2 {
  grid-template-columns: repeat(2, 1fr);
}

/* About Vision Grid */
.about-vision-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  text-align: right;
}

.vision-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--border-color);
  background: var(--card-bg);
  padding: 40px;
  text-align: center;
}

/* Neobrutalist / Gaming Styled Feature Card */
.feature-card {
  background: rgba(255, 255, 255, 0.015);
  border: 1px solid rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 40px 30px;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.feature-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(255, 200, 59, 0.02) 0%,
    rgba(219, 39, 119, 0.02) 100%
  );
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 0;
}

.feature-card:hover::before {
  opacity: 1;
}

.feature-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 200, 59, 0.25);
  box-shadow:
    0 15px 35px rgba(255, 200, 59, 0.06),
    0 0 20px rgba(219, 39, 119, 0.04);
}

.feature-icon {
  width: 64px;
  height: 64px;
  border-radius: 12px;
  background: rgba(255, 200, 59, 0.05);
  border: 2px solid rgba(255, 200, 59, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: var(--brand-gold);
  margin-bottom: 28px;
  transition: all 0.25s ease;
}

.feature-card:hover .feature-icon {
  background: var(--primary-grad);
  color: #070412;
  border-color: transparent;
  box-shadow: 0 0 15px rgba(255, 200, 59, 0.4);
}

.feature-card h3 {
  font-size: 1.35rem;
  font-weight: 900;
  margin-bottom: 16px;
  color: #fff;
}

.feature-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.8;
}

/* Pricing Section */
.pricing {
  padding: 120px 0;
  background: rgba(11, 7, 38, 0.2);
  border-top: 2px solid var(--border-color);
  position: relative;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
  align-items: stretch;
  max-width: 1100px;
  margin: 0 auto;
}

/* Neo Gaming Price Card */
.price-card {
  background: rgba(255, 255, 255, 0.015);
  border: 1px solid rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 24px;
  padding: 45px 30px;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  position: relative;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.price-card:hover {
  transform: translateY(-10px);
  border-color: rgba(255, 200, 59, 0.25);
  box-shadow: 0 20px 40px rgba(255, 200, 59, 0.08);
}

.price-card.featured {
  border-color: rgba(255, 200, 59, 0.35);
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.02) 0%,
    rgba(219, 39, 119, 0.02) 100%
  );
  box-shadow:
    0 15px 40px rgba(219, 39, 119, 0.12),
    0 0 25px rgba(255, 200, 59, 0.05);
  transform: translateY(-5px);
}

.price-card.featured:hover {
  transform: translateY(-15px);
  border-color: var(--brand-gold);
  box-shadow:
    0 20px 45px rgba(219, 39, 119, 0.22),
    0 0 30px rgba(255, 200, 59, 0.12);
}

.price-card.featured::after {
  content: "الأكثر اختياراً";
  position: absolute;
  top: -15px;
  left: 24px;
  background: var(--accent-grad);
  border: 1px solid var(--brand-gold);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 900;
  padding: 4px 14px;
  border-radius: 100px;
  box-shadow: 0 0 15px rgba(219, 39, 119, 0.4);
}

.price-header h3 {
  font-size: 1.45rem;
  font-weight: 900;
  margin-bottom: 12px;
}

.price-amount {
  margin: 24px 0 30px;
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 6px;
}

.price-amount .num {
  font-size: 3.4rem;
  font-weight: 950;
  color: var(--brand-gold);
  font-family: var(--font-outfit);
  text-shadow: 2px 2px 0px var(--brand-magenta);
}

.price-amount .period {
  color: var(--text-muted);
  font-size: 0.95rem;
  font-weight: 800;
}

.price-features {
  list-style: none;
  text-align: right;
  margin-bottom: 40px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.price-features li {
  font-size: 0.95rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
}

.price-features li i {
  color: var(--brand-gold);
  font-size: 0.9rem;
}

.price-features li.disabled {
  color: var(--text-dark);
}

.price-features li.disabled i {
  color: var(--text-dark);
}

/* FAQ Section */
.faq {
  padding: 120px 0;
  border-top: 2px solid var(--border-color);
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.faq-item {
  background: rgba(255, 255, 255, 0.015);
  border: 1px solid rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 14px;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-item:hover {
  border-color: rgba(255, 200, 59, 0.25);
  box-shadow: 0 5px 15px rgba(255, 200, 59, 0.03);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 24px;
  text-align: right;
  color: var(--text-main);
  font-size: 1.15rem;
  font-weight: 900;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.faq-question i {
  font-size: 0.95rem;
  color: var(--brand-gold);
  transition: transform 0.25s ease;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.3s ease,
    padding 0.3s ease;
  padding: 0 24px;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.8;
}

.faq-item.active {
  border-color: var(--brand-gold);
  background: rgba(255, 200, 59, 0.02);
  box-shadow: 0 8px 25px rgba(255, 200, 59, 0.08);
}

.faq-item.active .faq-question {
  color: var(--brand-gold);
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

.faq-item.active .faq-answer {
  max-height: 250px;
  padding: 0 24px 24px;
  border-top: 1px solid rgba(219, 39, 119, 0.15);
}

/* Call To Action Box with Slanted Framing */
.cta-banner {
  padding: 100px 0;
  position: relative;
  border-top: 2px solid var(--border-color);
}

.cta-box {
  background: var(--bg-card);
  border: 2px solid var(--brand-gold);
  box-shadow: 8px 8px 0px var(--brand-magenta);
  border-radius: 24px;
  padding: 60px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-box h2 {
  font-size: 2.5rem;
  font-weight: 950;
  margin-bottom: 20px;
}

.cta-box p {
  color: var(--text-muted);
  font-size: 1.1rem;
  max-width: 650px;
  margin: 0 auto 40px;
  line-height: 1.8;
}

/* Contact Grid */
.contact-grid {
  display: grid;
  grid-template-columns: 4fr 6fr;
  gap: 60px;
  margin-top: 50px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 35px;
}

.info-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.info-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: rgba(219, 39, 119, 0.05);
  border: 2px solid rgba(219, 39, 119, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-magenta);
  font-size: 1.3rem;
  flex-shrink: 0;
}

.info-content h4 {
  font-size: 1.1rem;
  font-weight: 900;
  margin-bottom: 8px;
}

.info-content p,
.info-content a {
  color: var(--text-muted);
  font-size: 0.95rem;
  text-decoration: none;
  transition: color 0.2s ease;
  font-weight: 700;
}

.info-content a:hover {
  color: var(--brand-gold);
}

.contact-form-card {
  background: rgba(255, 255, 255, 0.015);
  border: 1px solid rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  border-radius: 20px;
  padding: 40px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 24px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group label {
  font-size: 0.85rem;
  font-weight: 900;
  color: var(--text-muted);
  text-transform: uppercase;
}

.form-group input,
.form-group textarea {
  background: rgba(7, 4, 18, 0.7);
  border: 2px solid var(--border-color);
  border-radius: 10px;
  padding: 14px 18px;
  color: #fff;
  font-family: var(--font-cairo);
  font-size: 0.95rem;
  transition: all 0.2s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--brand-gold);
  box-shadow: 0 0 15px rgba(255, 200, 59, 0.15);
}

/* Footer styling */
footer.site-footer {
  background: #04020a;
  border-top: 2px solid var(--border-color);
  padding: 80px 0 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 4fr 2fr 2fr;
  gap: 50px;
  margin-bottom: 60px;
}

.footer-brand p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-top: 20px;
  line-height: 1.8;
}

.footer-col h4 {
  font-size: 1.05rem;
  font-weight: 900;
  margin-bottom: 28px;
  color: var(--brand-gold);
  text-shadow: 1px 1px 0px var(--brand-magenta);
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-col ul a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.2s ease;
  font-weight: 700;
}

.footer-col ul a:hover {
  color: var(--brand-gold);
}

.footer-newsletter p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 20px;
}

.newsletter-form {
  display: flex;
  gap: 12px;
}

.newsletter-form input {
  background: rgba(7, 4, 18, 0.7);
  border: 2px solid var(--border-color);
  border-radius: 10px;
  padding: 12px 16px;
  color: #fff;
  font-size: 0.9rem;
  flex-grow: 1;
}

.newsletter-form input:focus {
  outline: none;
  border-color: var(--brand-gold);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 35px;
}

.footer-bottom p {
  color: var(--text-dark);
  font-size: 0.9rem;
  font-weight: 700;
}

.social-links {
  display: flex;
  gap: 15px;
}

.social-links a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.02);
  border: 2px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  text-decoration: none;
  transition: all 0.2s ease;
}

.social-links a:hover {
  background: var(--accent-grad);
  color: #fff;
  border-color: transparent;
  transform: translateY(-4px) rotate(8deg);
  box-shadow: 0 0 12px rgba(219, 39, 119, 0.4);
}

/* Animations */
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-25px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(35px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes zoomIn {
  from {
    opacity: 0;
    transform: scale(0.96) translateY(15px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

/* Response alerts for Contact form */
.alert {
  padding: 16px 24px;
  border-radius: 12px;
  margin-bottom: 24px;
  font-size: 0.95rem;
  font-weight: 800;
  border: 2px solid transparent;
}

.alert-success {
  background: rgba(16, 185, 129, 0.08);
  border-color: rgba(16, 185, 129, 0.3);
  color: var(--secondary);
  box-shadow: 4px 4px 0px rgba(16, 185, 129, 0.2);
}

.alert-error {
  background: rgba(239, 68, 68, 0.08);
  border-color: rgba(239, 68, 68, 0.3);
  color: #ef4444;
  box-shadow: 4px 4px 0px rgba(239, 68, 68, 0.2);
}

/* Responsive Grid Adjustments */
@media (max-width: 1024px) {
  .hero-title {
    font-size: 3rem;
  }
  .stats-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .price-card.featured {
    transform: none;
  }
  .footer-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  /* Prevent horizontal scrolling globally on mobile */
  html,
  body {
    overflow-x: hidden !important;
    width: 100%;
  }

  /* Hide CPU-heavy and overflow-causing background glows on mobile */
  .glow-orb {
    display: none !important;
  }

  .navbar {
    padding: 12px 0;
  }
  .menu-toggle {
    display: block;
  }
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #070412;
    border-bottom: 2px solid var(--border-color);
    flex-direction: column;
    padding: 30px 20px;
    gap: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
  }
  .nav-links.active {
    display: flex;
  }
  .nav-actions-desktop {
    display: none !important;
  }
  .nav-cta-mobile {
    width: 100%;
    display: flex !important;
    flex-direction: column;
    gap: 12px;
  }
  .nav-cta-mobile .btn-gaming {
    display: flex;
    width: 100%;
  }

  /* Hero section mobile tuning */
  .hero {
    padding: 130px 0 60px;
  }
  .hero-badge {
    white-space: normal !important;
    font-size: 0.72rem !important;
    padding: 6px 14px !important;
    margin-bottom: 18px !important;
    max-width: 100%;
    line-height: 1.4;
  }
  .hero-title {
    font-size: 1.8rem !important;
    line-height: 1.45 !important;
    margin-bottom: 20px !important;
  }
  .hero-desc {
    font-size: 0.92rem !important;
    line-height: 1.7 !important;
    margin-bottom: 30px !important;
    padding: 0 10px;
  }
  .hero-ctas {
    flex-direction: column;
    gap: 14px;
    max-width: 290px;
    margin: 0 auto 40px;
  }
  .hero-ctas .btn-gaming {
    width: 100%;
  }
  .section-title {
    font-size: 2.1rem;
  }
  .features-grid,
  .features-grid-2,
  .pricing-grid,
  .contact-grid,
  .stats-grid,
  .form-row {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .footer-bottom {
    flex-direction: column-reverse;
    gap: 20px;
  }
  .contact-form-card {
    padding: 25px 20px;
  }
  .page-header {
    padding: 100px 0 40px;
  }
  .page-header-card {
    padding: 30px 20px;
    border-radius: 20px;
  }
  .page-header-card .hero-title {
    font-size: 1.8rem !important;
  }
  .about-vision-grid {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }
  .vision-card {
    padding: 25px 20px;
  }
}

/* Premium Pricing Showcase (Horizontal Split) */
.premium-pricing-showcase {
  display: grid;
  grid-template-columns: 4.5fr 7.5fr;
  background: rgba(255, 255, 255, 0.015);
  border: 1px solid rgba(255, 200, 59, 0.25);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 28px;
  overflow: hidden;
  max-width: 1050px;
  margin: 0 auto;
  box-shadow:
    0 25px 50px rgba(0, 0, 0, 0.3),
    0 0 40px rgba(219, 39, 119, 0.1),
    inset 0 1px 1px rgba(255, 255, 255, 0.05);
  position: relative;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.premium-pricing-showcase:hover {
  border-color: var(--brand-gold);
  box-shadow:
    0 30px 60px rgba(0, 0, 0, 0.4),
    0 0 50px rgba(219, 39, 119, 0.18),
    0 0 30px rgba(255, 200, 59, 0.08);
}

.pricing-cta-block {
  background: rgba(219, 39, 119, 0.02);
  border-left: 1px solid rgba(255, 255, 255, 0.05);
  padding: 50px 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  justify-content: center;
}

.showcase-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 200, 59, 0.1);
  border: 1px solid rgba(255, 200, 59, 0.3);
  color: var(--brand-gold);
  font-size: 0.75rem;
  font-weight: 900;
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 20px;
}

.pricing-cta-block h3 {
  font-size: 2rem;
  font-weight: 950;
  color: #fff;
  margin-bottom: 8px;
}

.plan-subtitle {
  color: var(--text-muted);
  font-size: 0.85rem;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 30px;
}

.showcase-price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 35px;
}

.showcase-price .price-val {
  font-size: 4rem;
  font-weight: 950;
  color: var(--brand-gold);
  font-family: var(--font-outfit);
  line-height: 1;
  text-shadow: 3px 3px 0px var(--brand-magenta);
}

.showcase-price .price-meta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.showcase-price .currency {
  font-size: 1.1rem;
  font-weight: 900;
  color: #fff;
}

.showcase-price .cycle {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 800;
}

.btn-wide {
  width: 100% !important;
  padding: 16px 28px !important;
  font-size: 1rem !important;
  margin-bottom: 20px;
}

.trust-badges {
  display: flex;
  gap: 15px;
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 800;
  width: 100%;
  justify-content: center;
}

.trust-badges span i {
  color: var(--brand-gold);
  margin-left: 4px;
}

.pricing-features-block {
  padding: 50px 45px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.pricing-features-block h4 {
  font-size: 1.15rem;
  font-weight: 900;
  color: #fff;
  margin-bottom: 30px;
  position: relative;
  display: inline-block;
  padding-bottom: 8px;
}

.pricing-features-block h4::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 50px;
  height: 2px;
  background: var(--brand-magenta);
}

.features-columns-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px 30px;
}

.feature-bullet {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.feature-bullet i {
  color: var(--brand-gold);
  font-size: 1.15rem;
  margin-top: 2px;
  flex-shrink: 0;
  filter: drop-shadow(0 0 4px rgba(255, 200, 59, 0.4));
}

.bullet-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
  text-align: right;
}

.bullet-text strong {
  font-size: 0.92rem;
  font-weight: 850;
  color: #fff;
}

.bullet-text span {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.4;
  font-weight: 700;
}

@media (max-width: 1024px) {
  .premium-pricing-showcase {
    grid-template-columns: 1fr;
    max-width: 600px;
  }
  .pricing-cta-block {
    border-left: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    align-items: center;
    text-align: center;
  }
  .showcase-price {
    justify-content: center;
  }
  .bullet-text {
    text-align: right;
  }
}

@media (max-width: 768px) {
  .features-columns-grid {
    grid-template-columns: 1fr;
  }
}

/* ===========================
   Clients / Partners Section
   =========================== */
.clients-section {
  padding: 100px 0 80px;
  background: rgba(3, 7, 18, 0.3);
  border-top: 1px solid var(--border-color);
  position: relative;
  overflow: hidden;
}

.clients-section::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(
    circle,
    rgba(255, 200, 59, 0.03) 0%,
    transparent 70%
  );
  pointer-events: none;
}

/* Marquee Container */
.marquee-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(
    to right,
    transparent 0%,
    #000 8%,
    #000 92%,
    transparent 100%
  );
  mask-image: linear-gradient(
    to right,
    transparent 0%,
    #000 8%,
    #000 92%,
    transparent 100%
  );
}

.marquee-track {
  display: flex;
  gap: 16px;
  width: max-content;
  will-change: transform;
}

.marquee-rtl {
  animation: marquee-scroll-rtl 15s linear infinite;
}

.marquee-ltr {
  animation: marquee-scroll-ltr 20s linear infinite;
}

.marquee-wrapper:hover .marquee-track {
  animation-play-state: paused;
}

@keyframes marquee-scroll-rtl {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

@keyframes marquee-scroll-ltr {
  0% {
    transform: translateX(-50%);
  }
  100% {
    transform: translateX(0);
  }
}

/* Marquee Card */
.marquee-card {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 22px 28px;
  border-radius: 18px;
  background: rgba(13, 9, 30, 0.6);
  border: 1px solid rgba(255, 200, 59, 0.06);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  min-width: 340px;
  max-width: 420px;
  transition:
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}

.marquee-card:hover {
  border-color: rgba(255, 200, 59, 0.2);
  box-shadow:
    0 8px 24px rgba(255, 200, 59, 0.04),
    0 2px 8px rgba(0, 0, 0, 0.2);
}

/* Logo */
.marquee-logo {
  flex-shrink: 0;
  width: 96px;
  height: 96px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: border-color 0.3s ease;
}

.marquee-card:hover .marquee-logo {
  border-color: rgba(255, 200, 59, 0.15);
}

.marquee-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 5px;
  filter: grayscale(15%) brightness(0.95);
  transition: filter 0.3s ease;
}

.marquee-card:hover .marquee-logo img {
  filter: grayscale(0%) brightness(1.05);
}

.marquee-logo-placeholder {
  background: linear-gradient(
    135deg,
    rgba(255, 200, 59, 0.08),
    rgba(219, 39, 119, 0.08)
  );
}

.marquee-logo-placeholder span {
  font-family: var(--font-cairo);
  font-size: 1.2rem;
  font-weight: 900;
  background: var(--primary-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Info */
.marquee-info {
  flex: 1;
  min-width: 0;
}

.marquee-info h4 {
  font-size: 0.95rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.marquee-info p {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.4;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.marquee-link {
  flex-shrink: 0;
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 0.7rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.marquee-link:hover {
  background: rgba(255, 200, 59, 0.1);
  border-color: rgba(255, 200, 59, 0.3);
  color: var(--brand-gold);
  transform: scale(1.1);
}

@media (max-width: 768px) {
  .clients-section {
    padding: 60px 0 50px;
  }
  .marquee-card {
    min-width: 220px;
    max-width: 280px;
    padding: 12px 16px;
  }
  .marquee-logo {
    width: 40px;
    height: 40px;
  }
}
