:root {
  --bg: #020917;
  --bg-soft: #07172d;
  --panel: #081b34;
  --panel-2: #0a203f;
  --stroke: rgba(95, 158, 238, 0.24);
  --stroke-bright: rgba(57, 141, 255, 0.45);
  --text: #f7fbff;
  --muted: #9fb0ca;
  --blue: #1777ff;
  --blue-2: #46a6ff;
  --orange: #ff7a00;
  --orange-2: #ff9f2d;
  --green: #32d36e;
  --shadow: 0 26px 80px rgba(0, 0, 0, 0.36);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", Arial, sans-serif;
  color: var(--text);
  background: url("./assets/landing-background.png") center top / cover fixed #020917;
}

body::before {
  content: none;
}

body::after {
  content: none;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

.page-shell {
  overflow: hidden;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: 260px 1fr auto;
  align-items: center;
  gap: 22px;
  min-height: 82px;
  padding: 14px clamp(22px, 5vw, 94px);
  background: rgba(2, 9, 23, 0.82);
  border-bottom: 1px solid rgba(91, 150, 244, 0.14);
  backdrop-filter: blur(20px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand img {
  width: 58px;
  height: 58px;
  object-fit: contain;
}

.brand strong,
.brand small {
  display: block;
  line-height: 1.05;
  text-transform: uppercase;
}

.brand strong {
  font-size: 17px;
  font-weight: 900;
}

.brand small {
  margin-top: 5px;
  color: #d7e4f7;
  font-size: 12px;
  letter-spacing: 0.03em;
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: clamp(16px, 2.8vw, 42px);
  color: #d7e4f7;
  font-size: 13px;
  font-weight: 800;
}

.main-nav a:hover {
  color: #ffffff;
}

.top-actions,
.hero-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 20px;
  border-radius: 6px;
  border: 1px solid transparent;
  font-size: 13px;
  font-weight: 900;
  white-space: nowrap;
}

.btn.primary {
  color: #ffffff;
  background: linear-gradient(135deg, var(--orange), var(--orange-2));
  box-shadow: 0 14px 34px rgba(255, 122, 0, 0.28);
}

.btn.ghost {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(130, 174, 242, 0.34);
}

.btn.big {
  min-height: 54px;
  padding-inline: 28px;
  font-size: 15px;
}

.btn.full {
  width: 100%;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(420px, 0.92fr) minmax(520px, 1.22fr);
  gap: clamp(34px, 5vw, 76px);
  align-items: center;
  min-height: 720px;
  padding: 58px clamp(22px, 5vw, 94px) 34px;
}

.athlete {
  position: absolute;
  pointer-events: none;
  opacity: 0.28;
  filter: drop-shadow(0 0 34px rgba(30, 130, 255, 0.44));
}

.athlete::before,
.athlete::after {
  content: "";
  position: absolute;
  background: linear-gradient(180deg, rgba(78, 171, 255, 0.7), rgba(12, 39, 76, 0.12));
}

.athlete::before {
  width: 74px;
  height: 190px;
  border-radius: 48px 48px 28px 28px;
  transform: skew(-12deg);
}

.athlete::after {
  width: 94px;
  height: 94px;
  top: -62px;
  left: -10px;
  border-radius: 50%;
  border: 2px solid rgba(89, 168, 255, 0.32);
  background: radial-gradient(circle, rgba(69, 166, 255, 0.32), rgba(5, 17, 34, 0.08));
}

.athlete-left {
  top: 96px;
  left: 0;
  width: 150px;
  height: 310px;
  transform: rotate(-10deg);
}

.athlete-low {
  bottom: 190px;
  left: 36px;
  width: 120px;
  height: 230px;
  transform: scale(0.7) rotate(7deg);
  opacity: 0.18;
}

.pill {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  margin-bottom: 24px;
  padding: 0 14px;
  color: #75b9ff;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  background: rgba(20, 100, 210, 0.12);
  border: 1px solid rgba(66, 160, 255, 0.24);
  border-radius: 999px;
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 650px;
}

.hero h1 {
  margin-bottom: 24px;
  font-size: clamp(46px, 5.8vw, 78px);
  line-height: 0.98;
  letter-spacing: 0;
}

.hero h1 span,
.section-title span,
.system-copy span,
.final-cta span {
  color: var(--orange);
}

.hero-copy > p:not(.pill) {
  max-width: 560px;
  margin-bottom: 30px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.8;
}

.hero-badges {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  max-width: 600px;
  margin-top: 44px;
}

.hero-badges span {
  min-height: 62px;
  padding: 13px 14px;
  color: #cce0ff;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.35;
  background: rgba(8, 28, 57, 0.72);
  border: 1px solid var(--stroke);
  border-radius: 8px;
}

.system-showcase {
  position: relative;
  z-index: 2;
}

.app-window {
  display: grid;
  grid-template-columns: 250px 1fr;
  min-height: 560px;
  padding: 10px;
  background: linear-gradient(145deg, rgba(9, 31, 61, 0.98), rgba(4, 16, 34, 0.98));
  border: 1px solid var(--stroke-bright);
  border-radius: 8px;
  box-shadow: var(--shadow), 0 0 60px rgba(0, 102, 255, 0.16);
}

.app-sidebar {
  display: grid;
  align-content: start;
  gap: 14px;
  padding: 16px;
  background: #06172f;
  border: 1px solid rgba(77, 150, 255, 0.18);
  border-radius: 8px;
}

.mini-brand {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 2px;
  color: #ffffff;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.mini-brand img {
  width: 36px;
}

.filter-block,
.slider-box {
  padding: 12px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(117, 176, 255, 0.19);
  border-radius: 6px;
}

.filter-block small,
.filter-block strong,
.slider-box span {
  display: block;
}

.filter-block small {
  margin-bottom: 7px;
  color: #7e93b2;
  font-size: 10px;
  font-weight: 800;
}

.filter-block strong,
.slider-box span {
  color: #ffffff;
  font-size: 12px;
  font-weight: 800;
}

.slider-box {
  background: #f3f8ff;
}

.slider-box span {
  color: #0b1b34;
}

.slider-box i {
  display: block;
  height: 7px;
  margin-top: 10px;
  background: var(--green);
  border-radius: 999px;
}

.app-sidebar button {
  min-height: 46px;
  color: #ffffff;
  font: inherit;
  font-size: 12px;
  font-weight: 900;
  background: linear-gradient(135deg, var(--orange), var(--orange-2));
  border: 0;
  border-radius: 6px;
}

.app-main {
  min-width: 0;
  padding: 12px 12px 12px 18px;
}

.app-tabs {
  display: flex;
  gap: 10px;
  margin-bottom: 14px;
}

.app-tabs span {
  min-height: 32px;
  padding: 8px 14px;
  color: #d7e4f7;
  font-size: 11px;
  font-weight: 900;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(130, 174, 242, 0.22);
  border-radius: 6px;
}

.radar-panel {
  display: grid;
  grid-template-columns: 1fr 220px;
  gap: 18px;
  min-height: 210px;
  padding: 24px;
  background: linear-gradient(135deg, #081c39, #041328);
  border: 1px solid rgba(66, 160, 255, 0.2);
  border-radius: 8px;
}

.radar-panel h2 {
  max-width: 430px;
  margin-bottom: 14px;
  font-size: 28px;
  line-height: 1.18;
}

.radar-panel p,
.radar-panel li {
  color: #aebed6;
  font-size: 13px;
  line-height: 1.55;
}

.radar-panel ul {
  display: grid;
  gap: 8px;
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
}

.radar-panel li::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-right: 8px;
  background: var(--green);
  border-radius: 50%;
}

.radar-orbit {
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  min-height: 190px;
  background:
    repeating-radial-gradient(circle, rgba(73, 163, 255, 0.28) 0 1px, transparent 1px 34px),
    linear-gradient(90deg, transparent 49.5%, rgba(73, 163, 255, 0.35) 50%, transparent 50.5%),
    linear-gradient(transparent 49.5%, rgba(73, 163, 255, 0.35) 50%, transparent 50.5%);
  border-radius: 50%;
}

.radar-orbit img {
  position: relative;
  z-index: 2;
  width: 82px;
}

.radar-orbit span {
  position: absolute;
  width: 130px;
  height: 130px;
  background: conic-gradient(from 270deg, rgba(74, 170, 255, 0.55), transparent 44%);
  border-radius: 50%;
  animation: spin 4s linear infinite;
}

.radar-orbit b {
  position: absolute;
  top: 72px;
  right: 36px;
  width: 14px;
  height: 14px;
  background: var(--orange);
  border-radius: 50%;
  box-shadow: 0 0 20px var(--orange);
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.mini-metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 14px;
}

.mini-metrics article {
  min-height: 118px;
  padding: 16px;
  background: #0b203f;
  border: 1px solid rgba(95, 158, 238, 0.18);
  border-radius: 8px;
}

.mini-metrics span,
.mini-metrics small {
  display: block;
  color: #8fa4c2;
  font-size: 11px;
  font-weight: 800;
}

.mini-metrics strong {
  display: block;
  margin: 12px 0 6px;
  font-size: 30px;
}

.mini-metrics small {
  color: var(--green);
}

.entries-card {
  min-height: 170px;
  margin-top: 14px;
  padding: 18px;
  background: #081a34;
  border: 1px solid rgba(95, 158, 238, 0.18);
  border-radius: 8px;
}

.landing-entry-list {
  display: grid;
  gap: 10px;
}

.landing-entry-list article {
  padding: 12px;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(117, 176, 255, 0.18);
  border-radius: 8px;
}

.landing-entry-list span,
.landing-entry-list small {
  display: block;
  color: #91a9c9;
  font-size: 11px;
  font-weight: 800;
}

.landing-entry-list strong {
  display: block;
  margin: 5px 0;
  color: #ffffff;
  font-size: 13px;
}

.entries-title {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 26px;
}

.entries-title a {
  color: #75b9ff;
  font-size: 12px;
  font-weight: 900;
}

.empty-state {
  display: grid;
  place-items: center;
  color: #93a7c5;
  text-align: center;
}

.empty-state span {
  width: 36px;
  height: 36px;
  border: 2px solid rgba(117, 185, 255, 0.32);
  border-radius: 8px;
}

.empty-state p {
  margin: 12px 0 4px;
  font-size: 13px;
  font-weight: 900;
}

.mobile-app-explainer {
  display: none;
}

.odds-ticker {
  margin: 0 0 34px;
  padding: 0 clamp(22px, 5vw, 94px);
  overflow: hidden;
}

.ticker-track {
  display: flex;
  align-items: center;
  gap: 0;
  overflow: hidden;
  min-height: 48px;
  color: #d8e8ff;
  font-size: 12px;
  font-weight: 800;
  background: #06162d;
  border: 1px solid rgba(61, 142, 255, 0.26);
  border-radius: 8px;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.24);
  mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
}

.ticker-track:hover .ticker-group {
  animation-play-state: paused;
}

.ticker-group {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
  gap: 18px;
  min-width: max-content;
  padding: 0 18px;
  animation: odds-marquee 34s linear infinite;
}

.ticker-group span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 10px;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(116, 177, 255, 0.12);
  border-radius: 999px;
  white-space: nowrap;
}

.ticker-group b {
  margin-left: 6px;
  padding: 4px 8px;
  color: #05172e;
  background: var(--green);
  border-radius: 999px;
}

.ticker-group strong {
  margin-left: 6px;
  color: #ffffff;
}

@keyframes odds-marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-100%);
  }
}

.traffic-conversion {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  padding: 0 clamp(22px, 5vw, 94px) 34px;
}

.traffic-conversion article {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 8px 14px;
  align-items: start;
  min-height: 122px;
  padding: 20px;
  border: 1px solid rgba(71, 143, 255, 0.28);
  border-radius: 8px;
  background: rgba(4, 18, 40, 0.8);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.traffic-conversion span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 8px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--orange), var(--orange-2));
  font-size: 12px;
  font-weight: 900;
}

.traffic-conversion strong {
  align-self: center;
  font-size: 16px;
  font-weight: 900;
}

.traffic-conversion p {
  grid-column: 2;
  margin: 0;
  color: #bdd0ed;
  font-size: 13px;
  line-height: 1.55;
}

.pain-section,
.resources-section,
.system-section,
.sports-section,
.bookmaker-section,
.coverage-section,
.steps-section,
.plan-section,
.testimonials,
.faq-section,
.final-cta {
  padding: 50px clamp(22px, 5vw, 94px);
}

.section-title {
  max-width: 800px;
  margin-bottom: 36px;
}

.section-title.center {
  margin-inline: auto;
  text-align: center;
}

section[id] {
  scroll-margin-top: 96px;
}

.section-title h2,
.system-copy h2,
.final-cta h2 {
  margin-bottom: 10px;
  font-size: clamp(32px, 4.3vw, 54px);
  line-height: 1.08;
  letter-spacing: 0;
}

.section-title p,
.system-copy p,
.final-cta p {
  color: var(--muted);
  line-height: 1.6;
}

.section-title span,
.system-copy span {
  color: var(--blue-2);
}

.pain-grid,
.resource-grid,
.testimonial-grid,
.faq-grid {
  display: grid;
  gap: 22px;
}

.pain-grid {
  grid-template-columns: repeat(4, 1fr);
  max-width: 1120px;
  margin: 0 auto;
}

.pain-grid article,
.resource-grid article,
.testimonial-grid article,
.faq-grid details,
.step-flow article {
  background: rgba(7, 23, 45, 0.78);
  border: 1px solid var(--stroke);
  border-radius: 8px;
  box-shadow: 0 20px 46px rgba(0, 0, 0, 0.22);
}

.pain-grid article {
  min-height: 170px;
  padding: 24px;
}

.pain-grid i {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  margin-bottom: 24px;
  color: var(--orange);
  font-style: normal;
  font-weight: 900;
  background: rgba(255, 122, 0, 0.11);
  border: 1px solid rgba(255, 122, 0, 0.28);
  border-radius: 6px;
}

.pain-grid h3,
.resource-grid h3,
.step-flow h3 {
  margin-bottom: 10px;
  font-size: 16px;
}

.pain-grid p,
.resource-grid p,
.step-flow p,
.testimonial-grid p,
.faq-grid p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}

.resources-section {
  background:
    radial-gradient(circle at 50% 40%, rgba(19, 101, 230, 0.14), transparent 34%),
    linear-gradient(180deg, transparent, rgba(5, 20, 42, 0.72), transparent);
}

.resource-grid {
  grid-template-columns: repeat(3, 1fr);
  max-width: 1100px;
  margin: 0 auto;
}

.resource-grid article {
  display: grid;
  grid-template-columns: 58px 1fr;
  column-gap: 18px;
  min-height: 130px;
  padding: 22px;
}

.resource-grid article p {
  grid-column: 2;
}

.blue-icon {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  color: #72bcff;
  font-size: 19px;
  font-weight: 900;
  background: rgba(23, 119, 255, 0.12);
  border: 1px solid rgba(70, 166, 255, 0.33);
  border-radius: 8px;
  box-shadow: inset 0 0 22px rgba(23, 119, 255, 0.16), 0 0 22px rgba(23, 119, 255, 0.18);
}

.system-section {
  display: grid;
  grid-template-columns: minmax(420px, 1fr) minmax(380px, 0.9fr);
  gap: 62px;
  align-items: center;
}

.tilted-preview {
  perspective: 900px;
}

.system-mockup {
  width: 100%;
  border: 1px solid var(--stroke-bright);
  border-radius: 8px;
  box-shadow: var(--shadow), 0 0 46px rgba(23, 119, 255, 0.24);
  transform: rotateY(12deg) rotateX(4deg);
  transform-origin: center;
}

.system-copy ul,
.price-card ul {
  display: grid;
  gap: 13px;
  margin: 24px 0 28px;
  padding: 0;
  list-style: none;
}

.system-copy li,
.price-card li {
  color: #d7e4f7;
  line-height: 1.4;
}

.system-copy li::before,
.price-card li::before {
  content: "\2713";
  display: inline-grid;
  place-items: center;
  width: 18px;
  height: 18px;
  margin-right: 10px;
  color: #ffffff;
  font-size: 12px;
  background: var(--blue);
  border-radius: 50%;
}

.sports-section {
  background:
    linear-gradient(180deg, rgba(5, 20, 42, 0.1), rgba(5, 20, 42, 0.78)),
    radial-gradient(circle at 50% 4%, rgba(255, 122, 0, 0.13), transparent 28%),
    radial-gradient(circle at 18% 70%, rgba(23, 119, 255, 0.18), transparent 30%);
}

.sports-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  max-width: 1120px;
  margin: 0 auto;
}

.sports-grid article {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  min-height: 210px;
  padding: 24px;
  text-align: center;
  background: rgba(7, 23, 45, 0.82);
  border: 1px solid var(--stroke);
  border-radius: 8px;
  box-shadow: 0 20px 46px rgba(0, 0, 0, 0.22);
}

.sports-grid article::after {
  content: "";
  position: absolute;
  right: -34px;
  bottom: -34px;
  width: 130px;
  height: 130px;
  border: 1px solid rgba(70, 166, 255, 0.2);
  border-radius: 50%;
}

.sport-symbol {
  position: relative;
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  margin-bottom: 18px;
  background: radial-gradient(circle, rgba(23, 119, 255, 0.28), rgba(23, 119, 255, 0.1));
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  box-shadow: 0 0 28px rgba(23, 119, 255, 0.26);
}

.sport-symbol::before {
  content: "";
  position: absolute;
  inset: -9px;
  border: 1px dashed rgba(70, 166, 255, 0.36);
  border-radius: 50%;
}

.sport-symbol svg {
  position: relative;
  z-index: 1;
  width: 44px;
  height: 44px;
  filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.28));
}

.live-symbol {
  background: radial-gradient(circle, rgba(70, 166, 255, 0.34), rgba(23, 119, 255, 0.1));
}

.sports-grid strong {
  display: block;
  margin-bottom: 12px;
  color: #ffffff;
  font-size: 16px;
}

.sports-grid p {
  max-width: 230px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
}

.league-showcase {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  max-width: 1180px;
  margin: 28px auto 0;
}

.league-card {
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  gap: 12px;
  min-height: 220px;
  padding: 18px;
  text-align: center;
  background: linear-gradient(135deg, rgba(7, 28, 58, 0.88), rgba(4, 18, 40, 0.9));
  border: 1px solid rgba(80, 151, 255, 0.24);
  border-radius: 8px;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.2);
}

.league-card strong,
.league-card small {
  display: block;
}

.league-card strong {
  color: #ffffff;
  font-size: 16px;
}

.league-card small {
  margin-top: -4px;
  color: #9fb3d2;
  font-size: 12px;
  line-height: 1.45;
}

.logo-plate {
  display: grid;
  place-items: center;
  width: 100%;
  min-height: 116px;
  padding: 16px;
  background: linear-gradient(180deg, #ffffff, #dbe7f7);
  border: 1px solid rgba(255, 255, 255, 0.76);
  border-radius: 12px;
  box-shadow: inset 0 0 22px rgba(23, 119, 255, 0.08), 0 18px 34px rgba(0, 0, 0, 0.2);
}

.logo-plate img {
  max-width: 148px;
  max-height: 84px;
  object-fit: contain;
}

.logo-plate.wide img {
  max-width: 170px;
}

.coverage-note {
  max-width: 760px;
  margin: 22px auto 0;
  color: #9fb3d2;
  font-size: 13px;
  line-height: 1.6;
  text-align: center;
}

.bookmaker-section {
  background:
    linear-gradient(180deg, rgba(4, 18, 40, 0.28), rgba(5, 20, 42, 0.82)),
    radial-gradient(circle at 74% 24%, rgba(70, 166, 255, 0.2), transparent 28%);
}

.bookmaker-layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.8fr) minmax(420px, 1.2fr);
  gap: 28px;
  max-width: 1180px;
  margin: 0 auto;
  align-items: stretch;
}

.price-radar-card,
.bookmaker-copy {
  padding: 26px;
  background: linear-gradient(135deg, rgba(7, 28, 58, 0.9), rgba(4, 18, 40, 0.94));
  border: 1px solid rgba(80, 151, 255, 0.26);
  border-radius: 8px;
  box-shadow: 0 22px 54px rgba(0, 0, 0, 0.24);
}

.price-radar-head {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 20px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(130, 174, 242, 0.18);
}

.price-radar-head span {
  color: var(--orange-2);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.price-radar-head strong {
  color: #ffffff;
  font-size: 18px;
}

.best-odd-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 4px 16px;
  align-items: center;
  padding: 16px 0;
  border-bottom: 1px solid rgba(130, 174, 242, 0.14);
}

.best-odd-row:last-child {
  border-bottom: 0;
}

.best-odd-row span,
.best-odd-row small {
  color: #9fb3d2;
  font-size: 13px;
}

.best-odd-row strong {
  color: #ffffff;
  font-size: 26px;
  font-weight: 900;
}

.best-odd-row small {
  grid-column: 1 / -1;
}

.featured-odd strong {
  color: #63c7ff;
  text-shadow: 0 0 18px rgba(70, 166, 255, 0.36);
}

.bookmaker-copy h3 {
  max-width: 680px;
  margin-bottom: 12px;
  color: #ffffff;
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.12;
}

.bookmaker-copy p {
  max-width: 720px;
  color: #bdd0ed;
  line-height: 1.65;
}

.bookmaker-logos {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin: 24px 0 14px;
}

.bookmaker-logo {
  display: grid;
  place-items: center;
  min-height: 78px;
  padding: 14px;
  background: linear-gradient(180deg, #ffffff, #e3edf8);
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 8px;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.22);
}

.bookmaker-logo img {
  max-width: 132px;
  max-height: 42px;
  object-fit: contain;
}

.bookmaker-note {
  margin-bottom: 0;
  color: #8ca4c8 !important;
  font-size: 12px;
}

.coverage-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 8% 12%, rgba(70, 166, 255, 0.18), transparent 18%),
    radial-gradient(circle at 92% 8%, rgba(255, 122, 0, 0.09), transparent 18%),
    linear-gradient(180deg, rgba(2, 9, 23, 0.2), rgba(2, 9, 23, 0.86));
}

.coverage-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(70, 166, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(70, 166, 255, 0.05) 1px, transparent 1px);
  background-size: 52px 52px;
  opacity: 0.28;
  pointer-events: none;
}

.coverage-hero,
.coverage-sports-grid,
.coverage-panel,
.trust-strip {
  position: relative;
  z-index: 1;
}

.coverage-hero {
  max-width: 940px;
  margin: 0 auto 36px;
  text-align: center;
}

.coverage-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 34px;
  margin-bottom: 18px;
  padding: 0 20px;
  color: #75bdff;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  background: rgba(23, 119, 255, 0.14);
  border: 1px solid rgba(70, 166, 255, 0.34);
  border-radius: 999px;
}

.coverage-pill::after {
  content: "+";
  color: var(--green);
}

.coverage-hero h2 {
  max-width: 900px;
  margin: 0 auto 16px;
  font-size: clamp(44px, 6vw, 78px);
  line-height: 1.05;
  letter-spacing: 0;
}

.coverage-hero h2 span,
.coverage-panel-title span,
.radar-sales-card h3 span {
  color: #2f92ff;
}

.coverage-hero p,
.coverage-panel-title p {
  max-width: 760px;
  margin: 0 auto;
  color: #bdd0ed;
  line-height: 1.65;
}

.coverage-sports-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
  max-width: 1280px;
  margin: 0 auto 42px;
}

.coverage-sports-grid article,
.coverage-panel,
.trust-strip {
  background: linear-gradient(180deg, rgba(7, 23, 45, 0.78), rgba(4, 18, 40, 0.92));
  border: 1px solid rgba(80, 151, 255, 0.25);
  border-radius: 8px;
  box-shadow: 0 24px 54px rgba(0, 0, 0, 0.24);
}

.coverage-sports-grid article {
  display: grid;
  justify-items: center;
  align-content: start;
  min-height: 260px;
  padding: 34px 22px;
  text-align: center;
}

.coverage-sport-icon {
  display: grid;
  place-items: center;
  width: 80px;
  height: 80px;
  margin-bottom: 22px;
  background:
    radial-gradient(circle, rgba(47, 146, 255, 0.42), rgba(23, 119, 255, 0.12) 58%, transparent 59%),
    rgba(7, 23, 45, 0.74);
  border: 1px solid rgba(47, 146, 255, 0.62);
  border-radius: 50%;
  box-shadow: 0 0 32px rgba(23, 119, 255, 0.34);
}

.coverage-sport-icon svg {
  width: 56px;
  height: 56px;
}

.coverage-sport-icon.image-icon {
  width: 104px;
  height: 104px;
  margin-bottom: 18px;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.coverage-sport-icon.image-icon img {
  width: 116px;
  max-width: none;
  height: 116px;
  object-fit: contain;
  filter: drop-shadow(0 0 18px rgba(47, 146, 255, 0.38));
}

.coverage-sports-grid strong {
  color: #ffffff;
  font-size: 17px;
  text-transform: uppercase;
}

.coverage-sports-grid p {
  margin: 12px 0 0;
  color: #c8d8f2;
  font-size: 13px;
  line-height: 1.55;
}

.coverage-panel {
  max-width: 1320px;
  margin: 0 auto 20px;
  padding: 34px;
}

.coverage-panel-title {
  margin-bottom: 28px;
  text-align: center;
}

.coverage-panel-title h3 {
  margin-bottom: 10px;
  color: #ffffff;
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1.1;
}

.tournament-grid,
.house-logo-strip {
  display: grid;
  gap: 14px;
}

.tournament-grid {
  grid-template-columns: repeat(7, minmax(0, 1fr));
}

.tournament-card {
  display: grid;
  place-items: center;
  align-content: center;
  min-height: 178px;
  padding: 18px 14px;
  text-align: center;
  background: rgba(4, 18, 40, 0.76);
  border: 1px solid rgba(80, 151, 255, 0.24);
  border-radius: 8px;
}

.tournament-card.featured {
  border-color: rgba(47, 146, 255, 0.84);
  box-shadow: inset 0 0 24px rgba(23, 119, 255, 0.18);
}

.tournament-card img {
  max-width: 106px;
  max-height: 82px;
  margin-bottom: 18px;
  object-fit: contain;
}

.logo-fallback {
  display: none;
  place-items: center;
  width: 76px;
  height: 76px;
  margin-bottom: 18px;
  color: #ffffff;
  font-size: 22px;
  font-weight: 900;
  letter-spacing: 0;
  background:
    radial-gradient(circle at 50% 35%, rgba(47, 146, 255, 0.38), transparent 58%),
    linear-gradient(145deg, rgba(11, 45, 93, 0.98), rgba(2, 13, 31, 0.98));
  border: 1px solid rgba(82, 174, 255, 0.62);
  border-radius: 50%;
  box-shadow: inset 0 0 22px rgba(47, 146, 255, 0.22), 0 0 20px rgba(47, 146, 255, 0.18);
}

.tournament-card.image-failed img,
.house-logo.image-failed img {
  display: none;
}

.tournament-card.image-failed .logo-fallback,
.house-logo.image-failed .logo-fallback {
  display: grid;
}

.roland-fallback {
  color: #ffffff;
  background:
    radial-gradient(circle at 50% 50%, #d94c1d 0 34%, transparent 35%),
    #064d35;
  border-color: rgba(255, 255, 255, 0.72);
}

.tournament-card img.white-tournament-logo {
  filter: brightness(0) invert(1) drop-shadow(0 0 12px rgba(70, 166, 255, 0.45));
  opacity: 0.96;
}

.tournament-card img.roland-logo {
  width: 88px;
  height: 88px;
  max-width: 88px;
  max-height: 88px;
  padding: 5px;
  background: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
  box-shadow: 0 0 22px rgba(23, 119, 255, 0.18);
}

.tournament-card strong {
  color: #ffffff;
  font-size: 13px;
  line-height: 1.28;
  text-transform: uppercase;
}

.more-card span,
.all-houses {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  margin-bottom: 12px;
  color: #75bdff;
  font-size: 34px;
  border: 1px solid rgba(80, 151, 255, 0.36);
  border-radius: 50%;
}

.coverage-facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 28px;
  overflow: hidden;
  border: 1px solid rgba(80, 151, 255, 0.18);
  border-radius: 8px;
}

.coverage-facts span {
  display: grid;
  place-items: center;
  min-height: 66px;
  padding: 14px;
  color: #c8d8f2;
  font-size: 13px;
  background: rgba(7, 28, 58, 0.64);
}

.bookmaker-panel {
  margin-top: 18px;
}

.house-logo-strip {
  grid-template-columns: repeat(7, minmax(0, 1fr));
  margin-bottom: 28px;
}

.house-logo-strip > span {
  display: grid;
  place-items: center;
  min-height: 116px;
  padding: 14px;
  background: rgba(4, 18, 40, 0.86);
  border: 1px solid rgba(80, 151, 255, 0.24);
  border-radius: 8px;
}

.house-logo-strip > span:first-child {
  border-color: rgba(47, 146, 255, 0.8);
}

.house-logo-strip img {
  max-width: 132px;
  max-height: 42px;
  object-fit: contain;
}

.house-logo .logo-fallback {
  width: auto;
  height: auto;
  margin: 0;
  padding: 8px 10px;
  font-size: 22px;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.text-house {
  color: #ffffff;
  font-size: 25px;
  font-weight: 900;
  letter-spacing: 0;
}

.house-1xbet {
  color: #45a8ff;
}

.house-betnacional {
  color: #f8d54d;
  font-size: 20px;
}

.house-novibet {
  color: #f7fbff;
  font-style: italic;
}

.all-houses {
  width: auto;
  height: auto;
  margin: 0;
  color: #75bdff;
  font-size: 32px;
  background: rgba(4, 18, 40, 0.52);
  border-radius: 8px;
}

.all-houses small {
  display: block;
  max-width: 82px;
  color: #75bdff;
  font-size: 11px;
  font-weight: 900;
  line-height: 1.2;
  text-align: center;
  text-transform: uppercase;
}

.odds-comparison-layout {
  display: grid;
  grid-template-columns: minmax(420px, 0.95fr) minmax(420px, 1fr);
  gap: 18px;
}

.comparison-card,
.radar-sales-card {
  min-height: 520px;
  padding: 28px;
  background: rgba(4, 18, 40, 0.82);
  border: 1px solid rgba(80, 151, 255, 0.24);
  border-radius: 8px;
}

.comparison-head {
  margin-bottom: 20px;
  padding-left: 18px;
  border-left: 2px solid #2f92ff;
}

.comparison-head small,
.comparison-head em {
  display: block;
  color: #9fb3d2;
  font-size: 12px;
  font-style: normal;
}

.comparison-head strong {
  display: block;
  margin: 14px 0 6px;
  color: #ffffff;
  font-size: 18px;
}

.comparison-head strong span {
  margin: 0 14px;
  color: var(--orange);
}

.market-select {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 44px;
  margin-bottom: 12px;
  padding: 0 14px;
  color: #c8d8f2;
  font-size: 13px;
  background: rgba(7, 28, 58, 0.72);
  border: 1px solid rgba(80, 151, 255, 0.22);
  border-radius: 6px;
}

.market-select::after {
  content: "v";
  color: #75bdff;
}

.odds-table {
  overflow: hidden;
  border: 1px solid rgba(80, 151, 255, 0.12);
  border-radius: 8px;
}

.odds-table-row {
  display: grid;
  grid-template-columns: minmax(130px, 1.2fr) repeat(3, minmax(64px, 0.6fr));
  align-items: center;
  min-height: 52px;
  border-bottom: 1px solid rgba(80, 151, 255, 0.1);
}

.odds-table-row:last-child {
  border-bottom: 0;
}

.odds-table-row > * {
  padding: 0 14px;
  color: #ffffff;
  font-size: 13px;
  text-align: center;
}

.odds-table-row > :first-child {
  text-align: left;
}

.table-head > * {
  color: #9fb3d2;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.brand-bet365 { color: #65d174 !important; }
.brand-betano { color: #ff7a00 !important; }
.brand-1xbet { color: #45a8ff !important; }
.brand-superbet { color: #ff4e4e !important; }
.brand-betnacional { color: #f8d54d !important; }

.best-price {
  margin: 6px;
  background: linear-gradient(135deg, #0f5bd7, #1777ff);
  border-radius: 6px;
  box-shadow: 0 0 18px rgba(23, 119, 255, 0.34);
}

.best-found {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 16px;
  align-items: center;
  margin-top: 22px;
  padding: 18px;
  background: rgba(7, 28, 58, 0.72);
  border: 1px solid rgba(80, 151, 255, 0.22);
  border-radius: 8px;
}

.best-found span {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  color: #75bdff;
  font-size: 22px;
  background: rgba(23, 119, 255, 0.14);
  border-radius: 8px;
}

.best-found strong {
  color: #75bdff;
}

.best-found p {
  margin: 4px 0 0;
  color: #c8d8f2;
  font-size: 12px;
  line-height: 1.5;
}

.radar-sales-card {
  position: relative;
  overflow: hidden;
  display: grid;
  align-content: center;
}

.sales-radar {
  position: absolute;
  top: 34px;
  right: 34px;
  display: grid;
  place-items: center;
  width: 220px;
  height: 220px;
  opacity: 0.72;
  border: 1px solid rgba(70, 166, 255, 0.2);
  border-radius: 50%;
  background:
    repeating-radial-gradient(circle, rgba(70, 166, 255, 0.28) 0 1px, transparent 1px 28px),
    conic-gradient(from 30deg, transparent 0 70%, rgba(70, 166, 255, 0.46) 78%, transparent 88%),
    rgba(7, 28, 58, 0.2);
}

.sales-radar::before,
.sales-radar::after {
  content: "";
  position: absolute;
  inset: 50%;
  width: 100%;
  height: 1px;
  background: rgba(70, 166, 255, 0.32);
  transform: translate(-50%, -50%);
}

.sales-radar::after {
  width: 1px;
  height: 100%;
}

.sales-radar img {
  z-index: 1;
  width: 58px;
}

.sales-radar span {
  position: absolute;
  width: 9px;
  height: 9px;
  background: var(--orange);
  border-radius: 50%;
  box-shadow: 78px 38px #2fbcff, -58px -42px #2fbcff;
}

.radar-sales-card h3,
.radar-sales-card p,
.radar-sales-card ul,
.radar-sales-card .btn,
.radar-sales-card small {
  position: relative;
  z-index: 1;
  max-width: 420px;
}

.radar-sales-card h3 {
  margin-bottom: 16px;
  color: #ffffff;
  font-size: clamp(28px, 3vw, 38px);
  line-height: 1.12;
}

.radar-sales-card p,
.radar-sales-card li {
  color: #c8d8f2;
  line-height: 1.6;
}

.radar-sales-card ul {
  display: grid;
  gap: 12px;
  margin: 22px 0 28px;
  padding: 0;
  list-style: none;
}

.radar-sales-card li::before {
  content: "\2713";
  display: inline-grid;
  place-items: center;
  width: 20px;
  height: 20px;
  margin-right: 10px;
  color: #ffffff;
  font-size: 12px;
  background: var(--blue);
  border-radius: 50%;
}

.radar-sales-card small {
  margin-top: 12px;
  color: #9fb3d2;
  text-align: center;
}

.trust-strip {
  max-width: 1320px;
  margin: 20px auto 0;
  padding: 34px;
  text-align: center;
}

.trust-strip h3 {
  margin-bottom: 28px;
  color: #c8d8f2;
  font-size: 24px;
}

.trust-metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin-bottom: 24px;
  overflow: hidden;
  border: 1px solid rgba(80, 151, 255, 0.12);
  border-radius: 8px;
}

.trust-metrics span {
  display: grid;
  gap: 6px;
  min-height: 118px;
  place-items: center;
  padding: 18px;
  color: #c8d8f2;
  background: rgba(7, 28, 58, 0.54);
}

.trust-metrics strong {
  color: #2f92ff;
  font-size: 34px;
}

.trust-strip p {
  margin: 0;
  color: #bdd0ed;
}

.steps-section {
  background: linear-gradient(180deg, rgba(7, 28, 58, 0.74), rgba(4, 14, 31, 0.4));
}

.step-flow {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 64px;
  max-width: 1080px;
  margin: 0 auto;
}

.step-flow article {
  position: relative;
  min-height: 190px;
  padding: 28px 20px 20px;
  text-align: center;
}

.step-flow article:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 86px;
  right: -50px;
  width: 38px;
  height: 1px;
  background: linear-gradient(90deg, var(--blue), transparent);
}

.step-flow strong {
  position: absolute;
  top: -18px;
  left: -12px;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  background: var(--blue);
  border-radius: 50%;
  box-shadow: 0 0 24px rgba(23, 119, 255, 0.58);
}

.step-flow .blue-icon {
  margin: 0 auto 18px;
}

.plan-section {
  position: relative;
  background:
    radial-gradient(circle at 32% 55%, rgba(23, 119, 255, 0.18), transparent 24%),
    radial-gradient(circle at 68% 55%, rgba(23, 119, 255, 0.14), transparent 24%);
}

.plan-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(250px, 1fr));
  gap: 22px;
  max-width: 1180px;
  margin: 0 auto;
}

.price-card {
  max-width: 390px;
  margin: 0 auto;
  padding: 30px;
  text-align: left;
  background: linear-gradient(180deg, rgba(7, 28, 58, 0.96), rgba(5, 18, 39, 0.96));
  border: 1px solid var(--stroke-bright);
  border-radius: 8px;
  box-shadow: 0 0 48px rgba(23, 119, 255, 0.28);
}

.plan-grid .price-card {
  max-width: none;
  margin: 0;
}

.price-card.featured {
  border-color: rgba(255, 122, 0, 0.72);
  box-shadow: 0 0 58px rgba(255, 122, 0, 0.18), 0 0 48px rgba(23, 119, 255, 0.2);
  transform: translateY(-10px);
}

.price-card > small {
  display: block;
  margin-bottom: 16px;
  text-align: center;
  color: #d7e4f7;
  font-weight: 900;
}

.price-card h3 {
  margin-bottom: 18px;
  text-align: center;
  font-size: 28px;
}

.price-card h3 strong {
  font-size: clamp(40px, 4vw, 52px);
}

.price-card h3 span,
.price-card p {
  color: var(--muted);
  font-size: 14px;
  font-weight: 500;
}

.price-card p {
  margin: 12px 0 0;
  text-align: center;
}

.testimonial-grid {
  grid-template-columns: repeat(3, 1fr);
  max-width: 1120px;
  margin: 0 auto;
}

.testimonial-grid article {
  min-height: 190px;
  padding: 24px;
}

.stars {
  margin-bottom: 16px;
  color: #ffc34d;
  letter-spacing: 0.08em;
}

.testimonial-grid strong,
.testimonial-grid small {
  display: block;
}

.testimonial-grid strong {
  margin-top: 22px;
}

.testimonial-grid small {
  color: #7790b6;
}

.faq-grid {
  grid-template-columns: repeat(2, 1fr);
  max-width: 1180px;
  margin: 0 auto;
}

.faq-grid details {
  padding: 0;
  overflow: hidden;
}

.faq-grid summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 54px;
  padding: 0 20px;
  cursor: pointer;
  color: #dceaff;
  font-weight: 800;
  list-style: none;
}

.faq-grid summary::-webkit-details-marker {
  display: none;
}

.faq-grid summary::after {
  content: "\203A";
  color: #9fb0ca;
  font-size: 24px;
}

.faq-grid p {
  padding: 0 20px 18px;
}

.final-cta {
  position: relative;
  max-width: calc(100% - clamp(44px, 10vw, 188px));
  min-height: 250px;
  margin: 20px auto 42px;
  padding: 42px 34px;
  text-align: center;
  background:
    radial-gradient(circle at 50% 50%, rgba(255, 122, 0, 0.16), transparent 22%),
    linear-gradient(135deg, rgba(8, 35, 70, 0.94), rgba(4, 16, 34, 0.96));
  border: 1px solid var(--stroke-bright);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.final-cta h2 {
  max-width: 780px;
  margin: 0 auto 22px;
}

.final-cta span {
  display: block;
}

.final-cta p {
  margin: 14px 0 0;
}

.cta-left {
  left: 50px;
  bottom: 44px;
  width: 110px;
  height: 180px;
  opacity: 0.24;
}

.cta-right {
  right: 42px;
  bottom: 42px;
  width: 110px;
  height: 180px;
  transform: scaleX(-1);
  opacity: 0.24;
}

.footer {
  display: grid;
  grid-template-columns: minmax(240px, 1.3fr) repeat(4, 1fr);
  gap: 38px;
  padding: 34px clamp(22px, 5vw, 94px);
  border-top: 1px solid rgba(91, 150, 244, 0.14);
}

.footer img {
  width: 124px;
  margin-bottom: 12px;
}

.footer p,
.footer a {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.footer strong,
.footer a {
  display: block;
}

.footer strong {
  margin-bottom: 14px;
}

.footer a {
  margin-bottom: 9px;
}

.socials {
  display: flex;
  gap: 8px;
  margin-top: 16px;
}

.socials span {
  width: 28px;
  height: 28px;
  background: rgba(23, 119, 255, 0.16);
  border: 1px solid rgba(70, 166, 255, 0.3);
  border-radius: 50%;
}

.copyright {
  margin: 0;
  padding: 18px;
  color: #7287a8;
  font-size: 12px;
  text-align: center;
  border-top: 1px solid rgba(91, 150, 244, 0.1);
}

.compliance-section {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) 1fr;
  gap: 28px;
  align-items: center;
  margin: 24px clamp(22px, 5vw, 94px) 18px;
  padding: 24px;
  border: 1px solid rgba(255, 122, 0, 0.28);
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(255, 122, 0, 0.12), rgba(11, 32, 67, 0.82));
}

.compliance-section span {
  display: inline-flex;
  margin-bottom: 8px;
  color: var(--orange-2);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.compliance-section h2 {
  margin: 0;
  font-size: clamp(22px, 2.6vw, 34px);
  line-height: 1.1;
}

.compliance-section p {
  margin: 0;
  color: #d9e7fb;
  font-size: 15px;
  line-height: 1.7;
}

.cookie-banner {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 80;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  width: min(760px, calc(100vw - 40px));
  padding: 18px;
  border: 1px solid rgba(80, 151, 255, 0.36);
  border-radius: 8px;
  color: #ffffff;
  background: rgba(3, 13, 29, 0.96);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.46);
}

.cookie-banner[hidden] {
  display: none;
}

.cookie-banner strong {
  display: block;
  margin-bottom: 4px;
  font-size: 14px;
}

.cookie-banner p {
  margin: 0;
  color: #c9d7ee;
  font-size: 12px;
  line-height: 1.5;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.cookie-actions button {
  min-height: 40px;
  padding: 0 14px;
  border: 1px solid rgba(130, 174, 242, 0.34);
  border-radius: 6px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.06);
  font-weight: 900;
  cursor: pointer;
}

.cookie-actions button:last-child {
  border-color: transparent;
  background: linear-gradient(135deg, var(--orange), var(--orange-2));
}

.legal-page {
  min-height: 100vh;
  padding: 42px clamp(18px, 5vw, 84px);
}

.legal-card {
  max-width: 980px;
  margin: 0 auto;
  padding: clamp(24px, 5vw, 48px);
  border: 1px solid rgba(80, 151, 255, 0.28);
  border-radius: 8px;
  background: rgba(4, 18, 40, 0.86);
  box-shadow: var(--shadow);
}

.legal-card .brand {
  margin-bottom: 28px;
}

.legal-card h1 {
  margin-bottom: 14px;
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.05;
}

.legal-card h2 {
  margin: 30px 0 10px;
  color: #ffffff;
  font-size: 20px;
}

.legal-card p,
.legal-card li {
  color: #c8d8f2;
  line-height: 1.7;
}

.legal-card ul {
  padding-left: 20px;
}

.legal-card .btn {
  margin-top: 16px;
}

@media (max-width: 1280px) {
  .topbar {
    grid-template-columns: 230px 1fr auto;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-copy {
    max-width: 780px;
  }

  .system-showcase {
    max-width: 980px;
  }

  .pain-grid,
  .resource-grid,
  .traffic-conversion,
  .sports-grid,
  .league-showcase,
  .coverage-sports-grid,
  .tournament-grid,
  .house-logo-strip,
  .trust-metrics {
    grid-template-columns: repeat(2, 1fr);
  }

  .system-section {
    grid-template-columns: 1fr;
  }

  .bookmaker-layout,
  .odds-comparison-layout {
    grid-template-columns: 1fr;
  }

  .sales-radar {
    opacity: 0.28;
  }
}

@media (max-width: 980px) {
  .topbar {
    grid-template-columns: 1fr auto;
  }

  .main-nav {
    display: none;
  }

  .app-window {
    grid-template-columns: 1fr;
  }

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

  .mini-brand,
  .app-sidebar button {
    grid-column: 1 / -1;
  }

  .radar-panel,
  .mini-metrics,
  .step-flow,
  .sports-grid,
  .league-showcase,
  .bookmaker-logos,
  .coverage-sports-grid,
  .tournament-grid,
  .house-logo-strip,
  .odds-comparison-layout,
  .coverage-facts,
  .trust-metrics,
  .traffic-conversion,
  .compliance-section,
  .testimonial-grid,
  .faq-grid,
  .footer {
    grid-template-columns: 1fr;
  }

  .step-flow {
    gap: 24px;
  }

  .step-flow article:not(:last-child)::after {
    display: none;
  }

  .final-cta {
    max-width: calc(100% - 44px);
  }
}

@media (max-width: 720px) {
  .topbar {
    min-height: 72px;
    padding-inline: 18px;
  }

  .brand img {
    width: 48px;
    height: 48px;
  }

  .brand span {
    display: none;
  }

  .top-actions .ghost {
    display: none;
  }

  .top-actions .primary {
    min-height: 40px;
    padding-inline: 14px;
    font-size: 12px;
  }

  .hero,
  .pain-section,
  .resources-section,
  .system-section,
  .sports-section,
  .bookmaker-section,
  .coverage-section,
  .steps-section,
  .plan-section,
  .testimonials,
  .faq-section,
  .final-cta,
  .footer {
    padding-inline: 18px;
  }

  .hero {
    padding-top: 34px;
  }

  .hero h1 {
    font-size: clamp(38px, 12vw, 56px);
  }

  .hero-actions,
  .hero-badges,
  .pain-grid,
  .traffic-conversion,
  .resource-grid {
    grid-template-columns: 1fr;
  }

  .traffic-conversion p {
    grid-column: 1 / -1;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .athlete,
  .cta-left,
  .cta-right {
    display: none;
  }

  .system-showcase {
    display: none;
  }

  .mobile-app-explainer {
    display: grid;
    gap: 18px;
    margin: -8px 18px 28px;
    padding: 18px;
    background:
      linear-gradient(180deg, rgba(8, 32, 67, 0.96), rgba(3, 13, 29, 0.98)),
      radial-gradient(circle at 50% 0%, rgba(23, 119, 255, 0.22), transparent 48%);
    border: 1px solid rgba(72, 150, 255, 0.3);
    border-radius: 12px;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.32);
  }

  .mobile-preview-card {
    overflow: hidden;
    background: #051428;
    border: 1px solid rgba(95, 169, 255, 0.34);
    border-radius: 10px;
  }

  .mobile-preview-head {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 13px;
    border-bottom: 1px solid rgba(95, 169, 255, 0.18);
  }

  .mobile-preview-head img {
    width: 42px;
    height: 42px;
  }

  .mobile-preview-head strong,
  .mobile-preview-head span {
    display: block;
  }

  .mobile-preview-head strong {
    color: #ffffff;
    font-size: 14px;
    font-weight: 900;
  }

  .mobile-preview-head span {
    color: #8fb8ed;
    font-size: 11px;
    font-weight: 800;
  }

  .mobile-preview-screen {
    display: grid;
    grid-template-columns: 126px 1fr;
    gap: 12px;
    align-items: center;
    padding: 14px;
  }

  .mobile-scan {
    position: relative;
    display: grid;
    place-items: center;
    width: 126px;
    height: 126px;
    overflow: hidden;
    background:
      repeating-radial-gradient(circle, rgba(73, 163, 255, 0.3) 0 1px, transparent 1px 18px),
      linear-gradient(90deg, transparent 49%, rgba(73, 163, 255, 0.26) 50%, transparent 51%),
      linear-gradient(transparent 49%, rgba(73, 163, 255, 0.26) 50%, transparent 51%);
    border-radius: 50%;
  }

  .mobile-scan span {
    position: absolute;
    width: 98px;
    height: 98px;
    background: conic-gradient(from 270deg, rgba(74, 170, 255, 0.72), transparent 43%);
    border-radius: 50%;
    animation: spin 4s linear infinite;
  }

  .mobile-scan img {
    position: relative;
    z-index: 2;
    width: 54px;
  }

  .mobile-entry-demo {
    min-width: 0;
    padding: 13px;
    background: #ffffff;
    border: 1px solid rgba(160, 197, 245, 0.72);
    border-radius: 9px;
  }

  .mobile-entry-demo small,
  .mobile-entry-demo strong {
    display: block;
  }

  .mobile-entry-demo small {
    color: #536781;
    font-size: 11px;
    font-weight: 900;
  }

  .mobile-entry-demo strong {
    margin: 5px 0 10px;
    color: #0057c8;
    font-size: 18px;
    line-height: 1.12;
  }

  .mobile-entry-demo div {
    display: grid;
    gap: 6px;
  }

  .mobile-entry-demo span {
    min-height: 27px;
    padding: 6px 8px;
    color: #0a1b33;
    font-size: 11px;
    font-weight: 900;
    background: #eef5ff;
    border-radius: 6px;
  }

  .mobile-explainer-copy span {
    display: inline-flex;
    margin-bottom: 8px;
    color: var(--orange);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
  }

  .mobile-explainer-copy h2 {
    max-width: 320px;
    margin-bottom: 10px;
    color: #ffffff;
    font-size: 28px;
    line-height: 1.08;
  }

  .mobile-explainer-copy p {
    color: #c6d8f2;
    font-size: 14px;
    line-height: 1.65;
  }

  .mobile-benefit-list {
    display: grid;
    gap: 10px;
  }

  .mobile-benefit-list article {
    display: grid;
    grid-template-columns: 36px 1fr;
    gap: 10px;
    align-items: start;
    padding: 12px;
    background: rgba(255, 255, 255, 0.055);
    border: 1px solid rgba(95, 169, 255, 0.22);
    border-radius: 9px;
  }

  .mobile-benefit-list b {
    display: grid;
    place-items: center;
    width: 34px;
    height: 34px;
    color: #ffffff;
    background: linear-gradient(135deg, var(--orange), var(--orange-2));
    border-radius: 50%;
  }

  .mobile-benefit-list strong,
  .mobile-benefit-list span {
    display: block;
  }

  .mobile-benefit-list strong {
    margin-bottom: 4px;
    color: #ffffff;
    font-size: 14px;
  }

  .mobile-benefit-list span {
    color: #a9c0dd;
    font-size: 12px;
    line-height: 1.45;
  }

  .odds-ticker {
    padding-inline: 18px;
  }

  .ticker-track {
    min-height: 46px;
  }

  .app-sidebar,
  .radar-panel,
  .sports-grid,
  .league-showcase,
  .bookmaker-logos,
  .coverage-sports-grid,
  .tournament-grid,
  .house-logo-strip,
  .odds-comparison-layout,
  .coverage-facts,
  .trust-metrics,
  .resource-grid article {
    grid-template-columns: 1fr;
  }

  .coverage-section {
    padding-top: 42px;
  }

  .coverage-hero h2 {
    font-size: clamp(34px, 11vw, 48px);
  }

  .coverage-sports-grid article {
    min-height: auto;
  }

  .coverage-panel,
  .trust-strip {
    padding: 22px;
  }

  .tournament-card,
  .house-logo-strip > span {
    min-height: 126px;
  }

  .comparison-card,
  .radar-sales-card {
    min-height: auto;
    padding: 20px;
  }

  .sales-radar {
    position: relative;
    top: auto;
    right: auto;
    width: 180px;
    height: 180px;
    margin: 0 auto 24px;
    opacity: 0.72;
  }

  .radar-sales-card h3,
  .radar-sales-card p,
  .radar-sales-card ul,
  .radar-sales-card .btn,
  .radar-sales-card small {
    max-width: none;
  }

  .odds-table-row {
    grid-template-columns: minmax(96px, 1fr) repeat(3, minmax(48px, 0.55fr));
  }

  .odds-table-row > * {
    padding: 0 8px;
    font-size: 12px;
  }

  .plan-grid {
    grid-template-columns: 1fr;
  }

  .price-card.featured {
    transform: none;
  }

  .resource-grid article p {
    grid-column: auto;
  }

  .system-mockup {
    transform: none;
  }

  .section-title h2,
  .system-copy h2,
  .final-cta h2 {
    font-size: clamp(30px, 10vw, 42px);
  }

  .footer {
    gap: 24px;
  }

  .cookie-banner {
    left: 14px;
    right: 14px;
    bottom: 14px;
    grid-template-columns: 1fr;
    width: auto;
  }

  .cookie-actions {
    flex-direction: column;
  }
}

@media (max-width: 380px) {
  .mobile-preview-screen {
    grid-template-columns: 1fr;
  }

  .mobile-scan {
    margin: 0 auto;
  }
}

.hero-proof-cards {
  display: grid;
  grid-template-columns: repeat(5, minmax(84px, 1fr));
  gap: 10px;
  max-width: 610px;
  margin-top: 22px;
}

.hero-proof-cards article,
.audience-grid article,
.not-for-card,
.value-card,
.methodology-grid article,
.confidence-note,
.plan-comparison {
  background: rgba(7, 23, 45, 0.82);
  border: 1px solid rgba(95, 158, 238, 0.24);
  border-radius: 8px;
  box-shadow: 0 20px 46px rgba(0, 0, 0, 0.22);
}

.hero-proof-cards article {
  padding: 13px 12px;
}

.hero-proof-cards small,
.value-card > span {
  display: block;
  color: #9fb0ca;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hero-proof-cards strong {
  display: block;
  margin-top: 5px;
  color: #ffffff;
  font-size: 20px;
  font-weight: 900;
}

.audience-section,
.practice-section,
.methodology-section {
  padding: 84px clamp(22px, 5vw, 94px);
}

.audience-grid,
.value-example-grid,
.methodology-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  max-width: 1180px;
  margin: 0 auto;
}

.audience-grid article,
.methodology-grid article {
  padding: 24px;
}

.audience-grid h3,
.methodology-grid strong,
.value-card h3,
.not-for-card h3,
.confidence-note h3 {
  color: #ffffff;
}

.audience-grid p,
.not-for-card p,
.methodology-grid p,
.confidence-note p,
.value-card p {
  color: var(--muted);
  line-height: 1.65;
}

.not-for-card,
.confidence-note {
  max-width: 1180px;
  margin: 22px auto 0;
  padding: 28px;
  border-color: rgba(255, 122, 0, 0.34);
  background:
    linear-gradient(135deg, rgba(255, 122, 0, 0.08), rgba(7, 23, 45, 0.82));
}

.practice-flow {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  max-width: 1180px;
  margin: 0 auto 22px;
}

.practice-flow article {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 82px;
  padding: 18px;
  background: rgba(10, 32, 63, 0.72);
  border: 1px solid rgba(70, 166, 255, 0.24);
  border-radius: 8px;
}

.practice-flow strong {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 34px;
  width: 34px;
  height: 34px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--blue), var(--orange));
  border-radius: 50%;
}

.practice-flow span {
  color: #dceaff;
  font-weight: 800;
}

.value-example-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.value-card {
  padding: 24px;
}

.value-card h3 {
  margin: 8px 0 18px;
  font-size: 24px;
}

.value-card dl {
  display: grid;
  gap: 8px;
  margin: 0 0 18px;
}

.value-card dl div {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  align-items: center;
}

.value-card dt {
  color: #9fb0ca;
  font-size: 13px;
}

.value-card dd {
  margin: 0;
  color: #ffffff;
  font-weight: 900;
}

.value-card.positive dd,
.value-card.positive p {
  color: var(--green);
}

.value-card.balanced dd:last-child,
.value-card.balanced p {
  color: var(--orange-2);
}

.value-card.danger {
  border-color: rgba(255, 122, 0, 0.32);
}

.methodology-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.methodology-grid strong {
  display: block;
  margin-bottom: 8px;
  font-size: 16px;
}

.plan-comparison {
  max-width: 1180px;
  margin: 28px auto 0;
  padding: 26px;
}

.comparison-title {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 18px;
}

.comparison-title h3 {
  margin: 0;
  color: #ffffff;
  font-size: 24px;
}

.comparison-title p {
  max-width: 520px;
  margin: 0;
  color: var(--muted);
}

.comparison-table {
  display: grid;
  gap: 8px;
}

.comparison-row {
  display: grid;
  grid-template-columns: 1.7fr repeat(3, minmax(110px, 0.55fr));
  gap: 16px;
  align-items: center;
  padding: 12px 14px;
  color: #dceaff;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(95, 158, 238, 0.15);
  border-radius: 6px;
}

.comparison-row.head {
  color: #ffffff;
  font-weight: 900;
  background: rgba(23, 119, 255, 0.15);
}

.comparison-row b {
  color: #ffffff;
  font-size: 13px;
}

@media (max-width: 980px) {
  .hero-proof-cards,
  .audience-grid,
  .practice-flow,
  .methodology-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .value-example-grid {
    grid-template-columns: 1fr;
  }

  .comparison-title {
    display: block;
  }

  .comparison-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .hero-proof-cards,
  .audience-grid,
  .practice-flow,
  .methodology-grid {
    grid-template-columns: 1fr;
  }

  .audience-section,
  .practice-section,
  .methodology-section {
    padding: 58px 18px;
  }
}

.campaign-popup-open {
  overflow: hidden;
}

.campaign-popup[hidden] {
  display: none;
}

.campaign-popup {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  padding: 24px;
}

.campaign-popup-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(0, 7, 20, 0.82);
  backdrop-filter: blur(14px);
}

.campaign-popup-card {
  position: relative;
  width: min(760px, 100%);
  overflow: hidden;
  border: 1px solid rgba(255, 122, 0, 0.68);
  border-radius: 20px;
  background: #061428;
  box-shadow:
    0 34px 100px rgba(0, 0, 0, 0.64),
    0 0 44px rgba(255, 122, 0, 0.26);
  animation: campaignPopupIn 0.28s ease-out both;
}

.campaign-popup-close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 999px;
  background: rgba(3, 11, 28, 0.72);
  color: #ffffff;
  cursor: pointer;
  font-size: 30px;
  font-weight: 900;
  line-height: 1;
}

.campaign-popup-close:hover {
  background: #ff7a00;
}

.campaign-popup-link {
  display: block;
}

.campaign-popup-link img {
  display: block;
  width: 100%;
  height: auto;
}

@keyframes campaignPopupIn {
  from {
    opacity: 0;
    transform: translateY(18px) scale(0.96);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@media (max-width: 640px) {
  .campaign-popup {
    padding: 14px;
  }

  .campaign-popup-card {
    width: min(420px, 100%);
    border-radius: 16px;
  }

  .campaign-popup-close {
    top: 8px;
    right: 8px;
    width: 36px;
    height: 36px;
    font-size: 26px;
  }
}
