/* ===== RESET & BASE ===== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --bg: #000;
  --bg-card: #0a0a0a;
  --text: #fff;
  --text-muted: #b0b0b0;
  --pink: #ff2d7b;
  --pink-light: #ff5ea0;
  --orange: #ff6d00;
  --gradient: linear-gradient(135deg, #ff2d7b, #ff6d00);
  --gradient-btn: linear-gradient(90deg, #ff2d7b, #ff6d00);
  --border-pink: #ff2d7b;
  --green: #4caf50;
  --blue-check: #2196f3;
  --card-border: rgba(255, 45, 123, 0.6);
  --radius: 12px;
  --font-en: 'Inter', sans-serif;
  --font-he: 'Heebo', sans-serif;
  --container: 1200px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-en);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

html[dir="rtl"] body {
  font-family: var(--font-he);
}

a {
  color: inherit;
  text-decoration: none;
}

ul { list-style: none; }

img { max-width: 100%; display: block; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  border: none;
  text-align: center;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 45, 123, 0.3);
}

.btn-cta,
.btn-primary {
  background: var(--gradient-btn);
  color: #fff;
}

.btn-gradient {
  background: var(--gradient-btn);
  color: #fff;
  width: 100%;
  margin-top: auto;
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--pink);
  color: #fff;
}

.btn-outline:hover {
  background: var(--pink);
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding: 16px 0;
}

.nav-container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  overflow: hidden;
  height: 50px;
  padding: 10px;
}

.logo-img {
  height: 105px;
  width: auto;
  object-fit: contain;
  mix-blend-mode: screen;
  filter: brightness(1.15);
  margin: -8px -15px -8px -6px;
}

.footer-logo-img {
  height: 70px;
  mix-blend-mode: screen;
  filter: brightness(1.15);
}

.nav-links {
  display: flex;
  gap: 28px;
}

.nav-links a {
  font-size: 0.95rem;
  font-weight: 500;
  transition: color 0.2s;
  white-space: nowrap;
}

.nav-links a:hover {
  color: var(--pink);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.lang-toggle {
  display: none;
}

/* ===== LANGUAGE SWITCH ===== */
.lang-switch {
  position: fixed;
  bottom: 24px;
  left: 24px;
  z-index: 999;
  background: rgba(20, 20, 20, 0.8);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 24px;
  padding: 10px 22px;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
  animation: langNotice 2s ease 1.5s 1 forwards;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.lang-switch:hover {
  border-color: rgba(255, 45, 123, 0.4);
  box-shadow: 0 4px 24px rgba(255, 45, 123, 0.15);
}

.lang-switch-label {
  font-size: 0.9rem;
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.02em;
}

@keyframes langNotice {
  0% { box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4); border-color: rgba(255, 255, 255, 0.12); }
  40% { box-shadow: 0 0 20px rgba(255, 45, 123, 0.3); border-color: rgba(255, 45, 123, 0.4); }
  100% { box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4); border-color: rgba(255, 255, 255, 0.12); }
}

html[dir="rtl"] .lang-switch {
  left: auto;
  right: 24px;
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: #fff;
  font-size: 1.5rem;
  cursor: pointer;
}

.nav-links.active {
  display: flex;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 20px 60px;
  background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.8)),
              linear-gradient(135deg, #1a0a2e, #0a0a0a);
  background-size: cover;
  background-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(255, 45, 123, 0.08), transparent 70%);
}

.hero-content {
  position: relative;
  max-width: 800px;
}

.hero h1 {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 20px;
  line-height: 1.2;
}

.hero-subtitle {
  font-size: 1.15rem;
  color: var(--text-muted);
  margin-bottom: 40px;
  line-height: 1.7;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ===== DEVICES BAR ===== */
.devices-bar {
  padding: 40px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.devices-grid {
  display: flex;
  justify-content: center;
  gap: 50px;
  flex-wrap: wrap;
}

.device-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
}

.device-item i {
  font-size: 2rem;
}

.device-item span {
  font-size: 0.85rem;
}

/* ===== LOGOS BAR ===== */
.logos-bar {
  padding: 40px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.logos-scroll {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  align-items: center;
}

.logo-item {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-muted);
  opacity: 0.7;
  white-space: nowrap;
}

/* ===== SECTION TITLES ===== */
.section-title {
  font-size: 2.2rem;
  font-weight: 800;
  text-align: center;
  margin-bottom: 16px;
}

.section-title-pink {
  font-size: 2.2rem;
  font-weight: 800;
  text-align: center;
  margin-bottom: 16px;
  color: var(--pink);
}

.section-label-pink {
  color: var(--pink);
  font-size: 1.1rem;
  font-weight: 600;
  text-align: center;
  margin-bottom: 8px;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  text-align: center;
  max-width: 700px;
  margin: 0 auto 40px;
}

/* ===== MOVIES SECTION ===== */
.movies-section {
  padding: 80px 0;
}

.poster-placeholder {
  width: 180px;
  height: 260px;
  background: linear-gradient(135deg, #1a1a2e, #16213e);
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--text-muted);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.poster-placeholder i {
  font-size: 2.5rem;
  opacity: 0.5;
}

.poster-placeholder span {
  font-size: 0.85rem;
}

.poster-placeholder.kids {
  background: linear-gradient(135deg, #2e1a3d, #1a2e4a);
}

/* ===== SWIPER OVERRIDES ===== */
.swiper {
  padding: 20px 0 40px;
}

.swiper-button-prev,
.swiper-button-next {
  color: var(--pink) !important;
}

.swiper-button-prev::after,
.swiper-button-next::after {
  font-size: 1.2rem !important;
}

/* ===== PRICING SECTION ===== */
.pricing-section {
  padding: 80px 0;
}

.screen-tabs {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.screen-tab {
  padding: 12px 28px;
  border: none;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s;
  font-family: inherit;
}

.screen-tab.active {
  background: var(--gradient-btn);
}

.screen-tab:hover:not(.active) {
  background: rgba(255, 255, 255, 0.15);
}

.screen-panel {
  display: none;
}

.screen-panel.active {
  display: grid;
}

.pricing-grid {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}

.price-card {
  background: var(--bg-card);
  border: 2px solid var(--card-border);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s, box-shadow 0.3s;
}

.price-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 40px rgba(255, 45, 123, 0.15);
}

.price-duration {
  color: var(--pink);
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.price-amount {
  font-size: 3rem;
  font-weight: 900;
  margin-bottom: 8px;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.price-channels {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.feature-list {
  text-align: start;
  margin-bottom: 24px;
  flex-grow: 1;
}

.feature-list li {
  padding: 6px 0;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.feature-list li i {
  color: var(--green);
  font-size: 0.8rem;
  flex-shrink: 0;
}

/* ===== STATS SECTION ===== */
.stats-section {
  padding: 80px 0;
  text-align: center;
}

.stats-description {
  color: var(--text-muted);
  max-width: 900px;
  margin: 0 auto 50px;
  font-size: 0.95rem;
  line-height: 1.8;
}

.stats-grid {
  display: flex;
  justify-content: center;
  gap: 80px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 3.5rem;
  font-weight: 900;
  display: inline;
}

.stat-plus {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--pink);
  display: inline;
}

.stat-label {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-top: 4px;
}

/* ===== SPORTS SECTION ===== */
.sports-section {
  padding: 80px 0;
}

.sports-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.sports-placeholder {
  background: linear-gradient(135deg, #0a1628, #0f2027);
  border-radius: var(--radius);
  padding: 40px;
  min-height: 350px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.sports-placeholder i {
  font-size: 4rem;
  color: var(--pink);
}

.sport-channels-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}

.sport-channels-list span {
  background: rgba(255, 255, 255, 0.1);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
}

.sports-content h2 {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 20px;
}

.sports-content p {
  color: var(--text-muted);
  margin-bottom: 16px;
  line-height: 1.7;
}

.sports-content .btn {
  margin-top: 10px;
}

/* ===== WHY CHOOSE US ===== */
.why-section {
  padding: 80px 0;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 40px;
}

.why-card {
  background: var(--bg-card);
  border-radius: var(--radius);
  padding: 40px 30px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: transform 0.3s;
}

.why-card:hover {
  transform: translateY(-5px);
}

.why-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.4rem;
}

.why-card h3 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.why-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.7;
}

/* ===== PROMO SECTION ===== */
.promo-section {
  padding: 80px 0;
}

.promo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.promo-placeholder {
  background: linear-gradient(135deg, #1a0a2e, #0d1b2a);
  border-radius: var(--radius);
  min-height: 400px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  color: var(--text-muted);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.promo-placeholder i {
  font-size: 4rem;
  opacity: 0.5;
}

.promo-content h2 {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 24px;
}

.promo-list {
  margin-bottom: 30px;
}

.promo-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 0;
  font-size: 1.05rem;
}

.promo-list li i {
  color: var(--blue-check);
  font-size: 1.1rem;
}

/* ===== SUPPORT SECTION ===== */
.support-section {
  padding: 80px 0;
}

.support-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.support-placeholder {
  background: linear-gradient(135deg, #0d1b2a, #1a0a2e);
  border-radius: var(--radius);
  min-height: 350px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  color: var(--text-muted);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.support-placeholder i {
  font-size: 4rem;
  opacity: 0.5;
}

.support-content h2 {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 20px;
}

.support-content .btn {
  margin-bottom: 20px;
}

.support-content p {
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 12px;
}

/* ===== CAROUSEL SECTIONS ===== */
.carousel-section {
  padding: 80px 0;
}

/* ===== FAQ SECTION ===== */
.faq-section {
  padding: 80px 0;
}

.faq-list {
  max-width: 800px;
  margin: 40px auto 0;
}

.faq-item {
  margin-bottom: 12px;
}

.faq-question {
  width: 100%;
  padding: 18px 24px;
  background: #fff;
  color: #000;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  text-align: start;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: inherit;
  transition: background 0.2s;
}

.faq-question::after {
  content: '+';
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--pink);
  flex-shrink: 0;
  margin-inline-start: 16px;
}

.faq-item.active .faq-question::after {
  content: '−';
}

.faq-question:hover {
  background: #f0f0f0;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 0 0 8px 8px;
}

.faq-item.active .faq-answer {
  max-height: 600px;
  padding: 20px 24px;
}

.faq-answer p {
  color: var(--text-muted);
  line-height: 1.8;
  font-size: 0.95rem;
}

/* ===== GLOBAL SERVERS ===== */
.global-section {
  padding: 80px 0;
}

.global-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.map-placeholder {
  position: relative;
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.map-placeholder > i {
  font-size: 12rem;
  color: rgba(255, 255, 255, 0.06);
}

.map-pins {
  position: absolute;
  inset: 0;
}

.pin {
  position: absolute;
  color: var(--pink);
  font-size: 1.5rem;
  animation: pinBounce 2s ease-in-out infinite;
}

.pin:nth-child(2) { animation-delay: 0.3s; color: #9c27b0; }
.pin:nth-child(3) { animation-delay: 0.6s; color: #2196f3; }
.pin:nth-child(4) { animation-delay: 0.9s; color: #ff9800; }

@keyframes pinBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.global-content h2 {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 16px;
}

.global-content p {
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 24px;
}

/* ===== FOOTER ===== */
.footer {
  padding: 40px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-logo {
  display: flex;
  align-items: center;
}

.footer-links {
  display: flex;
  gap: 24px;
}

.footer-links a {
  color: var(--text-muted);
  font-size: 0.9rem;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--pink);
}

.footer-copy p {
  color: var(--text-muted);
  font-size: 0.85rem;
}

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
  width: 60px;
  height: 60px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: #fff;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: transform 0.3s;
}

.whatsapp-float:hover {
  transform: scale(1.1);
}

html[dir="rtl"] .whatsapp-float {
  right: auto;
  left: 24px;
}

/* ===== RTL OVERRIDES ===== */
html[dir="rtl"] .feature-list {
  text-align: right;
}

html[dir="rtl"] .faq-question {
  text-align: right;
}

html[dir="rtl"] .promo-list li {
  flex-direction: row-reverse;
  text-align: right;
}

html[dir="rtl"] .sports-grid,
html[dir="rtl"] .promo-grid,
html[dir="rtl"] .support-grid,
html[dir="rtl"] .global-grid {
  direction: rtl;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
  .sports-grid,
  .promo-grid,
  .support-grid,
  .global-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .why-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
  }

  .hero h1 {
    font-size: 2.2rem;
  }

  .section-title,
  .section-title-pink {
    font-size: 1.7rem;
  }

  .stats-grid {
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: fixed;
    top: 65px;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.97);
    flex-direction: column;
    padding: 20px;
    gap: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .nav-links.active {
    display: flex;
  }

  .mobile-menu-btn {
    display: block;
  }

  .nav-actions .btn-cta {
    display: none;
  }

  .hero {
    padding: 100px 20px 40px;
    min-height: auto;
  }

  .hero h1 {
    font-size: 1.8rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
  }

  .screen-tabs {
    gap: 6px;
  }

  .screen-tab {
    padding: 10px 18px;
    font-size: 0.85rem;
  }

  .stat-number {
    font-size: 2.5rem;
  }

  .devices-grid {
    gap: 30px;
  }

  .footer-content {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 1.5rem;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .price-amount {
    font-size: 2.5rem;
  }

  .section-title,
  .section-title-pink {
    font-size: 1.4rem;
  }
}
