:root {
  --bg: #070707;
  --bg-soft: #101012;
  --panel: #151519;
  --panel-2: #1b1a1f;
  --text: #f8f2e7;
  --muted: #b9b0a1;
  --line: rgba(255,255,255,.11);
  --gold: #d9a631;
  --gold-2: #f6d77b;
  --red: #d5282f;
  --radius: 8px;
  --shadow: 0 26px 80px rgba(0,0,0,.48);
  font-family: Tahoma, Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  font-size: 15px;
  overflow-x: hidden;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 20% 0%, rgba(217,166,49,.16), transparent 28rem),
    radial-gradient(circle at 80% 30%, rgba(213,40,47,.10), transparent 32rem),
    linear-gradient(180deg, #090909, #050505 70%);
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
p, h1, h2, h3 { overflow-wrap: anywhere; }

.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  min-height: 74px;
  padding: 12px clamp(18px, 4vw, 64px);
  background: rgba(7,7,7,.86);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}
.brand { display: flex; align-items: center; gap: 10px; font-weight: 900; white-space: nowrap; }
.brand img { width: 48px; height: 48px; object-fit: contain; }
.main-nav { display: flex; align-items: center; gap: 14px; color: var(--muted); font-size: 13px; font-weight: 900; }
.main-nav a { padding: 8px 0; transition: color .2s ease; }
.main-nav a.active, .main-nav a:hover { color: var(--gold-2); font-weight: 900; }
.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  height: 34px;
  padding: 0 10px !important;
  border: 1px solid rgba(246,215,123,.28);
  border-radius: 999px;
  color: var(--text) !important;
  background: rgba(255,255,255,.045);
  line-height: 1;
}
.lang-switch img {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  object-fit: cover;
}
.lang-switch:hover {
  border-color: rgba(246,215,123,.6);
  background: rgba(246,215,123,.08);
}
.nav-cta, .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  padding: 0 20px;
  border-radius: var(--radius);
  font-weight: 900;
  line-height: 1;
  white-space: nowrap;
}
.nav-cta, .btn.primary {
  color: #160f04;
  background: linear-gradient(135deg, var(--gold-2), var(--gold));
  box-shadow: 0 12px 30px rgba(217,166,49,.24);
}
.nav-cta {
  height: 42px;
  min-width: 122px;
  padding: 0 22px;
  color: #170f04 !important;
  line-height: 1.2;
  text-align: center;
}
html[lang="en"] .nav-cta {
  min-width: 136px;
  padding-inline: 20px;
  font-size: 13px;
}
.btn.ghost {
  color: var(--text);
  border: 1px solid rgba(246,215,123,.45);
  background: rgba(255,255,255,.04);
}
.menu-toggle {
  display: none;
  width: 42px;
  height: 38px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255,255,255,.04);
  color: var(--text);
}

.whatsapp-float {
  position: fixed;
  inset-inline-end: 20px;
  bottom: 22px;
  z-index: 80;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 50px;
  padding: 0 16px;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, #25d366, #128c4a);
  box-shadow: 0 16px 38px rgba(37,211,102,.28), 0 0 0 1px rgba(255,255,255,.12) inset;
  font-weight: 900;
  line-height: 1;
  transition: transform .2s ease, box-shadow .2s ease;
}
.whatsapp-float:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 46px rgba(37,211,102,.36), 0 0 0 1px rgba(255,255,255,.16) inset;
}
.whatsapp-float svg {
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
}

.hero {
  position: relative;
  min-height: calc(100vh - 74px);
  overflow: hidden;
  display: grid;
  align-items: center;
  padding: clamp(68px, 8vw, 106px) clamp(18px, 4vw, 64px) 126px;
}
.hero-slider {
  position: absolute;
  inset: 0;
}
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  animation: heroFade 18s infinite;
}
.hero-slide:nth-child(2) { animation-delay: 6s; }
.hero-slide:nth-child(3) { animation-delay: 12s; }
.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.06);
  animation: slowZoom 18s infinite;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7,7,7,.84) 0%, rgba(7,7,7,.62) 48%, rgba(7,7,7,.44) 100%),
    linear-gradient(0deg, rgba(7,7,7,.72) 0%, rgba(7,7,7,.22) 46%, rgba(7,7,7,.06) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
  padding: 0;
  animation: riseIn .8s ease both;
}
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 12px;
  color: var(--gold-2);
  font-size: 14px;
  font-weight: 900;
}
.kicker::before {
  content: "";
  width: 28px;
  height: 2px;
  background: var(--gold);
}
h1 {
  margin: 0;
  max-width: 760px;
  font-size: clamp(28px, 3.2vw, 44px);
  line-height: 1.22;
  letter-spacing: 0;
}
h2 {
  margin: 0;
  font-size: clamp(22px, 2.25vw, 32px);
  line-height: 1.28;
}
h3 { margin: 0 0 8px; font-size: 17px; }
.hero-content p:not(.kicker) {
  max-width: 650px;
  margin: 18px 0 0;
  color: #e0d8ca;
  font-size: 15.5px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 26px; }
.hero-metrics {
  position: absolute;
  z-index: 3;
  inset-inline: clamp(18px, 4vw, 64px);
  bottom: 26px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  border: 0;
  background: transparent;
  backdrop-filter: none;
  box-shadow: none;
}
.hero-metrics div {
  position: relative;
  overflow: hidden;
  padding: 16px 18px;
  border: 1px solid rgba(246,215,123,.24);
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(19,19,21,.92), rgba(8,8,9,.84));
  box-shadow: 0 20px 48px rgba(0,0,0,.28);
  animation: metricFloat 4.8s ease-in-out infinite;
}
.hero-metrics div:nth-child(2) { animation-delay: .35s; }
.hero-metrics div:nth-child(3) { animation-delay: .7s; }
.hero-metrics div::after {
  content: "";
  position: absolute;
  inset: 0 auto 0 -40%;
  width: 34%;
  background: linear-gradient(90deg, transparent, rgba(246,215,123,.16), transparent);
  transform: skewX(-18deg);
  animation: shine 5.8s ease-in-out infinite;
}
.metric-icon {
  display: inline-flex;
  margin-bottom: 5px;
  color: var(--gold-2);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .04em;
}
.hero-metrics strong { display: block; color: var(--gold-2); font-size: clamp(24px, 2.8vw, 36px); line-height: 1.05; }
.hero-metrics span { color: var(--muted); font-size: 14px; }
.hero-metrics .metric-icon {
  color: var(--gold-2);
  font-size: 11px;
}

.ticker {
  overflow: hidden;
  border-block: 1px solid var(--line);
  background: #0d0d0f;
  direction: ltr;
}
.ticker-track {
  display: flex;
  gap: 14px;
  width: max-content;
  min-width: max-content;
  padding: 12px 0;
  will-change: transform;
  animation: marquee 34s linear infinite;
}
.ticker span {
  color: var(--gold-2);
  border: 1px solid rgba(246,215,123,.22);
  border-radius: 999px;
  padding: 5px 14px;
  background: rgba(255,255,255,.035);
  white-space: nowrap;
  font-size: 13px;
}

.section {
  padding: clamp(46px, 6vw, 78px) clamp(18px, 4vw, 64px);
}
.section-head {
  max-width: 820px;
  margin-bottom: 28px;
}
.section-head p, .split-copy p, .intro-grid p, .seo-block p, .feature-list p, .service-card p, .faq-list p, .device-grid p, .page-hero p, .quality-grid p {
  color: var(--muted);
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, .85fr) minmax(360px, 1.15fr);
  gap: clamp(24px, 5vw, 62px);
  align-items: start;
}
.feature-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.feature-list article, .device-grid article, .faq-list article, .price-card, .library-item {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255,255,255,.055), rgba(255,255,255,.025));
  padding: 22px;
}
.feature-list article { min-height: 170px; transition: transform .2s ease, border-color .2s ease; }
.feature-list article:hover, .service-card:hover, .price-card:hover { transform: translateY(-4px); border-color: rgba(246,215,123,.35); }

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  min-height: 470px;
  border-block: 1px solid var(--line);
  background: #0d0d0f;
}
.split-section.reverse .split-media { order: 2; }
.split-media {
  min-height: 370px;
  background: #141414;
  overflow: hidden;
}
.split-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform .8s ease;
}
.split-media img.app-shot {
  object-fit: contain;
  padding: clamp(14px, 3vw, 32px);
  background:
    linear-gradient(135deg, rgba(246,215,123,.08), transparent),
    #08080a;
}
.split-section:hover .split-media img { transform: scale(1.035); }
.split-section:hover .split-media img.app-shot { transform: scale(1.015); }
.split-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(28px, 4.5vw, 58px);
}
.text-link {
  margin-top: 10px;
  color: var(--gold-2);
  font-weight: 900;
}

.sports-section {
  background:
    radial-gradient(circle at 12% 10%, rgba(217,166,49,.12), transparent 28%),
    linear-gradient(135deg, #070707, #111);
}
.sports-section .split-media {
  position: relative;
  background: #050505;
}
.sports-section .split-media::before,
.sports-section .split-media::after {
  content: "";
  position: absolute;
  pointer-events: none;
}
.sports-section .split-media::before {
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(0,0,0,.26), transparent 44%, rgba(0,0,0,.38)),
    radial-gradient(circle at 58% 35%, rgba(246,215,123,.18), transparent 34%);
}
.sports-section .split-media::after {
  z-index: 2;
  width: 44%;
  height: 2px;
  left: -45%;
  top: 28%;
  background: linear-gradient(90deg, transparent, rgba(246,215,123,.9), transparent);
  box-shadow: 0 0 24px rgba(246,215,123,.55);
  animation: sportsSignal 4.6s ease-in-out infinite;
}
.sports-section .split-media img {
  animation: sportsFrame 12s ease-in-out infinite alternate;
  transform-origin: center;
}
.sports-section:hover .split-media img { transform: none; }
.sport-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 12px 0 4px;
}
.sport-tags span {
  border: 1px solid rgba(246,215,123,.26);
  border-radius: 999px;
  color: var(--gold-2);
  background: rgba(255,255,255,.04);
  padding: 5px 12px;
  font-size: 12px;
  font-weight: 900;
}

.quality-section {
  padding: clamp(46px, 6vw, 80px) clamp(18px, 4vw, 64px);
  background:
    radial-gradient(circle at 82% 0%, rgba(213,40,47,.14), transparent 32%),
    radial-gradient(circle at 16% 100%, rgba(217,166,49,.12), transparent 30%),
    #090909;
  border-bottom: 1px solid var(--line);
}
.quality-section .section-head {
  max-width: 820px;
  margin-inline: auto;
  text-align: center;
}
.quality-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 26px;
}
.quality-grid article {
  position: relative;
  min-height: 190px;
  border: 1px solid rgba(246,215,123,.16);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255,255,255,.055), rgba(255,255,255,.02)),
    #101010;
  padding: 20px;
  overflow: hidden;
  transition: transform .22s ease, border-color .22s ease, background .22s ease;
}
.quality-grid article::after {
  content: "";
  position: absolute;
  inset: auto -35% -42% auto;
  width: 120px;
  aspect-ratio: 1;
  border: 1px solid rgba(217,166,49,.22);
  transform: rotate(28deg);
}
.quality-grid article:hover {
  transform: translateY(-5px);
  border-color: rgba(246,215,123,.38);
  background:
    linear-gradient(180deg, rgba(246,215,123,.08), rgba(255,255,255,.025)),
    #111;
}
.quality-grid span {
  display: inline-flex;
  margin-bottom: 16px;
  color: var(--gold-2);
  font-weight: 900;
  font-size: 13px;
}
.quality-grid h3 {
  margin-bottom: 9px;
  font-size: 19px;
}

.service-cards, .pricing, .device-grid, .library-grid {
  display: grid;
  gap: 16px;
}
.service-cards { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.service-card {
  min-height: 330px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  transition: transform .2s ease, border-color .2s ease;
}
.service-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}
.service-card h3, .service-card p { padding-inline: 18px; }
.service-card h3 { padding-top: 17px; }

.app-showcase {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #111, #191817);
}
.app-showcase::before {
  content: "";
  position: absolute;
  inset: auto -12% -38% auto;
  width: 42%;
  aspect-ratio: 1;
  border: 1px solid rgba(246,215,123,.22);
  transform: rotate(28deg);
  animation: spinSoft 20s linear infinite;
}

.seo-block {
  padding: clamp(42px, 6vw, 70px) clamp(18px, 4vw, 64px);
  background:
    linear-gradient(90deg, rgba(213,40,47,.12), rgba(217,166,49,.14)),
    #111;
}
.seo-block > div { max-width: 1040px; }

.page-hero {
  position: relative;
  min-height: 340px;
  display: flex;
  align-items: end;
  padding: clamp(68px, 8vw, 100px) clamp(18px, 4vw, 64px) 42px;
  overflow: hidden;
  background: #080808;
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image:
    var(--hero-bg);
  background-size: cover;
  background-position: center;
  animation: slowBg 16s ease-in-out infinite alternate;
}
.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(7,7,7,.90) 0%, rgba(7,7,7,.60) 52%, rgba(7,7,7,.34) 100%),
    linear-gradient(0deg, rgba(7,7,7,.82) 0%, rgba(7,7,7,.24) 58%, rgba(7,7,7,.14) 100%);
}
.page-hero > div {
  position: relative;
  z-index: 2;
  max-width: 780px;
}

.pricing { grid-template-columns: repeat(4, minmax(0, 1fr)); align-items: stretch; }
.price-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-height: 520px;
  height: 100%;
  transition: transform .2s ease, border-color .2s ease;
}
.home-packages .price-card { min-height: 405px; }
.price-card.recommended {
  border-color: rgba(246,215,123,.6);
  box-shadow: 0 18px 55px rgba(217,166,49,.14);
}
.badge {
  width: fit-content;
  color: #fff;
  background: var(--red);
  border-radius: 999px;
  padding: 4px 10px;
  font-size: 13px;
  font-weight: 800;
}
.badge-discount {
  color: #eaf7ff;
  background: linear-gradient(135deg, #1f77d0, #15548f);
  box-shadow: 0 10px 26px rgba(31,119,208,.18);
}
.price {
  margin: 0;
  color: var(--gold-2);
  font-size: 34px;
  font-weight: 900;
  line-height: 1.15;
}
.price span { font-size: 17px; }
.price-card del { color: #847b70; }
.package-counts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin: 10px 0 4px;
}
.package-counts span {
  display: grid;
  gap: 2px;
  justify-items: center;
  border: 1px solid rgba(246,215,123,.16);
  border-radius: 10px;
  padding: 10px 7px;
  color: var(--gold-2);
  background:
    radial-gradient(circle at 50% 0%, rgba(246,215,123,.13), transparent 60%),
    rgba(255,255,255,.035);
  text-align: center;
}
.package-counts strong {
  display: block;
  font-size: clamp(16px, 1.45vw, 21px);
  line-height: 1;
  letter-spacing: 0;
}
.package-counts small {
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
}
.gift-note {
  width: fit-content;
  max-width: 100%;
  margin: 2px 0 4px;
  border: 1px solid rgba(217,166,49,.28);
  border-radius: 999px;
  padding: 5px 10px;
  color: var(--gold-2);
  background: rgba(217,166,49,.09);
  font-size: 12px;
  font-weight: 900;
  line-height: 1.45;
}
.muted-note {
  color: var(--muted);
  border-color: rgba(255,255,255,.1);
  background: rgba(255,255,255,.03);
  font-weight: 700;
}
.price-card ul {
  margin: 4px 0 20px;
  padding: 0;
  color: var(--muted);
  font-size: 13px;
  flex: 1;
  list-style: none;
}
.package-features {
  display: grid;
  gap: 7px;
}
.package-features li {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 8px;
  min-height: 34px;
  border: 1px solid rgba(255,255,255,.075);
  border-radius: 9px;
  padding: 8px 10px;
  background: rgba(255,255,255,.026);
  line-height: 1.45;
}
.package-features li::before {
  content: "";
  flex: 0 0 8px;
  width: 8px;
  height: 8px;
  margin-top: 6px;
  border-radius: 50%;
  background: var(--gold-2);
  box-shadow: 0 0 14px rgba(246,215,123,.45);
}
.price-card .btn { margin-top: auto; }
.home-packages {
  background:
    radial-gradient(circle at 16% 8%, rgba(217,166,49,.13), transparent 28rem),
    #080808;
}
.home-packages .section-head { max-width: 940px; }
.packages-more {
  display: table;
  margin: 18px auto 0;
}

.vod-update-section {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, .92fr);
  gap: clamp(22px, 4vw, 56px);
  align-items: center;
  overflow: hidden;
  padding: clamp(46px, 7vw, 86px) clamp(18px, 4vw, 64px);
  background:
    radial-gradient(circle at 90% 12%, rgba(213,40,47,.14), transparent 24rem),
    linear-gradient(135deg, #080808, #111014);
  border-block: 1px solid rgba(246,215,123,.13);
}
.vod-update-section::before {
  content: "";
  position: absolute;
  inset: 16% -18% auto auto;
  width: 42%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(246,215,123,.62), transparent);
  animation: vodSweep 5s ease-in-out infinite;
}
.vod-update-media {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(246,215,123,.22);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  background: #050505;
  min-height: 360px;
}
.vod-update-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0,0,0,.76), transparent 17%, transparent 78%, rgba(0,0,0,.56)),
    linear-gradient(0deg, rgba(0,0,0,.44), transparent 32%, rgba(0,0,0,.22));
  pointer-events: none;
}
.poster-wall {
  display: grid;
  gap: 18px;
  padding: 28px 0;
  transform: perspective(900px) rotateY(-5deg);
  transform-origin: center;
}
.poster-row {
  display: flex;
  gap: 14px;
  width: max-content;
  animation: posterMarquee 42s linear infinite;
}
.poster-row-alt {
  margin-inline-start: -95px;
  animation-duration: 52s;
  animation-direction: reverse;
}
.poster-wall figure {
  position: relative;
  flex: 0 0 108px;
  aspect-ratio: 2 / 3;
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid rgba(246,215,123,.18);
  background: #151515;
  box-shadow: 0 14px 28px rgba(0,0,0,.38);
  transition: transform .2s ease, border-color .2s ease;
}
.poster-wall figure::before {
  content: "2026";
  position: absolute;
  z-index: 2;
  top: 7px;
  inset-inline-start: 7px;
  border-radius: 999px;
  padding: 2px 7px;
  color: #160f04;
  background: var(--gold-2);
  font-size: 10px;
  font-weight: 900;
}
.poster-wall img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.poster-wall figcaption {
  position: absolute;
  inset-inline: 0;
  bottom: 0;
  z-index: 2;
  padding: 20px 7px 7px;
  background: linear-gradient(0deg, rgba(0,0,0,.9), transparent);
  color: #fff7e8;
  font-size: 10px;
  font-weight: 800;
  line-height: 1.25;
  text-align: start;
}
.poster-wall figure:hover {
  transform: translateY(-6px) scale(1.03);
  border-color: rgba(246,215,123,.46);
}
.vod-update-copy {
  position: relative;
  z-index: 1;
}
.vod-update-copy p:not(.kicker) { color: var(--muted); }
.vod-pulse-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}
.vod-pulse-list span {
  border: 1px solid rgba(246,215,123,.24);
  border-radius: 999px;
  color: var(--gold-2);
  background: rgba(255,255,255,.04);
  padding: 6px 13px;
  font-size: 12px;
  font-weight: 900;
}

.library-tools {
  padding: 30px clamp(18px, 4vw, 64px) 8px;
  display: grid;
  gap: 14px;
}
.search-box { display: grid; gap: 8px; max-width: 720px; }
.search-box span { color: var(--muted); }
.search-box input {
  height: 50px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  color: var(--text);
  padding: 0 16px;
  font: inherit;
}
.filters { display: flex; flex-wrap: wrap; gap: 10px; }
.filter-btn {
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  color: var(--text);
  cursor: pointer;
}
.filter-btn.active { color: #150f04; background: var(--gold); }
.library-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  padding: 14px clamp(18px, 4vw, 64px) 66px;
}
.library-item { min-height: 104px; }
.library-item strong { display: block; line-height: 1.35; }
.library-item span { color: var(--gold-2); font-size: 13px; }

.device-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.downloader-section {
  background:
    linear-gradient(135deg, rgba(245,116,20,.12), rgba(217,166,49,.08)),
    #090909;
  border-block: 1px solid rgba(246,215,123,.14);
}
.downloader-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  max-width: none;
}
.downloader-head > div {
  max-width: 820px;
}
.downloader-head img {
  width: 118px;
  height: 76px;
  object-fit: cover;
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,.18);
}
.apps-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.download-card {
  display: grid;
  gap: 8px;
  align-content: start;
  min-height: 210px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.025));
  transition: transform .2s ease, border-color .2s ease;
}
.download-card:hover {
  transform: translateY(-4px);
  border-color: rgba(246,215,123,.36);
}
.download-card p {
  margin: 0;
  color: var(--muted);
}
.download-card strong {
  width: fit-content;
  padding: 5px 12px;
  border-radius: 999px;
  background: rgba(246,215,123,.12);
  color: var(--gold-2);
  font-size: 20px;
  direction: ltr;
}
.download-card.mac-card {
  border-color: rgba(246,215,123,.34);
  background:
    linear-gradient(135deg, rgba(246,215,123,.11), rgba(44,139,255,.08)),
    linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.025));
}
.download-card.mac-card strong {
  color: #f8f2e7;
  background: rgba(255,255,255,.10);
}
.download-card .btn {
  align-self: end;
  margin-top: 10px;
}
.steps, .faq-list { padding: clamp(42px, 6vw, 72px) clamp(18px, 4vw, 64px); }
.steps ol {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
  counter-reset: step;
}
.steps li {
  counter-increment: step;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  padding: 20px;
  color: var(--muted);
}
.steps li::before {
  content: counter(step);
  display: block;
  color: var(--gold-2);
  font-size: 32px;
  font-weight: 900;
}
.faq-list { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
.faq-list h2, .device-grid h2, .price-card h2 {
  font-size: clamp(18px, 1.65vw, 24px);
}

.world-cup-section {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(360px, .88fr);
  gap: clamp(22px, 4vw, 54px);
  align-items: center;
  padding: clamp(46px, 7vw, 86px) clamp(18px, 4vw, 64px);
  border-block: 1px solid rgba(246,215,123,.16);
  background:
    linear-gradient(135deg, rgba(213,40,47,.12), rgba(217,166,49,.10)),
    #090909;
}
.world-cup-media {
  border: 1px solid rgba(246,215,123,.22);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.world-cup-media img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}
.world-cup-copy p:not(.kicker) { color: var(--muted); }
.cup-gift {
  display: grid;
  gap: 4px;
  margin: 16px 0 6px;
  border: 1px solid rgba(246,215,123,.32);
  border-radius: var(--radius);
  padding: 13px 15px;
  background:
    linear-gradient(135deg, rgba(246,215,123,.14), rgba(213,40,47,.10)),
    rgba(255,255,255,.035);
  box-shadow: 0 16px 36px rgba(217,166,49,.10);
}
.cup-gift strong {
  color: var(--gold-2);
  font-size: 15px;
}
.cup-gift span {
  color: #fff7e8;
  font-weight: 800;
  line-height: 1.65;
}
.cup-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 18px 0 22px;
}
.cup-tags span {
  color: var(--gold-2);
  border: 1px solid rgba(246,215,123,.24);
  border-radius: 999px;
  padding: 5px 11px;
  font-size: 12px;
}

.trial-section {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, .95fr);
  gap: clamp(24px, 4vw, 56px);
  align-items: center;
  padding: clamp(46px, 7vw, 86px) clamp(18px, 4vw, 64px);
  background:
    radial-gradient(circle at 80% 20%, rgba(246,215,123,.12), transparent 24rem),
    linear-gradient(135deg, #101012, #080808);
  border-bottom: 1px solid rgba(246,215,123,.13);
}
.trial-media {
  border: 1px solid rgba(246,215,123,.24);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: #070707;
}
.trial-media img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}
.trial-copy p:not(.kicker), .trial-copy li {
  color: var(--muted);
}
.trial-copy ul {
  margin: 18px 0 22px;
  padding: 0 18px 0 0;
}
.trial-copy li {
  margin-bottom: 6px;
}

.self-service-section {
  display: grid;
  grid-template-columns: minmax(360px, .88fr) minmax(0, 1.12fr);
  gap: clamp(24px, 4vw, 56px);
  align-items: center;
  padding: clamp(46px, 7vw, 86px) clamp(18px, 4vw, 64px);
  background:
    radial-gradient(circle at 18% 26%, rgba(246,215,123,.12), transparent 22rem),
    linear-gradient(135deg, #0b0b0c, #111014);
  border-bottom: 1px solid rgba(246,215,123,.13);
}
.self-service-copy p:not(.kicker) {
  color: var(--muted);
}
.self-service-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 20px;
}
.self-service-actions span {
  color: var(--gold-2);
  border: 1px solid rgba(246,215,123,.24);
  background: rgba(255,255,255,.035);
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 12px;
}
.self-service-media {
  border: 1px solid rgba(246,215,123,.24);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: #070707;
}
.self-service-media img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.footer {
  display: grid;
  grid-template-columns: 1fr;
  justify-items: center;
  gap: 18px;
  padding: 42px clamp(18px, 4vw, 64px) 22px;
  border-top: 1px solid var(--line);
  background:
    radial-gradient(circle at 50% 0%, rgba(217,166,49,.13), transparent 18rem),
    #050505;
  color: var(--muted);
  text-align: center;
}
.footer > div {
  display: grid;
  justify-items: center;
  max-width: 760px;
  text-align: center;
}
.footer img { width: 58px; height: 58px; object-fit: contain; margin-bottom: 10px; }
.footer strong { display: block; color: var(--text); font-size: 18px; }
.footer p { margin: 8px 0 0; max-width: 680px; }
.footer small {
  width: min(100%, 820px);
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,.08);
  color: #8f877a;
  text-align: center;
}
.footer p a { color: var(--gold-2); font-weight: 800; }
.footer nav {
  display: flex;
  justify-content: center;
  align-content: center;
  flex-wrap: wrap;
  gap: 10px 18px;
  order: -1;
  padding: 0 0 6px;
}
.footer nav a {
  color: var(--muted);
  font-size: 14px;
  padding: 4px 0;
}
.footer a:hover { color: var(--gold-2); }

.blog-hero::after,
.matches-hero::after {
  background:
    linear-gradient(90deg, rgba(7,7,7,.7), rgba(7,7,7,.42)),
    linear-gradient(0deg, rgba(7,7,7,.64), rgba(7,7,7,.18));
}

.blog-index .section-head,
.match-board .section-head {
  max-width: 930px;
}

.blog-index {
  max-width: 1240px;
  margin-inline: auto;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(260px, 1fr));
  gap: 20px;
  margin: 30px auto 0;
}

.blog-card {
  display: grid;
  grid-template-rows: auto 1fr;
  min-height: 100%;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(255,255,255,.045), rgba(255,255,255,.018));
  box-shadow: 0 18px 48px rgba(0,0,0,.22);
  transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}

.blog-card:hover {
  transform: translateY(-5px);
  border-color: rgba(246,215,123,.42);
  box-shadow: 0 26px 70px rgba(0,0,0,.34);
}

.blog-card img {
  width: 100%;
  height: 190px;
  object-fit: cover;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.blog-card div {
  display: grid;
  align-content: start;
  gap: 9px;
  padding: 18px;
}

.blog-card span {
  color: var(--gold-2);
  font-size: 12px;
  font-weight: 900;
}

.blog-card h2 {
  font-size: 17px;
  line-height: 1.55;
}

.blog-card p {
  margin: 0;
  color: var(--muted);
  font-size: 13.5px;
  line-height: 1.8;
}

.article-page {
  width: min(100%, 1120px);
  margin-inline: auto;
  padding: clamp(32px, 5vw, 64px) clamp(16px, 4vw, 28px);
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 22px;
  color: var(--muted);
  font-size: 13px;
}

.breadcrumb a {
  color: var(--gold-2);
  font-weight: 800;
}

.article-header {
  max-width: 900px;
  margin-inline: auto;
  text-align: center;
}

.article-header h1 {
  font-size: clamp(26px, 2.8vw, 40px);
  line-height: 1.35;
}

.article-header p {
  margin: 16px 0 0;
  color: #d9d0c2;
}

.article-hero-img {
  display: block;
  width: min(100%, 920px);
  margin: 28px auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border: 1px solid rgba(246,215,123,.2);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.article-content {
  max-width: 860px;
  margin-inline: auto;
  color: #d9d0c2;
  font-size: 16px;
  line-height: 2;
  padding: 28px;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 8px;
  background:
    radial-gradient(circle at 100% 0%, rgba(246,215,123,.08), transparent 18rem),
    rgba(255,255,255,.025);
}

.article-content p {
  margin: 0 0 18px;
}

.article-content h2 {
  margin: 34px 0 16px;
  font-size: clamp(22px, 2.2vw, 30px);
}

.article-content strong,
.article-content a {
  color: var(--gold-2);
}

.related-sites {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}

.related-sites a,
.article-feature-list li {
  border: 1px solid rgba(246,215,123,.18);
  background: rgba(255,255,255,.035);
}

.related-sites a {
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 13px;
}

.article-feature-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  padding: 0;
  margin: 0 0 28px;
  list-style: none;
}

.article-feature-list li {
  position: relative;
  padding: 12px 38px 12px 14px;
  border-radius: var(--radius);
}

.article-feature-list li::before {
  content: "";
  position: absolute;
  inset-inline-start: 15px;
  top: 21px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold-2);
  box-shadow: 0 0 16px rgba(246,215,123,.55);
}

.article-cta,
.match-cta {
  margin-top: 32px;
  padding: 24px;
  border: 1px solid rgba(246,215,123,.24);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 15% 15%, rgba(246,215,123,.12), transparent 16rem),
    linear-gradient(135deg, rgba(255,255,255,.045), rgba(255,255,255,.02));
}

.article-cta p,
.match-cta p {
  color: var(--muted);
}

.match-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 26px;
}

.match-card {
  display: grid;
  gap: 12px;
  min-height: 250px;
  padding: 22px;
  border: 1px solid rgba(246,215,123,.2);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255,255,255,.045), rgba(255,255,255,.018)),
    radial-gradient(circle at 90% 0%, rgba(213,40,47,.18), transparent 16rem);
  box-shadow: 0 18px 48px rgba(0,0,0,.24);
}

.match-card > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.match-card h2 {
  font-size: clamp(21px, 2.2vw, 30px);
}

.match-card p,
.match-card ul {
  margin: 0;
  color: var(--muted);
}

.match-card ul {
  display: grid;
  gap: 6px;
  padding: 0;
  list-style: none;
}

.match-status {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  color: #101010;
  background: var(--gold-2);
  font-size: 12px;
  font-weight: 900;
}

.match-status.live {
  color: #fff;
  background: #d5282f;
}

.match-cta {
  text-align: center;
}

@keyframes heroFade {
  0%, 30% { opacity: 1; }
  36%, 100% { opacity: 0; }
}
@keyframes slowZoom {
  0% { transform: scale(1.04); }
  50% { transform: scale(1.1); }
  100% { transform: scale(1.04); }
}
@keyframes riseIn {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@keyframes spinSoft {
  to { transform: rotate(388deg); }
}
@keyframes slowBg {
  from { transform: scale(1); }
  to { transform: scale(1.06); }
}
@keyframes metricFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}
@keyframes shine {
  0%, 62% { left: -45%; }
  100% { left: 125%; }
}
@keyframes sportsSignal {
  0%, 18% { transform: translateX(0); opacity: 0; }
  32% { opacity: 1; }
  72% { opacity: .8; }
  100% { transform: translateX(330%); opacity: 0; }
}
@keyframes sportsFrame {
  from { transform: scale(1.02) translateX(0); }
  to { transform: scale(1.07) translateX(-10px); }
}
@keyframes posterDrift {
  from { transform: scale(1.02) translateX(0); }
  to { transform: scale(1.07) translateX(12px); }
}
@keyframes vodSweep {
  0%, 22% { transform: translateX(0); opacity: 0; }
  42% { opacity: 1; }
  100% { transform: translateX(-220%); opacity: 0; }
}
@keyframes posterMarquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@media (max-width: 1240px) {
  .menu-toggle { display: grid; place-items: center; }
  .main-nav {
    display: none;
    position: absolute;
    top: 82px;
    inset-inline: 18px;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #101010;
    flex-direction: column;
    align-items: stretch;
    box-shadow: var(--shadow);
  }
  .main-nav.open { display: flex; }
  .intro-grid, .split-section, .world-cup-section, .trial-section, .self-service-section, .vod-update-section { grid-template-columns: 1fr; }
  .split-section.reverse .split-media { order: 0; }
  .pricing, .library-grid, .device-grid, .service-cards, .apps-grid, .quality-grid, .blog-grid, .match-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 680px) {
  body { font-size: 15px; }
  .topbar {
    min-height: 72px;
    padding-inline: 12px;
    gap: 10px;
  }
  .brand { gap: 7px; min-width: 0; }
  .brand img { width: 42px; height: 42px; }
  .brand span {
    white-space: normal;
    line-height: 1.25;
    font-size: 14px;
  }
  .menu-toggle { flex: 0 0 42px; }
  .whatsapp-float {
    inset-inline-end: 12px;
    bottom: 14px;
    min-height: 46px;
    padding: 0 13px;
    font-size: 13px;
  }
  .nav-cta,
  html[lang="en"] .nav-cta {
    width: 100%;
    min-width: 0;
    padding-inline: 16px;
  }
  .whatsapp-float svg {
    width: 20px;
    height: 20px;
  }
  .hero {
    min-height: auto;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    padding: 72px 12px 24px;
  }
  .hero::after {
    background:
      linear-gradient(90deg, rgba(7,7,7,.78), rgba(7,7,7,.52)),
      linear-gradient(0deg, rgba(7,7,7,.72), rgba(7,7,7,.16));
  }
  .hero-slide img {
    object-position: center;
  }
  .hero-content {
    width: 100%;
    max-width: none;
    padding-top: 0;
  }
  .kicker {
    font-size: 12px;
    margin-bottom: 9px;
  }
  .kicker::before { width: 20px; }
  h1 {
    max-width: none;
    font-size: 24px;
    line-height: 1.32;
  }
  h2 { font-size: 22px; }
  .hero-content p:not(.kicker) {
    max-width: none;
    margin-top: 12px;
    font-size: 14px;
    line-height: 1.85;
  }
  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 18px;
  }
  .hero-actions .btn {
    width: 100%;
    height: 44px;
    padding-inline: 12px;
  }
  .hero-metrics {
    position: relative;
    inset: auto;
    width: 100%;
    margin-top: 18px;
    gap: 10px;
  }
  .hero-metrics, .feature-list, .pricing, .library-grid, .device-grid, .service-cards, .apps-grid, .steps ol, .faq-list, .quality-grid, .blog-grid, .match-grid, .article-feature-list {
    grid-template-columns: 1fr;
  }
  .hero-metrics div {
    min-height: 108px;
    padding: 14px 16px;
  }
  .hero-metrics strong { font-size: 30px; }
  .downloader-head { align-items: flex-start; flex-direction: column; }
  .hero-metrics div { border: 1px solid rgba(246,215,123,.24); }
  .section, .home-packages, .vod-update-section, .world-cup-section, .trial-section, .self-service-section {
    padding-inline: 12px;
  }
  .page-hero {
    min-height: 300px;
    padding-inline: 12px;
    padding-bottom: 30px;
  }
  .poster-wall {
    transform: none;
    padding-block: 22px;
  }
  .poster-wall figure { flex-basis: 92px; }
  .vod-update-media { min-height: 300px; }
  .footer { grid-template-columns: 1fr; }
  .footer > div { justify-items: center; text-align: center; }
  .footer nav { justify-content: center; }
  .article-page { padding-inline: 12px; }
  .article-header h1 { font-size: 25px; }
  .blog-card div, .match-card, .article-cta, .match-cta { padding: 16px; }
}
