:root {
  --navy-950: #020812;
  --navy-900: #04111f;
  --navy-850: #06172a;
  --navy-800: #081f39;
  --navy-700: #0d2b52;
  --blue-500: #1684ff;
  --blue-400: #25a4ff;
  --blue-300: #68c4ff;
  --green-400: #68ee54;
  --gold-400: #ffd130;
  --white: #ffffff;
  --muted: #c7d4e8;
  --line: rgba(103, 165, 255, 0.3);
  --panel: rgba(8, 26, 51, 0.86);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  min-width: 320px;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: var(--white);
  background:
    linear-gradient(180deg, #030711 0%, #061225 42%, #020812 100%),
    repeating-linear-gradient(90deg, rgba(40, 137, 255, 0.05) 0 1px, transparent 1px 88px);
  letter-spacing: 0;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(0, 116, 255, 0.16), transparent 32%, transparent 68%, rgba(0, 116, 255, 0.16)),
    linear-gradient(180deg, rgba(0, 0, 0, 0), rgba(0, 18, 45, 0.42));
  z-index: -1;
}

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

button {
  font: inherit;
}

.site {
  width: 100%;
  overflow: hidden;
}

.site-header {
  height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  border-bottom: 1px solid rgba(143, 181, 255, 0.22);
  background: rgba(1, 8, 20, 0.9);
  box-shadow: 0 14px 42px rgba(0, 0, 0, 0.35);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: 32px;
  font-weight: 900;
}

.shield-mark {
  position: relative;
  width: 42px;
  height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 1000;
  background: linear-gradient(145deg, #0b72ff 0%, #1fb2ff 100%);
  clip-path: polygon(50% 0, 91% 12%, 84% 70%, 50% 100%, 16% 70%, 9% 12%);
  filter: drop-shadow(0 0 14px rgba(37, 164, 255, 0.56));
}

.shield-mark::after {
  content: "";
  position: absolute;
  inset: 8px 12px 11px 14px;
  background: var(--navy-950);
  clip-path: polygon(8% 0, 100% 0, 84% 24%, 44% 24%, 35% 46%, 71% 46%, 55% 70%, 25% 70%, 14% 100%, 0 100%);
}

.shield-mark span {
  position: relative;
  z-index: 1;
  font-size: 22px;
  opacity: 0;
}

.header-cta,
.primary-cta,
.secondary-cta,
.row-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  border-radius: 10px;
  border: 1px solid rgba(105, 196, 255, 0.8);
  color: var(--white);
  font-weight: 900;
  background: linear-gradient(180deg, #197aff 0%, #005cff 100%);
  box-shadow: 0 0 0 1px rgba(49, 166, 255, 0.28) inset, 0 0 24px rgba(0, 103, 255, 0.55);
  transition: transform 180ms ease, box-shadow 180ms ease, filter 180ms ease;
}

.header-cta:hover,
.primary-cta:hover,
.secondary-cta:hover,
.row-cta:hover {
  transform: translateY(-2px);
  filter: brightness(1.08);
  box-shadow: 0 0 0 1px rgba(117, 209, 255, 0.75) inset, 0 0 34px rgba(0, 132, 255, 0.78);
}

.header-cta {
  min-width: 144px;
  min-height: 48px;
  padding: 0 22px;
  font-size: 17px;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(500px, 0.88fr) minmax(620px, 1.12fr);
  min-height: 560px;
  border-bottom: 1px solid rgba(91, 142, 222, 0.14);
}

.hero-copy {
  position: relative;
  z-index: 4;
  padding: 52px 28px 30px 40px;
  background:
    linear-gradient(90deg, rgba(3, 10, 23, 0.99) 0%, rgba(3, 10, 23, 0.96) 68%, rgba(3, 10, 23, 0.22) 100%),
    radial-gradient(circle at 4% 18%, rgba(18, 124, 255, 0.16), transparent 34%);
}

.eyebrow {
  margin: 0 0 12px;
  font-size: 19px;
  line-height: 1.1;
  color: var(--blue-500);
  font-weight: 1000;
  text-transform: uppercase;
}

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

h1,
.section-title h2,
.cta-content h2 {
  font-family: Impact, "Arial Black", "Segoe UI Black", sans-serif;
  font-weight: 900;
  letter-spacing: 0;
  text-shadow: 0 2px 0 rgba(0, 0, 0, 0.3);
}

h1 {
  max-width: 650px;
  margin-bottom: 20px;
  font-size: 58px;
  line-height: 0.96;
}

.headline-line {
  display: inline-block;
  white-space: nowrap;
}

.hero-text {
  max-width: 560px;
  margin-bottom: 30px;
  color: #edf4ff;
  font-size: 18px;
  line-height: 1.43;
}

.primary-cta {
  min-width: 360px;
  min-height: 70px;
  padding: 0 28px;
  font-size: 23px;
}

.arrow {
  font-size: 38px;
  line-height: 1;
  transform: translateY(-1px);
}

.microcopy {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
  margin-top: 22px;
  color: #d6e3f5;
  font-size: 15px;
}

.microcopy b {
  color: var(--blue-400);
}

.hero-art {
  position: relative;
  min-height: 560px;
  isolation: isolate;
}

.hero-art::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(90deg, rgba(3, 10, 23, 0.58), transparent 22%, transparent 78%, rgba(2, 8, 18, 0.78)),
    linear-gradient(180deg, rgba(2, 8, 18, 0.06), transparent 52%, rgba(2, 8, 18, 0.96) 100%);
  pointer-events: none;
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 66% 50%;
  filter: saturate(1.12) contrast(1.06);
}

.hero-neon-shield,
.fan-shield {
  position: absolute;
  z-index: 3;
  pointer-events: none;
  clip-path: polygon(50% 0, 91% 12%, 84% 70%, 50% 100%, 16% 70%, 9% 12%);
}

.hero-neon-shield {
  top: 46px;
  right: 22px;
  width: 116px;
  height: 142px;
  border: 2px solid rgba(41, 165, 255, 0.82);
  background: rgba(14, 129, 255, 0.08);
  box-shadow: 0 0 16px rgba(28, 143, 255, 0.78), 0 0 42px rgba(28, 143, 255, 0.52) inset;
  opacity: 0.6;
}

.hero-neon-shield::after,
.fan-shield::after {
  content: "";
  position: absolute;
  inset: 22% 27% 24% 30%;
  background: rgba(1, 12, 28, 0.86);
  clip-path: polygon(8% 0, 100% 0, 84% 24%, 44% 24%, 35% 46%, 71% 46%, 55% 70%, 25% 70%, 14% 100%, 0 100%);
}

.fan-shield {
  width: 36px;
  height: 44px;
  background: linear-gradient(145deg, rgba(0, 126, 255, 0.86), rgba(67, 194, 255, 0.9));
  box-shadow: 0 0 12px rgba(35, 157, 255, 0.74);
  opacity: 0.82;
  mix-blend-mode: screen;
}

.fan-shield-one {
  left: 39%;
  top: 47%;
  transform: rotate(-6deg) scale(0.72);
}

.fan-shield-two {
  left: 58%;
  top: 39%;
  transform: rotate(8deg) scale(0.66);
}

.fan-shield-three {
  right: 20%;
  top: 45%;
  transform: rotate(-4deg) scale(0.58);
}

.floating-card,
.phone-ui {
  position: absolute;
  z-index: 5;
  border: 1px solid rgba(127, 179, 255, 0.42);
  background: linear-gradient(180deg, rgba(11, 29, 55, 0.95), rgba(4, 14, 29, 0.93));
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.48), 0 0 26px rgba(17, 135, 255, 0.22);
  backdrop-filter: blur(9px);
}

.panel-kicker {
  color: #cde4ff;
  font-size: 12px;
  font-weight: 900;
}

.boost-card {
  top: 36px;
  right: 54px;
  width: 212px;
  padding: 16px 17px;
  border-radius: 16px;
  z-index: 7;
}

.boost-card p {
  margin: 14px 0 5px;
  color: var(--white);
  font-size: 15px;
  line-height: 1.28;
}

.boost-line {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 13px;
  margin-bottom: 12px;
}

.boost-line span {
  color: #8da6c6;
  text-decoration: line-through;
  font-weight: 800;
}

.boost-line strong {
  color: var(--green-400);
  font-size: 24px;
}

.boost-pill,
.slip-button {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  border-radius: 7px;
  background: linear-gradient(180deg, #39b84c, #1d8d34);
  color: #eaffef;
  font-weight: 900;
}

.score-card {
  left: -48px;
  bottom: 86px;
  width: 222px;
  padding: 16px 17px 15px;
  border-radius: 18px;
}

.score-status {
  display: flex;
  gap: 7px;
  margin-bottom: 17px;
  font-size: 13px;
  color: #d7e7ff;
}

.score-status strong {
  color: #ff2c37;
}

.team-row {
  display: grid;
  grid-template-columns: 28px 1fr auto;
  align-items: center;
  gap: 10px;
  margin: 8px 0;
  font-size: 19px;
  font-weight: 900;
}

.team-row strong {
  font-size: 29px;
}

.team-icon,
.avatar {
  display: inline-block;
  border-radius: 50%;
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.12) inset;
}

.team-icon {
  width: 26px;
  height: 20px;
  border-radius: 6px 14px 14px 6px;
  transform: skewX(-14deg);
}

.buffalo,
.bills {
  background: linear-gradient(135deg, #0c65d8 0 58%, #ffffff 58% 67%, #df1e36 67%);
}

.kc,
.chiefs {
  background: linear-gradient(135deg, #ffffff 0 50%, #d21f36 50% 75%, #ffcc23 75%);
}

.down-row {
  margin-top: 15px;
  color: #e8f3ff;
  font-size: 15px;
}

.yard-bar {
  height: 8px;
  margin-top: 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.2);
  overflow: hidden;
}

.yard-bar span {
  display: block;
  width: 48%;
  height: 100%;
  background: linear-gradient(90deg, #006bff, #8bd3ff);
}

.odds-card {
  right: 288px;
  bottom: 52px;
  width: 160px;
  padding: 15px;
  border-radius: 14px;
}

.odds-row,
.slip-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: 9px;
  color: #dceaff;
  font-size: 13px;
}

.odds-row strong,
.slip-row strong {
  color: var(--green-400);
}

.phone-ui {
  right: 20px;
  bottom: 12px;
  width: 270px;
  min-height: 442px;
  border-radius: 34px;
  padding: 20px 12px 10px;
  overflow: hidden;
  border-color: rgba(135, 184, 255, 0.55);
}

.phone-ui::before {
  content: "";
  position: absolute;
  top: 8px;
  left: 50%;
  width: 74px;
  height: 5px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.9);
  transform: translateX(-50%);
}

.phone-top,
.phone-head {
  display: flex;
  align-items: center;
  gap: 8px;
}

.phone-top {
  min-height: 42px;
}

.mini-shield {
  width: 27px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  clip-path: polygon(50% 0, 91% 12%, 84% 70%, 50% 100%, 16% 70%, 9% 12%);
  background: linear-gradient(145deg, #1083ff, #42bdff);
  color: rgba(255, 255, 255, 0);
}

.balance {
  margin-left: auto;
  color: #eaf5ff;
  font-size: 12px;
  font-weight: 900;
}

.tabs,
.phone-nav {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 3px;
  margin: 5px -2px 10px;
  padding: 7px 0;
  background: rgba(4, 14, 29, 0.82);
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.tabs span,
.phone-nav span {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  color: #9fb5d1;
  font-size: 12px;
}

.tabs small,
.phone-nav small {
  font-size: 7px;
  line-height: 1;
}

.tabs .active,
.phone-nav .active {
  color: var(--blue-400);
}

.phone-head {
  justify-content: space-between;
  margin-bottom: 9px;
  font-size: 14px;
}

.phone-head span {
  color: var(--blue-400);
  font-size: 10px;
  font-weight: 900;
}

.bet-row {
  display: grid;
  grid-template-columns: 30px 1fr 48px;
  align-items: center;
  gap: 9px;
  margin-bottom: 8px;
  padding: 7px 7px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.055);
}

.avatar {
  width: 28px;
  height: 28px;
}

.hoops {
  background: linear-gradient(135deg, #16c474, #f07b33);
}

.yankees {
  background:
    linear-gradient(135deg, transparent 42%, #d6dce9 42% 58%, transparent 58%),
    radial-gradient(circle at 50% 50%, #07152a 0 48%, #f6f8ff 49% 54%, #07152a 55%);
}

.bet-row p {
  margin: 0;
  color: #e9f3ff;
  font-size: 9px;
  line-height: 1.18;
}

.bet-row small {
  color: #9ab0cc;
  font-size: 8px;
}

.bet-row strong {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  border-radius: 6px;
  background: rgba(98, 126, 170, 0.24);
  font-size: 14px;
}

.phone-nav {
  grid-template-columns: repeat(5, 1fr);
  margin: 10px -2px 0;
  padding-bottom: 4px;
}

.slip-card {
  top: 276px;
  right: 276px;
  width: 145px;
  padding: 13px;
  border-radius: 13px;
}

.slip-button {
  margin-top: 11px;
  min-height: 30px;
  font-size: 12px;
}

.comparison,
.features,
.cta-band,
.trust-strip {
  width: min(1320px, calc(100% - 36px));
  margin-left: auto;
  margin-right: auto;
}

.comparison {
  margin-top: -12px;
  position: relative;
  z-index: 7;
  padding: 18px 18px 16px;
  border: 1px solid rgba(110, 167, 255, 0.34);
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(8, 29, 58, 0.9), rgba(3, 12, 28, 0.92));
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.38), 0 0 36px rgba(10, 115, 255, 0.14) inset;
}

.section-title {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 32px;
  margin-bottom: 16px;
}

.section-title span {
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--blue-500));
}

.section-title span:last-child {
  background: linear-gradient(90deg, var(--blue-500), transparent);
}

.section-title h2 {
  margin: 0;
  text-align: center;
  font-size: 42px;
  line-height: 1;
}

.comparison-shell {
  overflow: hidden;
  border: 1px solid rgba(113, 163, 255, 0.24);
  border-radius: 10px;
  background: rgba(6, 22, 45, 0.74);
}

table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
}

th,
td {
  padding: 16px 14px;
  text-align: center;
  vertical-align: middle;
  border-bottom: 1px solid rgba(113, 163, 255, 0.13);
}

th {
  color: #e5efff;
  font-size: 16px;
  font-weight: 900;
}

td {
  color: #f7fbff;
  font-size: 16px;
  line-height: 1.28;
}

th:first-child,
td:first-child {
  width: 27%;
  text-align: left;
}

th:nth-child(2),
td:nth-child(2) {
  width: 15%;
}

th:nth-child(6),
td:nth-child(6) {
  width: 10%;
}

th:last-child,
td:last-child {
  width: 17%;
}

tbody tr:last-child td {
  border-bottom: 0;
}

.featured-row {
  position: relative;
  background: linear-gradient(90deg, rgba(0, 89, 255, 0.44), rgba(7, 40, 100, 0.78), rgba(0, 89, 255, 0.35));
  outline: 2px solid var(--blue-500);
  outline-offset: -2px;
  box-shadow: 0 0 28px rgba(0, 132, 255, 0.75) inset, 0 0 24px rgba(0, 132, 255, 0.65);
}

.book {
  display: flex;
  align-items: center;
  gap: 13px;
  min-height: 50px;
  font-size: 23px;
}

.book .book-mark {
  width: 46px;
  height: 54px;
}

.book strong {
  font-weight: 1000;
}

.top-pick {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 92px;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  color: #062244;
  background: linear-gradient(180deg, #ffe977, #ffbd12);
  font-size: 13px;
  font-weight: 1000;
}

.dk-mark,
.mgm-mark,
.caesars-mark {
  position: relative;
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  font-weight: 1000;
  font-size: 27px;
}

.dk-mark {
  color: #061a18;
  border-radius: 9px;
  background:
    linear-gradient(135deg, #ff7d1a 0 36%, #29d25b 36% 100%);
  box-shadow: 0 0 0 2px rgba(255, 187, 39, 0.14) inset, 0 0 13px rgba(44, 210, 91, 0.24);
}

.dk-mark::before {
  content: "\265B";
  position: absolute;
  top: -14px;
  left: 8px;
  color: #ff8f1f;
  font-size: 20px;
  text-shadow: 0 0 8px rgba(255, 143, 31, 0.55);
}

.mgm-mark {
  color: #f7da87;
  border: 2px solid #b99138;
  background:
    linear-gradient(135deg, rgba(238, 196, 91, 0.16), transparent 42%),
    #0e1115;
  box-shadow: 0 0 0 1px rgba(247, 218, 135, 0.18) inset, 0 0 12px rgba(201, 160, 69, 0.22);
}

.mgm-mark::after {
  content: "";
  position: absolute;
  inset: 9px;
  border: 1px solid rgba(247, 218, 135, 0.52);
  border-radius: 2px;
}

.caesars-mark {
  color: #f1cc5d;
  border: 2px solid #c9a045;
  border-radius: 50%;
  background: #06121d;
  box-shadow: 0 0 14px rgba(201, 160, 69, 0.2);
}

.caesars-mark::before,
.caesars-mark::after {
  position: absolute;
  top: 11px;
  color: #d8b34b;
  font-size: 18px;
}

.caesars-mark::before {
  content: "\2039";
  left: 6px;
}

.caesars-mark::after {
  content: "\203A";
  right: 6px;
}

.caesars-book small {
  color: #f5ce4e;
  font-size: 15px;
  text-transform: uppercase;
}

.green {
  color: var(--green-400);
  font-weight: 900;
}

.rating {
  font-size: 33px;
}

.rating-wrap {
  display: inline-flex;
  align-items: baseline;
  gap: 2px;
  white-space: nowrap;
}

.row-cta {
  width: min(100%, 172px);
  min-width: 0;
  min-height: 55px;
  font-size: 16px;
}

.view-btn {
  width: 168px;
  min-height: 52px;
  border: 1px solid rgba(159, 194, 255, 0.55);
  border-radius: 8px;
  color: var(--white);
  background: linear-gradient(180deg, rgba(21, 48, 87, 0.94), rgba(9, 23, 45, 0.94));
  font-weight: 900;
  cursor: pointer;
  transition: border-color 180ms ease, transform 180ms ease, background 180ms ease;
}

.view-btn:hover {
  transform: translateY(-1px);
  border-color: var(--blue-400);
  background: linear-gradient(180deg, rgba(25, 77, 137, 0.98), rgba(10, 30, 62, 0.98));
}

.features {
  padding-top: 32px;
}

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

.feature-card {
  display: grid;
  grid-template-columns: 92px 1fr;
  align-items: center;
  gap: 18px;
  min-height: 165px;
  padding: 24px;
  border: 1px solid rgba(118, 170, 255, 0.36);
  border-radius: 12px;
  background:
    radial-gradient(circle at 18% 48%, rgba(20, 141, 255, 0.18), transparent 34%),
    linear-gradient(180deg, rgba(16, 39, 75, 0.92), rgba(7, 22, 45, 0.94));
  box-shadow: 0 0 24px rgba(0, 105, 255, 0.16) inset, 0 14px 30px rgba(0, 0, 0, 0.18);
}

.feature-icon {
  width: 86px;
  height: 86px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 4px solid var(--blue-500);
  border-radius: 50%;
  color: var(--blue-300);
  background: rgba(7, 25, 53, 0.84);
  box-shadow: 0 0 22px rgba(0, 132, 255, 0.62), 0 0 20px rgba(0, 132, 255, 0.36) inset;
  font-size: 47px;
  font-weight: 1000;
}

.people-icon,
.target-icon {
  position: relative;
}

.people-icon span {
  position: absolute;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--blue-400);
}

.people-icon span:nth-child(1) {
  top: 28px;
  left: 22px;
}

.people-icon span:nth-child(2) {
  top: 22px;
  left: 42px;
}

.people-icon span:nth-child(3) {
  top: 45px;
  left: 29px;
  width: 36px;
  height: 18px;
  border-radius: 16px 16px 8px 8px;
}

.target-icon::before,
.target-icon::after {
  content: "";
  position: absolute;
  background: var(--blue-300);
}

.target-icon::before {
  width: 48px;
  height: 4px;
}

.target-icon::after {
  width: 4px;
  height: 48px;
}

.target-icon span {
  width: 32px;
  height: 32px;
  border: 5px solid var(--blue-300);
  border-radius: 50%;
}

.feature-card h3 {
  margin-bottom: 9px;
  font-size: 21px;
  line-height: 1.2;
}

.feature-card p {
  margin: 0;
  color: #dce7f8;
  font-size: 18px;
  line-height: 1.4;
}

.cta-band {
  position: relative;
  min-height: 236px;
  margin-top: 28px;
  border: 1px solid rgba(101, 162, 255, 0.4);
  border-radius: 12px;
  overflow: hidden;
  background: #06111f;
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.35);
}

.cta-band img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.8;
}

.cta-band::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(2, 9, 20, 0.24), rgba(2, 9, 20, 0.38) 26%, rgba(2, 9, 20, 0.12) 70%, rgba(2, 9, 20, 0.1));
}

.cta-shield {
  position: absolute;
  z-index: 2;
  left: 56px;
  top: 44px;
  width: 120px;
  height: 146px;
  opacity: 0.88;
}

.cta-content {
  position: relative;
  z-index: 3;
  min-height: 236px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 34px 240px 34px 220px;
  text-align: center;
}

.cta-content h2 {
  margin-bottom: 10px;
  font-size: 43px;
  line-height: 1.05;
}

.cta-content p {
  margin-bottom: 20px;
  color: #eff6ff;
  font-size: 22px;
}

.secondary-cta {
  min-width: 360px;
  min-height: 70px;
  padding: 0 28px;
  font-size: 24px;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  padding: 26px 70px 30px;
}

.trust-strip div {
  display: flex;
  align-items: center;
  gap: 16px;
  min-height: 54px;
}

.trust-icon {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--blue-400);
  border: 2px solid rgba(38, 144, 255, 0.72);
  border-radius: 10px;
  font-size: 25px;
  font-weight: 900;
}

.shield-mini {
  clip-path: none;
  color: var(--blue-400);
  background: rgba(8, 31, 57, 0.8);
}

.trust-strip p {
  margin: 0;
  color: #e8f1ff;
  font-size: 17px;
  line-height: 1.25;
}

@media (max-width: 1160px) {
  .site-header {
    padding: 0 32px;
  }

  .hero {
    grid-template-columns: minmax(460px, 0.9fr) minmax(520px, 1.1fr);
    min-height: 540px;
  }

  .hero-copy {
    padding: 48px 18px 24px 32px;
  }

  h1,
  .hero-text {
    max-width: 560px;
  }

  h1 {
    font-size: 50px;
  }

  .hero-text {
    font-size: 17px;
  }

  .primary-cta {
    min-width: 330px;
    min-height: 66px;
    font-size: 21px;
  }

  .hero-art {
    min-height: 540px;
  }

  .score-card {
    left: -42px;
    bottom: 82px;
  }

  .odds-card {
    right: 258px;
    bottom: 46px;
  }

  .boost-card {
    right: 36px;
  }

  .phone-ui {
    width: 246px;
    min-height: 418px;
  }

  .slip-card {
    right: 248px;
  }

  .comparison {
    width: min(100% - 30px, 1320px);
    padding: 16px 14px 14px;
  }

  .section-title h2 {
    font-size: 38px;
  }

  th,
  td {
    padding: 14px 9px;
    font-size: 14px;
  }

  th:first-child,
  td:first-child {
    width: 25%;
  }

  th:last-child,
  td:last-child {
    width: 15%;
  }

  .book {
    gap: 10px;
    font-size: 20px;
  }

  .book .book-mark,
  .dk-mark,
  .mgm-mark,
  .caesars-mark {
    width: 42px;
    height: 42px;
  }

  .top-pick {
    min-width: 78px;
    min-height: 28px;
    font-size: 12px;
  }

  .rating {
    font-size: 29px;
  }

  .row-cta,
  .view-btn {
    min-height: 48px;
    font-size: 15px;
  }

  .feature-card {
    grid-template-columns: 78px 1fr;
    gap: 14px;
    padding: 20px;
  }

  .feature-icon {
    width: 72px;
    height: 72px;
    font-size: 38px;
  }

  .feature-card h3 {
    font-size: 19px;
  }

  .feature-card p {
    font-size: 16px;
  }

  .cta-content {
    padding-right: 160px;
    padding-left: 180px;
  }

  .cta-content h2 {
    font-size: 38px;
  }
}

@media (max-width: 880px) {
  .site-header {
    height: 76px;
    padding: 0 18px;
  }

  .brand {
    font-size: 26px;
  }

  .shield-mark {
    width: 38px;
    height: 47px;
  }

  .header-cta {
    min-width: 132px;
    min-height: 48px;
    padding: 0 16px;
    font-size: 15px;
  }

  .hero {
    grid-template-columns: minmax(320px, 0.82fr) minmax(415px, 1.18fr);
    min-height: 0;
  }

  .hero-copy {
    padding: 42px 20px 28px;
  }

  .eyebrow {
    font-size: 17px;
  }

  h1 {
    font-size: 39px;
  }

  .hero-text {
    font-size: 18px;
  }

  .primary-cta {
    width: 100%;
    min-width: 0;
    min-height: 72px;
    font-size: 21px;
  }

  .hero-art {
    min-height: 520px;
  }

  .boost-card {
    top: 18px;
    right: 14px;
    width: 206px;
  }

  .score-card {
    left: 14px;
    bottom: 80px;
    width: 212px;
  }

  .phone-ui {
    right: 14px;
    bottom: 16px;
    width: 230px;
    min-height: 404px;
    border-radius: 27px;
    transform: scale(0.86);
    transform-origin: right bottom;
  }

  .odds-card,
  .slip-card {
    display: none;
  }

  .comparison {
    width: min(100% - 20px, 1320px);
    padding: 14px 10px 12px;
  }

  th,
  td {
    padding: 11px 5px;
    font-size: 12px;
  }

  th:first-child,
  td:first-child {
    width: 24%;
  }

  th:nth-child(2),
  td:nth-child(2) {
    width: 15%;
  }

  th:last-child,
  td:last-child {
    width: 14%;
  }

  .book {
    flex-wrap: wrap;
    gap: 7px;
    font-size: 17px;
  }

  .book .book-mark,
  .dk-mark,
  .mgm-mark,
  .caesars-mark {
    width: 34px;
    height: 34px;
    font-size: 20px;
  }

  .top-pick {
    min-width: 66px;
    min-height: 26px;
    padding: 0 8px;
    font-size: 10px;
  }

  .rating {
    font-size: 25px;
  }

  .row-cta,
  .view-btn {
    width: min(100%, 110px);
    min-height: 46px;
    padding-left: 5px;
    padding-right: 5px;
    font-size: 13px;
  }

}

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

  .hero-copy {
    background: linear-gradient(180deg, rgba(3, 10, 23, 0.99), rgba(3, 10, 23, 0.82));
  }

  h1,
  .hero-text {
    max-width: 700px;
  }

  .score-card {
    left: 14px;
  }

  .comparison,
  .features,
  .cta-band,
  .trust-strip {
    width: min(100% - 24px, 1320px);
  }

  .comparison {
    margin-top: 14px;
    padding: 14px;
  }

  .section-title {
    grid-template-columns: 52px 1fr 52px;
    gap: 14px;
  }

  .section-title h2 {
    font-size: 34px;
  }

  table,
  thead,
  tbody,
  tr,
  th,
  td {
    display: block;
  }

  thead {
    display: none;
  }

  tbody {
    display: grid;
    gap: 12px;
    padding: 12px;
  }

  tr {
    border: 1px solid rgba(113, 163, 255, 0.24);
    border-radius: 12px;
    overflow: hidden;
    background: rgba(5, 20, 42, 0.86);
  }

  .featured-row {
    outline: 2px solid var(--blue-500);
    box-shadow: 0 0 25px rgba(0, 132, 255, 0.55) inset, 0 0 22px rgba(0, 132, 255, 0.4);
  }

  th:first-child,
  td:first-child,
  th:nth-child(2),
  td:nth-child(2),
  th:nth-child(6),
  td:nth-child(6),
  th:last-child,
  td:last-child {
    width: auto;
  }

  td {
    display: grid;
    grid-template-columns: 138px 1fr;
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
    text-align: right;
    border-bottom: 1px solid rgba(113, 163, 255, 0.12);
  }

  td::before {
    content: attr(data-label);
    color: #9cb8e1;
    text-align: left;
    font-size: 13px;
    font-weight: 900;
  }

  td:first-child {
    display: block;
    text-align: left;
    padding-top: 16px;
  }

  td:first-child::before {
    display: none;
  }

  .book {
    font-size: 21px;
  }

  .row-cta,
  .view-btn {
    width: 100%;
    min-width: 0;
  }

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

  .feature-card {
    grid-template-columns: 74px 1fr;
    gap: 16px;
    padding: 18px;
  }

  .feature-icon {
    width: 70px;
    height: 70px;
    font-size: 36px;
  }

  .people-icon span:nth-child(1) {
    top: 23px;
    left: 18px;
  }

  .people-icon span:nth-child(2) {
    top: 18px;
    left: 34px;
  }

  .people-icon span:nth-child(3) {
    top: 37px;
    left: 22px;
  }

  .feature-card h3 {
    font-size: 19px;
  }

  .feature-card p {
    font-size: 16px;
  }

  .cta-band {
    min-height: 320px;
  }

  .cta-shield {
    left: 22px;
    top: 22px;
    width: 78px;
    height: 96px;
  }

  .cta-content {
    min-height: 320px;
    padding: 82px 18px 30px;
  }

  .cta-content h2 {
    font-size: 38px;
  }

  .cta-content p {
    font-size: 18px;
  }

  .secondary-cta {
    width: 100%;
    min-width: 0;
  }

  .trust-strip {
    grid-template-columns: repeat(2, 1fr);
    padding: 22px 10px 28px;
    gap: 18px;
  }
}

@media (max-width: 560px) {
  .brand {
    gap: 9px;
    font-size: 22px;
  }

  .site-header {
    padding: 0 14px;
  }

  .header-cta {
    min-width: 104px;
    font-size: 14px;
  }

  h1 {
    font-size: 43px;
  }

  .hero-copy {
    padding: 34px 16px 22px;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
  }

  .hero-text {
    font-size: 17px;
    max-width: 100%;
  }

  .primary-cta {
    padding: 0 18px;
    gap: 12px;
    font-size: 19px;
  }

  .microcopy {
    display: grid;
    gap: 8px;
  }

  .hero-art {
    min-height: 475px;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
  }

  .hero-image {
    object-position: 66% 50%;
  }

  .boost-card {
    right: 6px;
    width: 172px;
    padding: 14px;
  }

  .score-card {
    width: 186px;
    bottom: 54px;
    padding: 13px;
  }

  .team-row {
    font-size: 17px;
  }

  .team-row strong {
    font-size: 25px;
  }

  .phone-ui {
    width: 214px;
    right: -18px;
    transform: scale(0.68);
  }

  .comparison {
    padding: 10px;
    overflow: hidden;
  }

  tbody {
    padding: 8px;
  }

  .section-title {
    grid-template-columns: 20px minmax(0, 1fr) 20px;
    gap: 10px;
  }

  .section-title h2 {
    font-size: 27px;
    line-height: 1.05;
  }

  td {
    grid-template-columns: 96px minmax(0, 1fr);
    padding-left: 10px;
    padding-right: 10px;
    font-size: 15px;
  }

  td > * {
    min-width: 0;
  }

  .book {
    flex-wrap: wrap;
    gap: 10px;
  }

  .top-pick {
    min-width: 82px;
  }

  .row-cta,
  .view-btn {
    font-size: 14px;
    padding-left: 8px;
    padding-right: 8px;
  }

  .rating {
    font-size: 28px;
  }

  .feature-grid {
    gap: 12px;
  }

  .feature-card {
    grid-template-columns: 1fr;
    text-align: center;
    justify-items: center;
  }

  .cta-content h2 {
    font-size: 33px;
  }

  .trust-strip {
    grid-template-columns: 1fr;
  }
}
