:root {
  /* Premium Dark Theme Colors */
  --bg-color: #030406;
  /* Very deep dark blue/black */
  --surface-color: rgba(20, 24, 32, 0.6);
  /* Glassmorphism base */
  --surface-border: rgba(255, 255, 255, 0.08);

  /* Accents */
  --primary-color: #00E676;
  /* Neon sports green */
  --primary-glow: rgba(0, 230, 118, 0.5);

  --gold-color: #FADB5F;
  /* Premium gold */
  --gold-dark: #B89938;
  --gold-glow: rgba(250, 219, 95, 0.4);

  /* Text */
  --text-main: #F4F4F6;
  --text-muted: #A3A8B3;

  /* Fonts */
  --font-ar: 'Almarai', 'Cairo', sans-serif;
  --font-en: 'Outfit', sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--bg-color);
  color: var(--text-main);
  font-family: var(--font-ar);
  line-height: 1.7;
  overflow-x: hidden;
}

html[lang="en"] body {
  font-family: var(--font-en);
}

/* Language Toggle Logic */
html[lang="ar"] .en {
  display: none !important;
}

html[lang="en"] .ar {
  display: none !important;
}

/* Utilities */
.highlight {
  color: var(--primary-color);
}

.text-gold {
  color: var(--gold-color);
}

.text-primary {
  color: var(--primary-color);
}

.mt-3 {
  margin-top: 1rem;
}

/* Typography overrides for impact */
h1,
h2,
h3,
h4,
.logo span {
  font-weight: 800;
  line-height: 1.2;
}

html[lang="en"] h1,
html[lang="en"] h2,
html[lang="en"] h3 {
  font-weight: 900;
  letter-spacing: -0.5px;
}

.text-glow {
  color: var(--primary-color);
  text-shadow: 0 0 20px var(--primary-glow);
}

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

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 15px 0;
  background: rgba(3, 4, 6, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--surface-border);
  z-index: 1000;
}

.nav-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.6rem;
  letter-spacing: 1px;
}

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

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: none;
  font-family: inherit;
  font-size: 1.05rem;
}

.btn-primary {
  background: linear-gradient(135deg, #00E676 0%, #00B25C 100%);
  color: #000;
  box-shadow: 0 8px 25px rgba(0, 230, 118, 0.3);
}

.btn-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 12px 30px rgba(0, 230, 118, 0.5);
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold-color) 0%, var(--gold-dark) 100%);
  color: #000;
  box-shadow: 0 8px 25px rgba(250, 219, 95, 0.3);
}

.btn-gold:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 12px 30px rgba(250, 219, 95, 0.5);
}

.btn-outline {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-main);
  border: 1px solid var(--surface-border);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
}

.btn-large {
  padding: 18px 40px;
  font-size: 1.2rem;
}

.btn-full {
  width: 100%;
}

.lang-btn {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-main);
  border: 1px solid var(--surface-border);
  padding: 8px 16px;
  border-radius: 30px;
  cursor: pointer;
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 600;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  gap: 6px;
}

.lang-btn:hover {
  background: rgba(255, 255, 255, 0.1);
}

/* Glass Card */
.glass-card {
  background: var(--surface-color);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--surface-border);
  border-radius: 20px;
  padding: 35px;
  position: relative;
  transition: transform 0.4s ease, border-color 0.4s ease;
}

.glass-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 255, 255, 0.2);
}

.card-glow {
  position: absolute !important;
  top: -50px;
  right: -50px;
  width: 150px;
  height: 150px;
  background: var(--primary-glow);
  filter: blur(80px);
  z-index: 0;
  pointer-events: none;
}

.gold-glow {
  background: var(--gold-glow);
}

.glass-card>* {
  position: relative;
  z-index: 1;
}

/* Animations */
@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(0, 230, 118, 0.4);
  }

  70% {
    box-shadow: 0 0 0 15px rgba(0, 230, 118, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(0, 230, 118, 0);
  }
}

.cta-pulse {
  animation: pulse 2.5s infinite;
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 100px;
  overflow: hidden;
}

.hero-bg-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('bg-stadium.png') center/cover no-repeat;
  z-index: -2;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(3, 4, 6, 0.3) 0%, rgba(3, 4, 6, 0.9) 70%, rgba(3, 4, 6, 1) 100%);
  z-index: -1;
}

.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.hero-text-wrapper {
  max-width: 900px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.premium-badge {
  background: rgba(250, 219, 95, 0.1);
  color: var(--gold-color);
  border: 1px solid rgba(250, 219, 95, 0.3);
  padding: 8px 20px;
  border-radius: 30px;
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 25px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero-title {
  font-size: 4.5rem;
  margin-bottom: 20px;
  text-transform: uppercase;
}

html[lang="ar"] .hero-title {
  line-height: 1.3;
  font-size: 4rem;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: var(--text-muted);
  margin-bottom: 40px;
  max-width: 750px;
}

.hero-ctas {
  margin-bottom: 50px;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 40px;
  background: rgba(20, 24, 32, 0.6);
  backdrop-filter: blur(10px);
  border: 1px solid var(--surface-border);
  padding: 20px 50px;
  border-radius: 20px;
}

.stat-item {
  text-align: center;
}

.stat-num {
  font-size: 2.5rem;
  color: var(--text-main);
  margin-bottom: 5px;
}

.stat-item p {
  color: var(--text-muted);
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.stat-divider {
  width: 1px;
  height: 50px;
  background: var(--surface-border);
}

/* Sections Global */
section {
  padding: 120px 0;
  position: relative;
}

.section-header {
  text-align: center;
  margin-bottom: 70px;
}

.section-header h2 {
  font-size: 3rem;
  margin-bottom: 15px;
}

.section-header p {
  color: var(--text-muted);
  font-size: 1.2rem;
  max-width: 600px;
  margin: 0 auto;
}

/* Grids */
.grid-4 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}

/* Benefits */
.benefit-card {
  text-align: center;
}

.card-icon {
  width: 70px;
  height: 70px;
  background: rgba(0, 230, 118, 0.1);
  color: var(--primary-color);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin: 0 auto 25px;
  box-shadow: inset 0 0 20px rgba(0, 230, 118, 0.05);
  border: 1px solid rgba(0, 230, 118, 0.2);
}

.benefit-card h3 {
  font-size: 1.4rem;
  margin-bottom: 15px;
}

.benefit-card p {
  color: var(--text-muted);
  font-size: 1rem;
}

/* Devices Section */
.devices {
  background: linear-gradient(to bottom, var(--bg-color), #080b12, var(--bg-color));
}

.devices-text {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.devices-text h2 {
  font-size: 3rem;
  margin-bottom: 20px;
}

.devices-text p {
  color: var(--text-muted);
  margin-bottom: 50px;
  font-size: 1.2rem;
}

.device-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.device-item {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 20px 30px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 1.2rem;
  font-weight: 700;
  transition: all 0.3s ease;
}

.device-item:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-5px);
  border-color: var(--primary-color);
}

.device-item i {
  font-size: 2rem;
  color: var(--primary-color);
}

/* Pricing Section */
.pricing-card {
  display: flex;
  flex-direction: column;
}

.pricing-card h3 {
  font-size: 1.8rem;
  margin-bottom: 25px;
  text-align: center;
}

.price {
  text-align: center;
  margin-bottom: 35px;
  display: flex;
  justify-content: center;
  align-items: baseline;
  gap: 8px;
}

.currency {
  font-size: 1.2rem;
  color: var(--text-muted);
  font-weight: 700;
}

.amount {
  font-size: 4rem;
  font-weight: 900;
  line-height: 1;
}

.pricing-features {
  list-style: none;
  margin-bottom: 40px;
  flex-grow: 1;
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
  color: var(--text-main);
  font-size: 1.05rem;
}

.pricing-features li i {
  font-size: 1.2rem;
}

.gold-border {
  border: 1px solid var(--gold-color);
  box-shadow: 0 10px 40px rgba(250, 219, 95, 0.15);
  transform: scale(1.05);
}

.gold-border:hover {
  transform: scale(1.05) translateY(-8px);
  border-color: var(--gold-dark);
}

.popular-badge {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  background: linear-gradient(135deg, var(--gold-color) 0%, var(--gold-dark) 100%);
  color: #000;
  padding: 8px 25px;
  border-radius: 30px;
  font-weight: 800;
  font-size: 0.95rem;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 5px 15px rgba(250, 219, 95, 0.4);
}

/* FAQ Section */
.faq-container {
  max-width: 850px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.faq-item {
  padding: 0;
  transition: all 0.3s ease;
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 25px 30px;
  background: transparent;
  border: none;
  color: var(--text-main);
  font-size: 1.2rem;
  font-weight: 700;
  cursor: pointer;
  font-family: inherit;
  text-align: right;
}

html[lang="en"] .faq-question {
  text-align: left;
}

.faq-question i {
  transition: transform 0.3s ease;
  color: var(--primary-color);
  font-size: 1.2rem;
}

.faq-answer {
  padding: 0 30px;
  max-height: 0;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  color: var(--text-muted);
  font-size: 1.05rem;
}

.faq-item.active {
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(20, 24, 32, 0.8);
}

.faq-item.active .faq-answer {
  padding: 0 30px 25px;
  max-height: 250px;
}

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

/* Footer */
.footer {
  background: #020203;
  border-top: 1px solid var(--surface-border);
  padding-top: 80px;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 60px;
  gap: 40px;
}

.footer-info {
  max-width: 450px;
}

.footer-info .logo {
  margin-bottom: 20px;
}

.footer-cta h3 {
  margin-bottom: 20px;
  font-size: 1.6rem;
}

.footer-bottom {
  padding: 25px 0;
  border-top: 1px solid var(--surface-border);
  text-align: center;
  color: var(--text-muted);
  font-size: 1rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .hero-title {
    font-size: 3.5rem;
  }

  html[lang="ar"] .hero-title {
    font-size: 3.2rem;
  }

  .gold-border {
    transform: scale(1);
  }

  .gold-border:hover {
    transform: translateY(-5px);
  }

  .grid-3 {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  }
}

@media (max-width: 768px) {
  .hero {
    padding-top: 120px;
    min-height: auto;
    padding-bottom: 60px;
  }

  .hero-title {
    font-size: 2.6rem;
  }

  html[lang="ar"] .hero-title {
    font-size: 2.4rem;
  }

  .hero-subtitle {
    font-size: 1.1rem;
  }

  .hero-stats {
    flex-direction: column;
    gap: 20px;
    padding: 30px;
    width: 100%;
  }

  .stat-divider {
    width: 50px;
    height: 1px;
  }

  .section-header h2 {
    font-size: 2.2rem;
  }

  .devices-text h2 {
    font-size: 2.2rem;
  }

  .footer-content {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .footer-info {
    max-width: 100%;
  }

  .nav-actions .btn {
    display: none;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2rem;
  }

  html[lang="ar"] .hero-title {
    font-size: 1.8rem;
  }

  .btn-large {
    padding: 15px 30px;
    font-size: 1rem;
  }

  .pricing-card {
    padding: 25px;
  }

  .amount {
    font-size: 3rem;
  }
}