:root {
  --line: #e8e8e8;
  --text: #52636f;
  --muted: #686868;
  --accent: #ff2026;
  --green: #1db954;
  --bg-soft: #f7f7f8;
  --fixed-header-offset: 138px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  font-family: Inter, system-ui, -apple-system, Segoe UI, sans-serif;
  color: var(--text);
  background: #f1f2f4;
  padding-top: var(--fixed-header-offset);
}

a {
  color: #52636f;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: #000000;
}

body.modal-open {
  overflow: hidden;
}

.container {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
}

.ticker-wrap {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  border-top: 1px solid #efefef;
  border-bottom: 1px solid #efefef;
  background: linear-gradient(180deg, #ffffff, #fafafa);
  overflow: hidden;
  z-index: 1200;
}

.ticker-wrap::before,
.ticker-wrap::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 36px;
  pointer-events: none;
  z-index: 1;
}

.ticker-wrap::before {
  left: 0;
  background: linear-gradient(90deg, #ffffff 0%, rgba(255, 255, 255, 0) 100%);
}

.ticker-wrap::after {
  right: 0;
  background: linear-gradient(270deg, #ffffff 0%, rgba(255, 255, 255, 0) 100%);
}

.ticker-track {
  display: flex;
  gap: 10px;
  padding: 10px 0;
  width: max-content;
  color: var(--text);
  font-size: 0.84rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  animation: ticker 24s linear infinite;
  align-items: center;
}

.ticker-track span {
  display: inline-flex;
  align-items: center;
  border: 1px solid #e8e8e8;
  border-radius: 999px;
  padding: 6px 10px;
  background: #ffffff;
  font-weight: 600;
}

.ticker-track span:nth-child(5n + 1) {
  color: #ffffff;
  background: var(--accent);
  border-color: var(--accent);
  font-weight: 700;
  position: relative;
  padding-left: 18px;
}

.ticker-track span:nth-child(5n + 1)::before {
  content: "";
  position: absolute;
  left: 8px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #ffffff;
  animation: livePulse 1.1s ease-in-out infinite;
}

@keyframes livePulse {
  0%,
  100% {
    opacity: 0.45;
    transform: scale(0.8);
  }
  50% {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes ticker {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.hero-shell {
  position: fixed;
  top: 42px;
  left: 0;
  right: 0;
  padding: 8px 0 10px;
  background: #f1f2f4;
  z-index: 1190;
}

main.container,
.legal-main,
.page {
  padding-top: 0;
}

.promo-section {
  padding: 48px 0 0;
}

.hero-headline {
  margin: 0;
  font-family: "Roboto Flex", Inter, sans-serif;
  font-variation-settings: "opsz" 72, "wght" 700;
  font-size: clamp(2rem, 5vw, 3.5rem);
  line-height: 1.08;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

.hero-line {
  display: block;
  color: #000000;
}

.hero-line.hero-accent {
  font-style: italic;
  color: var(--accent);
}

.hero-subline {
  margin: 20px 0 0;
  max-width: 42ch;
  font-size: 1.05rem;
  line-height: 1.55;
  color: var(--text);
}

.promo-side.hero-text-block {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 24px 0 24px 24px;
}

.coverage-section {
  margin-top: 100px;
  padding-bottom: 72px;
}

.coverage-kicker {
  margin: 0 0 6px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
}

.coverage-heading {
  margin: 0 0 8px;
  font-family: Archivo, sans-serif;
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  font-weight: 700;
  color: #000000;
}

.coverage-intro {
  margin: 0 0 36px;
  font-size: 0.98rem;
  line-height: 1.5;
  color: var(--text);
}

.coverage-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 24px;
  align-items: start;
}

.coverage-card {
  background: #ffffff;
  border: 1px solid #dce0e5;
  border-radius: 14px;
  padding: 26px 24px;
}

.coverage-card-main {
  border-left: 4px solid var(--accent);
}

.coverage-side-cards {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.coverage-card-small {
  --card-tilt: 0deg;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  min-height: 124px;
  padding: 20px 22px 20px 84px;
  border-radius: 20px;
  box-shadow: 0 12px 26px rgba(12, 18, 26, 0.07);
  transform: rotate(var(--card-tilt));
  transform-origin: left center;
  transition: transform 0.24s ease, box-shadow 0.24s ease;
  animation: coverageCardIn 0.5s ease both;
}

.coverage-card-small::before {
  content: "";
  position: absolute;
  left: 20px;
  top: 50%;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  transform: translateY(-50%) rotate(-8deg);
  font-family: Archivo, sans-serif;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  z-index: 1;
}

.coverage-card-small::after {
  content: "";
  position: absolute;
  right: -36px;
  bottom: -44px;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  z-index: 0;
}

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

.coverage-card-small:nth-child(1) {
  --card-tilt: -1.25deg;
  background: linear-gradient(155deg, #ffffff 0%, #fff3f4 100%);
  border-color: #efc9cf;
  border-radius: 16px 24px 16px 24px;
}

.coverage-card-small:nth-child(1)::before {
  content: "ODDS";
  color: #ffffff;
  background: linear-gradient(145deg, #d30f23, #ff4f5e);
  border: 1px solid rgba(255, 255, 255, 0.45);
  box-shadow: 0 8px 18px rgba(211, 15, 35, 0.35);
}

.coverage-card-small:nth-child(1)::after {
  background: radial-gradient(circle, rgba(255, 32, 38, 0.16) 0%, rgba(255, 32, 38, 0) 72%);
}

.coverage-card-small:nth-child(2) {
  --card-tilt: 0.9deg;
  background:
    radial-gradient(circle at 93% 14%, rgba(58, 108, 186, 0.12), rgba(58, 108, 186, 0) 38%),
    linear-gradient(150deg, #fbfdff 0%, #eef5ff 100%);
  border-color: #cfdcf0;
  border-radius: 24px 16px 24px 16px;
}

.coverage-card-small:nth-child(2)::before {
  content: "AGE";
  color: #103a79;
  background: linear-gradient(145deg, #e8f1ff, #d8e8ff);
  border: 1px solid #b8ceed;
  box-shadow: 0 8px 16px rgba(35, 80, 147, 0.18);
}

.coverage-card-small:nth-child(2)::after {
  background: radial-gradient(circle, rgba(30, 88, 184, 0.13) 0%, rgba(30, 88, 184, 0) 72%);
}

.coverage-card-small:nth-child(3) {
  --card-tilt: -0.8deg;
  background:
    radial-gradient(circle at 92% 14%, rgba(25, 166, 105, 0.14), rgba(25, 166, 105, 0) 42%),
    linear-gradient(148deg, #ffffff 0%, #f0faf5 100%);
  border-color: #cde8da;
  border-radius: 18px 28px 18px 28px;
}

.coverage-card-small:nth-child(3)::before {
  content: "SAFE";
  color: #0d5a3f;
  background: linear-gradient(145deg, #e9fff4, #d7f6e6);
  border: 1px solid #b8e6cd;
  box-shadow: 0 8px 16px rgba(20, 125, 84, 0.18);
}

.coverage-card-small:nth-child(3)::after {
  background: radial-gradient(circle, rgba(37, 167, 108, 0.18) 0%, rgba(37, 167, 108, 0) 72%);
}

.coverage-card-small:nth-child(3) .coverage-card-title {
  color: #10291f;
}

.coverage-card-small:nth-child(3) .coverage-card-desc {
  color: #456052;
}

.coverage-card-small:nth-child(2) {
  animation-delay: 0.08s;
}

.coverage-card-small:nth-child(3) {
  animation-delay: 0.16s;
}

.coverage-card-small:hover {
  transform: translateY(-5px) rotate(0deg);
  box-shadow: 0 16px 30px rgba(12, 18, 26, 0.14);
}

@keyframes coverageCardIn {
  from {
    opacity: 0;
    transform: translateY(10px) rotate(var(--card-tilt));
  }
  to {
    opacity: 1;
    transform: rotate(var(--card-tilt));
  }
}

.coverage-card-title {
  margin: 0 0 10px;
  font-family: Archivo, sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: #000000;
  line-height: 1.2;
}

.coverage-card-desc {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.5;
  color: var(--text);
}

.license-details-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.license-detail-item {
  background: #f8f9fb;
  border: 1px solid #eaecef;
  border-radius: 8px;
  padding: 16px 18px;
}

.license-detail-full {
  grid-column: 1 / -1;
}

.license-label {
  display: block;
  margin-bottom: 8px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #6b7885;
}

.license-value {
  display: block;
  font-size: 0.92rem;
  font-weight: 600;
  color: #0a0a0a;
  line-height: 1.4;
}

.license-active {
  color: #16a458;
}

.orientation-section {
  margin: 0 0 100px;
  padding: 8px;
  border-radius: 30px;
  border: 1px solid #d9dde4;
  background:
    radial-gradient(circle at 12% 0%, rgba(255, 32, 38, 0.14), rgba(255, 32, 38, 0) 34%),
    radial-gradient(circle at 94% 100%, rgba(255, 88, 96, 0.16), rgba(255, 88, 96, 0) 42%),
    linear-gradient(150deg, #f8f9fb 0%, #eef1f5 100%);
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.orientation-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(100deg, rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0) 40%) 0 0 / 100% 100% no-repeat;
  pointer-events: none;
  z-index: 0;
}

.orientation-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 20px;
  align-items: stretch;
}

.orientation-card {
  position: relative;
  min-height: 320px;
  border: 1px solid #d7dde6;
  color: var(--text);
  box-shadow: 0 12px 24px rgba(16, 24, 40, 0.06);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.orientation-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 28px rgba(16, 24, 40, 0.1);
}

.orientation-card-main {
  padding: 26px 26px 24px;
  border-radius: 24px 40px 24px 24px;
  background:
    linear-gradient(160deg, #ffffff 0%, #fff5f6 100%),
    #ffffff;
  clip-path: polygon(0 0, calc(100% - 28px) 0, 100% 28px, 100% 100%, 0 100%);
}

.orientation-card-main::after {
  content: "";
  position: absolute;
  right: 18px;
  top: 18px;
  width: 56px;
  height: 56px;
  border-radius: 16px;
  border: 1px solid rgba(255, 32, 38, 0.35);
  background:
    radial-gradient(circle at 35% 30%, rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0) 60%),
    linear-gradient(145deg, rgba(255, 32, 38, 0.82), rgba(255, 89, 99, 0.8));
  box-shadow: 0 10px 18px rgba(255, 32, 38, 0.24);
  transform: rotate(13deg);
  pointer-events: none;
}

.orientation-card-side {
  padding: 26px 24px;
  border-radius: 22px;
  background:
    linear-gradient(155deg, #ffffff 0%, #f9fbff 62%, #fff2f3 100%),
    #ffffff;
  overflow: hidden;
}

.orientation-card-side::before {
  content: "";
  position: absolute;
  right: -38px;
  top: -34px;
  width: 136px;
  height: 136px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 82, 91, 0.2) 0%, rgba(255, 82, 91, 0) 72%);
}

.orientation-kicker {
  margin: 0 0 16px;
  font-family: Archivo, sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
}

.orientation-title {
  margin: 0;
  max-width: 16ch;
  font-family: Archivo, sans-serif;
  font-size: clamp(1.8rem, 3.2vw, 2.35rem);
  font-weight: 700;
  line-height: 1.1;
  color: #060606;
}

.orientation-text {
  margin: 16px 0 0;
  max-width: 58ch;
  color: var(--text);
  font-size: 1.02rem;
  line-height: 1.5;
}

.orientation-highlight {
  margin-top: 18px;
  padding: 16px 18px;
  border: 1px solid #e4d6d9;
  border-radius: 14px;
  background:
    linear-gradient(170deg, #ffffff 0%, #fff6f7 100%),
    #ffffff;
}

.orientation-highlight h3 {
  margin: 0 0 8px;
  font-family: Archivo, sans-serif;
  font-size: 1.25rem;
  line-height: 1.2;
  color: #111111;
}

.orientation-highlight p {
  margin: 0;
  color: var(--text);
  line-height: 1.45;
}

.orientation-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.orientation-list li {
  position: relative;
  padding-left: 22px;
  color: #495b68;
  font-size: 1.03rem;
  line-height: 1.45;
}

.orientation-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.58em;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 30% 30%, #ffd3d7 0%, #ff5662 62%, #dc1d2d 100%);
  box-shadow: 0 0 0 3px rgba(255, 74, 86, 0.18);
}

.orientation-media {
  margin: 18px 0 0;
  border: 1px solid #e6dadd;
  border-radius: 14px;
  overflow: hidden;
  background: #ffffff;
}

.orientation-image {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 7;
  object-fit: cover;
  object-position: center;
}

.useful-pages-section {
  margin: 0 0 110px;
  padding: 36px 34px 32px;
  border-radius: 28px;
  border: 1px solid #dadfe7;
  background:
    radial-gradient(circle at 98% 4%, rgba(255, 63, 78, 0.18), rgba(255, 63, 78, 0) 30%),
    radial-gradient(circle at -8% 110%, rgba(255, 133, 144, 0.16), rgba(255, 133, 144, 0) 45%),
    linear-gradient(155deg, #ffffff 0%, #f2f4f8 62%, #eef1f5 100%);
  position: relative;
  overflow: hidden;
}

#usefulPages,
#faq {
  scroll-margin-top: calc(var(--fixed-header-offset) + 10px);
}

.useful-pages-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(110deg, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0) 44%),
    repeating-linear-gradient(
      -25deg,
      rgba(255, 255, 255, 0.18) 0,
      rgba(255, 255, 255, 0.18) 12px,
      rgba(255, 255, 255, 0) 12px,
      rgba(255, 255, 255, 0) 26px
    );
  pointer-events: none;
}

.useful-kicker {
  margin: 0;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
}

.useful-title {
  margin: 14px 0 0;
  max-width: 16ch;
  font-family: Archivo, sans-serif;
  font-size: clamp(2rem, 4.4vw, 4rem);
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: -0.03em;
  color: #0d0f14;
}

.useful-intro {
  margin: 20px 0 0;
  max-width: 66ch;
  color: #4f606d;
  font-size: 1.03rem;
  line-height: 1.48;
}

.useful-grid {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.useful-card {
  display: block;
  min-height: 124px;
  padding: 18px 20px;
  border-radius: 18px 22px 18px 22px;
  border: 1px solid #d9e0ea;
  background:
    radial-gradient(circle at 100% 0, rgba(255, 75, 89, 0.09), rgba(255, 75, 89, 0) 38%),
    linear-gradient(165deg, #ffffff 0%, #f7f9fc 100%);
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.useful-card::before {
  content: "";
  position: absolute;
  top: 14px;
  right: 14px;
  width: 34px;
  height: 34px;
  border-radius: 10px;
  transform: rotate(10deg);
  border: 1px solid #f2c7cd;
  background: linear-gradient(145deg, #fff4f6, #ffe3e7);
}

.useful-card::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, #ff5a67 0%, #ff1f34 100%);
}

.useful-card:nth-child(2) {
  background:
    radial-gradient(circle at 100% 0, rgba(54, 110, 210, 0.1), rgba(54, 110, 210, 0) 38%),
    linear-gradient(165deg, #ffffff 0%, #f5f9ff 100%);
}

.useful-card:nth-child(2)::before {
  border-color: #c7d9f5;
  background: linear-gradient(145deg, #f1f7ff, #e0edff);
}

.useful-card:nth-child(2)::after {
  background: linear-gradient(180deg, #5b8fe2 0%, #3269c5 100%);
}

.useful-card:nth-child(3) {
  background:
    radial-gradient(circle at 100% 0, rgba(25, 167, 108, 0.12), rgba(25, 167, 108, 0) 38%),
    linear-gradient(165deg, #ffffff 0%, #f2fbf6 100%);
}

.useful-card:nth-child(3)::before {
  border-color: #bee8d2;
  background: linear-gradient(145deg, #ebfff3, #d8f6e7);
}

.useful-card:nth-child(3)::after {
  background: linear-gradient(180deg, #35af78 0%, #1f9260 100%);
}

.useful-card h3 {
  margin: 0;
  font-family: Archivo, sans-serif;
  font-size: 1.02rem;
  color: #11161c;
}

.useful-card p {
  margin: 8px 0 0;
  color: #4f616f;
  font-size: 0.96rem;
  line-height: 1.46;
}

.useful-card:hover {
  transform: translateY(-3px);
  border-color: #c5d0de;
  box-shadow: 0 14px 24px rgba(19, 33, 51, 0.12);
}

.faq-section {
  margin: 0 0 110px;
  padding: 30px 30px 28px;
  border-radius: 30px;
  border: 1px solid #d8dfe7;
  background:
    radial-gradient(circle at 4% -10%, rgba(255, 74, 88, 0.18), rgba(255, 74, 88, 0) 36%),
    radial-gradient(circle at 100% 10%, rgba(88, 149, 241, 0.12), rgba(88, 149, 241, 0) 34%),
    linear-gradient(158deg, #ffffff 0%, #f2f4f8 58%, #eef1f5 100%);
  position: relative;
  overflow: hidden;
}

.faq-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(110deg, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0) 42%),
    repeating-linear-gradient(
      -30deg,
      rgba(255, 255, 255, 0.18) 0,
      rgba(255, 255, 255, 0.18) 12px,
      rgba(255, 255, 255, 0) 12px,
      rgba(255, 255, 255, 0) 24px
    );
}

.faq-kicker,
.faq-title,
.faq-intro,
.faq-stack {
  position: relative;
  z-index: 1;
}

.faq-kicker {
  margin: 0;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.17em;
  text-transform: uppercase;
  color: var(--accent);
}

.faq-title {
  margin: 12px 0 0;
  max-width: 14ch;
  font-family: Archivo, sans-serif;
  font-size: clamp(1.9rem, 4vw, 3.1rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: #0d1015;
}

.faq-intro {
  margin: 14px 0 0;
  max-width: 68ch;
  color: #4d5f6c;
  line-height: 1.5;
  font-size: 1rem;
}

.faq-stack {
  margin-top: 22px;
  display: grid;
  gap: 12px;
}

.faq-item {
  border: 1px solid #d7deea;
  border-radius: 18px 24px 18px 22px;
  background:
    radial-gradient(circle at 100% 0, rgba(255, 74, 88, 0.08), rgba(255, 74, 88, 0) 38%),
    linear-gradient(165deg, #ffffff 0%, #f7f9fc 100%);
  transition: border-color 0.22s ease, box-shadow 0.22s ease, transform 0.22s ease;
}

.faq-item:nth-child(2) {
  background:
    radial-gradient(circle at 100% 0, rgba(72, 137, 238, 0.1), rgba(72, 137, 238, 0) 38%),
    linear-gradient(165deg, #ffffff 0%, #f3f8ff 100%);
}

.faq-item:nth-child(3) {
  background:
    radial-gradient(circle at 100% 0, rgba(35, 171, 111, 0.11), rgba(35, 171, 111, 0) 38%),
    linear-gradient(165deg, #ffffff 0%, #f2faf6 100%);
}

.faq-item:hover {
  transform: translateY(-2px);
  border-color: #c8d3e2;
  box-shadow: 0 12px 20px rgba(20, 33, 50, 0.09);
}

.faq-item.is-open {
  border-color: #bfccdd;
  box-shadow: 0 12px 22px rgba(20, 33, 50, 0.12);
}

.faq-heading {
  margin: 0;
}

.faq-trigger {
  width: 100%;
  border: 0;
  background: transparent;
  padding: 18px 18px 16px;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  font: inherit;
  color: #11161d;
  font-family: Archivo, sans-serif;
  font-size: 1.23rem;
  font-weight: 700;
  line-height: 1.2;
  cursor: pointer;
}

.faq-trigger span:first-child {
  max-width: 52ch;
}

.faq-arrow {
  flex: 0 0 auto;
  width: 30px;
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 9px;
  border: 1px solid #f4c5cc;
  background: linear-gradient(145deg, #fff4f6, #ffe4e8);
  color: #d6162a;
  font-size: 1rem;
  line-height: 1;
  transform: rotate(180deg);
  transition: transform 0.22s ease, border-color 0.22s ease;
}

.faq-item.is-open .faq-arrow {
  transform: rotate(0deg);
}

.faq-item:nth-child(2) .faq-arrow {
  border-color: #c7d9f4;
  background: linear-gradient(145deg, #f1f7ff, #e0ecff);
  color: #2e68c5;
}

.faq-item:nth-child(3) .faq-arrow {
  border-color: #bee8d3;
  background: linear-gradient(145deg, #ebfff3, #d8f6e7);
  color: #1d8d5c;
}

.faq-panel {
  padding: 0 18px 18px;
}

.faq-panel p {
  margin: 0;
  color: #495c6a;
  font-size: 1rem;
  line-height: 1.5;
}

.promo-layout {
  display: grid;
  grid-template-columns: minmax(0, 650px) minmax(0, 1fr);
  gap: 24px;
  align-items: stretch;
}

.rebate-card {
  border: 1px solid #5e0007;
  border-radius: 28px;
  background:
    radial-gradient(circle at 64% 50%, rgba(255, 87, 105, 0.45), rgba(255, 87, 105, 0) 44%),
    linear-gradient(125deg, #220003 0%, #520105 38%, #7f0b10 100%);
  padding: 36px 32px 32px;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  overflow: hidden;
  position: relative;
  width: 100%;
}

.rebate-left {
  width: min(420px, 100%);
  position: relative;
  z-index: 2;
}

.rebate-kicker {
  margin: 0;
  font-size: 0.92rem;
  font-style: italic;
  font-weight: 800;
  color: #fff0f0;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.rebate-card h2 {
  margin: 8px 0 4px;
  font-family: Archivo, sans-serif;
  font-size: clamp(2.2rem, 6vw, 4.8rem);
  line-height: 0.9;
  color: #ffe100;
}

.rebate-card h2 span {
  font-size: 1.1em;
  color: #ffe100;
}

.rebate-text {
  margin: 8px 0 0;
  max-width: 58ch;
  color: #fff4f4;
  line-height: 1.42;
  font-size: 1.1rem;
}

.rebate-meta {
  margin-top: 16px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.meta-box {
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  padding: 10px 12px;
  min-width: 148px;
  backdrop-filter: blur(2px);
}

.meta-box span {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: #ffd8db;
}

.meta-box strong {
  display: block;
  margin-top: 5px;
  color: #ffffff;
  font-size: 1.03rem;
}

.claim-row {
  margin-top: 18px;
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.claim-btn {
  background: #ffffff;
  color: #171717;
  border-radius: 999px;
  padding: 12px 28px;
  font-weight: 800;
}

.claim-btn:hover {
  opacity: 0.92;
}

.race-day-boost-badge {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  background: #4a0a0e;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 10px;
  padding: 10px 18px;
  line-height: 1.1;
}

.race-day-boost-badge .boost-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fff5f5;
}

.race-day-boost-badge .boost-word {
  display: block;
  margin-top: 2px;
  font-family: Archivo, sans-serif;
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: #ffe100;
}

.rebate-right {
  position: absolute;
  right: 10px;
  bottom: 8px;
  z-index: 1;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.rebate-right-title {
  margin-top: 10px;
  color: #fff5f5;
  text-align: right;
  text-transform: uppercase;
  line-height: 1;
}

.rebate-right-title span {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.11em;
  opacity: 0.9;
}

.rebate-right-title strong {
  display: block;
  margin-top: 4px;
  font-family: Archivo, sans-serif;
  font-size: 1.28rem;
  letter-spacing: 0.06em;
  color: #ffe89a;
}

.offer-hero-img {
  width: min(240px, 25vw);
  height: auto;
  display: block;
  border-radius: 14px;
}

.promo-side {
  padding: 24px 16px 24px 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.promo-side-kicker {
  margin: 0;
  color: var(--text);
  font-size: 0.88rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  font-weight: 700;
}

.promo-side h3 {
  margin: 10px 0 8px;
  font-family: Archivo, sans-serif;
  font-size: clamp(1.7rem, 3vw, 2.35rem);
  line-height: 1.04;
}

.promo-side p {
  margin: 0;
  color: var(--text);
  line-height: 1.56;
  font-size: 1.18rem;
}

.promo-side-link {
  margin-top: 14px;
  color: #000000;
  font-weight: 700;
  font-size: 1.2rem;
  text-decoration: none;
}

.path-section {
  margin-top: 160px;
  margin-bottom: 160px;
  scroll-margin-top: calc(var(--fixed-header-offset) + 10px);
}

.path-head {
  margin-bottom: 32px;
}

.path-head p {
  margin: 0;
  color: #000000;
  font-family: Archivo, sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.path-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.path-card {
  background: #ffffff;
  border: 1px solid #e8ebef;
  border-radius: 16px;
  padding: 36px 28px 32px;
  text-align: center;
}

.path-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin-bottom: 20px;
  border-radius: 50%;
  background: var(--accent);
  color: #ffffff;
  font-family: Archivo, sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
}

.path-card h4 {
  margin: 0 0 12px;
  color: #000000;
  font-family: Archivo, sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.path-card p {
  margin: 0;
  color: var(--text);
  font-size: 0.95rem;
  line-height: 1.5;
}

.betting-markets-section {
  margin-top: 160px;
  margin-bottom: 160px;
  scroll-margin-top: calc(var(--fixed-header-offset) + 10px);
}

.betting-markets-section .path-head {
  margin-bottom: 28px;
}

.betting-markets-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.betting-market-card {
  flex: 1 1 calc(20% - 10px);
  min-width: 160px;
  background: #ffffff;
  border: 1px solid #e8ebef;
  border-radius: 12px;
  padding: 24px 20px;
  text-align: center;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.betting-market-card:hover {
  border-color: rgba(255, 32, 38, 0.4);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.betting-market-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  margin-bottom: 12px;
  border-radius: 10px;
  background: linear-gradient(145deg, #fff5f5, #ffe8e9);
  border: 1px solid #ffd4d6;
}

.betting-market-icon i {
  width: 20px;
  height: 20px;
  color: var(--accent);
}

.betting-market-card h4 {
  margin: 0 0 8px;
  color: #000000;
  font-family: Archivo, sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.betting-market-card p {
  margin: 0;
  color: var(--text);
  font-size: 0.84rem;
  line-height: 1.45;
}

.official-license {
  margin-top: 160px;
  display: grid;
  grid-template-columns: 1.05fr 1fr 1fr;
  gap: 24px;
  scroll-margin-top: calc(var(--fixed-header-offset) + 10px);
}

.license-intro {
  padding: 24px 28px 24px 0;
}

.license-intro .license-intro-kicker {
  margin: 0 0 14px;
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #687b88;
  font-weight: 700;
}

.license-intro h3 {
  margin: 0 0 24px;
  font-family: Archivo, sans-serif;
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  font-weight: 700;
  line-height: 1.08;
  color: #000000;
  letter-spacing: -0.02em;
}

.license-intro p {
  margin: 0;
  color: var(--text);
  font-size: 1.08rem;
  line-height: 1.58;
}

.license-intro .regulated-by {
  margin-top: 28px !important;
  border-top: 1px solid #e6ebf2;
  padding-top: 16px;
  font-size: 0.9rem;
  color: var(--text);
}

.license-intro .regulated-by strong {
  color: #000000;
  font-size: 1.05rem;
}

.license-info-card,
.license-entity-card {
  border: 1px solid #1b2a3f;
  border-radius: 16px;
  background:
    radial-gradient(circle at 90% 20%, rgba(255, 32, 38, 0.1), transparent 40%),
    #0c1422;
  padding: 28px 26px;
}

.license-info-card .mini-kicker,
.license-entity-card .mini-kicker {
  margin: 0 0 20px;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #8fa3b8;
  font-weight: 700;
  text-align: center;
}

.license-info-card .info-row {
  margin-top: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  border-top: 1px solid #172232;
  padding-top: 12px;
}

.license-info-card .info-row:first-of-type {
  margin-top: 0;
  border-top: none;
  padding-top: 0;
}

.license-info-card .info-row span {
  color: #8fa3b8;
  font-size: 0.86rem;
}

.license-info-card .info-row strong {
  color: #ffffff;
  font-size: 1rem;
  font-weight: 600;
}

.license-info-card .info-row .active {
  color: #39e68d;
}

.license-entity-card h4 {
  margin: 0 0 20px;
  font-family: Archivo, sans-serif;
  font-size: clamp(1.35rem, 2vw, 1.65rem);
  font-weight: 700;
  line-height: 1.12;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.license-entity-card p {
  margin: 0;
  color: #9fb2c5;
  font-size: 0.98rem;
  line-height: 1.6;
}

.license-entity-card small {
  display: block;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid #172232;
  color: #7a8fa3;
  line-height: 1.45;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.site-footer {
  margin-top: 160px;
  background: #0a0a0a;
  padding: 48px 0 40px;
  scroll-margin-top: calc(var(--fixed-header-offset) + 10px);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 48px 32px;
  max-width: 1180px;
  margin-inline: auto;
  padding-inline: 20px;
}

.footer-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-logo {
  margin: 0 0 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-logo-icon {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  flex-shrink: 0;
  background: rgba(255, 32, 38, 0.15);
  border: 1px solid rgba(255, 32, 38, 0.5);
}

.footer-trophy-icon {
  width: 20px;
  height: 20px;
  color: var(--accent);
  stroke-width: 2.4;
}

.footer-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.06;
}

.footer-logo strong {
  display: block;
  font-family: "Roboto Flex", Inter, sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: #ffffff;
  text-transform: uppercase;
}

.footer-logo .logo-accent {
  display: block;
  margin-top: 4px;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  color: var(--accent);
}

.footer-disclaimer,
.footer-regulated {
  margin: 0 0 14px;
  color: #9ca3af;
  font-size: 0.82rem;
  line-height: 1.55;
}

.footer-regulated {
  margin-bottom: 0;
  color: #7a8490;
}

.footer-heading {
  margin: 0 0 16px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #8b9299;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-links a {
  color: #b8bfc6;
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.footer-links a:hover {
  color: var(--accent);
}

.footer-track-time {
  margin: 0 0 12px;
  font-size: 0.88rem;
  color: #8b9299;
}

.footer-track-time #trackTime {
  color: var(--accent);
  font-weight: 700;
}

.footer-copy {
  margin: 0;
  color: #7a8490;
  font-size: 0.82rem;
}

.footer-payments-strip {
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid #1f2937;
}

.footer-payments-strip .footer-heading {
  margin-bottom: 12px;
}

.payment-strip {
  background: linear-gradient(90deg, rgba(255, 32, 38, 0.08) 0%, rgba(255, 32, 38, 0.14) 50%, rgba(255, 32, 38, 0.08) 100%);
  border: 1px solid rgba(255, 32, 38, 0.25);
  border-radius: 8px;
  padding: 14px 16px;
}

.payment-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 16px;
  align-items: center;
}

.payment-icons img {
  height: 24px;
  width: auto;
  object-fit: contain;
  opacity: 0.9;
}

.payment-icons img:hover {
  opacity: 1;
}

.cookie-consent {
  position: fixed;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%) translateY(12px);
  width: min(860px, calc(100% - 28px));
  background: #ffffff;
  border: 1px solid #d8dde5;
  border-radius: 16px;
  padding: 14px 14px 12px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s ease;
  z-index: 10000;
}

.cookie-consent.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.cookie-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}

.cookie-head h4 {
  margin: 0;
  font-family: Archivo, sans-serif;
  font-size: 1.2rem;
}

.cookie-close {
  border: 1px solid #d7dce4;
  background: #ffffff;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.cookie-text {
  margin: 8px 0 0;
  color: var(--text);
  line-height: 1.46;
  font-size: 0.95rem;
}

.cookie-actions {
  margin-top: 12px;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.cookie-btn {
  border: 1px solid #d7dce4;
  border-radius: 10px;
  padding: 9px 13px;
  background: #ffffff;
  color: var(--text);
  font-weight: 700;
  cursor: pointer;
}

.cookie-btn.primary {
  background: #ff2026;
  border-color: #ff2026;
  color: #ffffff;
}

.nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border: 1px solid #ececec;
  border-radius: 999px;
  padding: 12px 16px;
  background: #ffffff;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: inherit;
  text-decoration: none;
  padding-right: 6px;
  transition: opacity 0.22s ease, transform 0.22s ease;
}

.brand:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

.brand-logo {
  width: 54px;
  height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  flex-shrink: 0;
  background: linear-gradient(145deg, #fff8f8, #ffe5e6);
  border: 1px solid #ffcccf;
}

.brand-icon {
  width: 23px;
  height: 23px;
  color: #cf0f19;
  stroke-width: 2.4;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.06;
}

.brand strong {
  display: block;
  font-family: "Roboto Flex", Inter, sans-serif;
  font-variation-settings: "opsz" 72, "wght" 860;
  letter-spacing: 0.08em;
  font-size: 1rem;
  color: #000000;
  text-transform: uppercase;
}

.brand small {
  margin-top: 5px;
  color: var(--text);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  gap: 24px;
  flex-wrap: nowrap;
}

.main-nav a {
  color: var(--text);
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
  transition: color 0.2s ease, transform 0.2s ease;
}

.main-nav a:hover {
  color: var(--text);
  transform: translateY(-1px);
}

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

.nav-actions[hidden] {
  display: none !important;
}

.auth-actions {
  gap: 10px;
}

.auth-email {
  max-width: 210px;
  padding: 10px 12px;
  border: 1px solid #d8d8d8;
  border-radius: 12px;
  background: #ffffff;
  color: var(--text);
  font-size: 0.9rem;
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.menu-toggle {
  display: none;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  border: 1px solid #d8dce4;
  background: #ffffff;
  color: #2a343d;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.btn {
  border: 0;
  font: inherit;
  cursor: pointer;
  border-radius: 14px;
  font-weight: 700;
  transition:
    transform 0.2s ease,
    background-color 0.2s ease,
    border-color 0.2s ease,
    opacity 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn:active {
  transform: translateY(0);
}

.btn-top {
  padding: 11px 18px;
  color: #ffffff;
  background: var(--accent);
  font-size: 1rem;
}

.btn-ghost-top {
  padding: 11px 18px;
  color: var(--text);
  border: 1px solid #d8d8d8;
  background: #ffffff;
  font-size: 1rem;
}

.logout-icon-btn {
  width: 40px;
  height: 40px;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.logout-icon-btn i {
  width: 16px;
  height: 16px;
  stroke-width: 2.25;
}

.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(18, 18, 18, 0.28);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.24s ease, visibility 0.24s ease;
  z-index: 9999;
}

.modal-overlay.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.registration-modal {
  width: min(1060px, 100%);
  border: 1px solid #e3e3e3;
  border-radius: 18px;
  background: #ffffff;
  padding: 18px 18px 20px;
  transform: translateY(18px) scale(0.985);
  opacity: 0;
  transition: transform 0.24s ease, opacity 0.24s ease;
  position: relative;
}

.modal-overlay.is-open .registration-modal {
  transform: translateY(0) scale(1);
  opacity: 1;
}

.modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  border: 1px solid #e0e0e0;
  background: #ffffff;
  color: #6a6a6a;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.registration-modal h2 {
  margin: 4px 0 12px;
  text-align: center;
  font-family: Archivo, sans-serif;
  font-size: 1.9rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.registration-form {
  margin-top: 4px;
}

.registration-layout {
  display: grid;
  grid-template-columns: 1fr 1fr 0.95fr;
  gap: 16px;
}

.form-col {
  display: grid;
  gap: 8px;
  align-content: start;
}

.col-label {
  margin: 0 0 2px;
  font-size: 0.7rem;
  color: var(--text);
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.registration-form label,
.login-form label {
  display: flex;
  flex-direction: column;
  gap: 5px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text);
  letter-spacing: 0.02em;
}

.registration-form input,
.login-form input {
  width: 100%;
  border: 1px solid #dfdfdf;
  border-radius: 6px;
  padding: 8px 10px;
  font: inherit;
  font-size: 0.88rem;
  color: var(--text);
  background: #f8f8f8;
}

.registration-form input:focus,
.login-form input:focus {
  outline: none;
  border-color: #ffb9bc;
  background: #ffffff;
}

.field-hint {
  font-size: 0.72rem;
  text-transform: none;
  letter-spacing: normal;
  font-weight: 500;
}

.field-hint.warning {
  color: var(--text);
}

.field-hint.success {
  color: var(--text);
}

.promo-check {
  margin-top: 4px;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  text-transform: none;
  letter-spacing: normal;
  font-size: 0.95rem;
}

.promo-check input {
  width: 14px;
  height: 14px;
  margin: 0;
  accent-color: var(--accent);
}

.rules-col {
  display: flex;
  flex-direction: column;
  gap: 11px;
  padding-left: 6px;
  font-family: "Roboto Flex", Inter, sans-serif;
  font-variation-settings: "opsz" 32, "wght" 520;
}

.rules-text {
  margin: 0;
  font-size: 0.94rem;
  line-height: 1.46;
  color: var(--text);
}

.promo-pill {
  width: 100%;
  border: 1px solid #e9a1aa;
  border-left: none;
  border-radius: 0 999px 999px 0;
  padding: 14px 16px 14px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  background: linear-gradient(90deg, #fff8f8 0%, #feeff1 52%, #ffdce1 100%);
  overflow: hidden;
  min-height: 110px;
  box-sizing: border-box;
}

.promo-copy {
  display: flex;
  flex-direction: column;
  gap: 3px;
  flex: 1;
}

.promo-copy strong {
  font-size: 0.98rem;
  line-height: 1.15;
  color: #000000;
  font-variation-settings: "opsz" 36, "wght" 760;
}

.promo-copy span {
  font-size: 0.88rem;
  line-height: 1.2;
  color: var(--text);
  font-variation-settings: "opsz" 36, "wght" 560;
}

.promo-pill i {
  color: #dc0f1e;
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  padding: 8px;
  border-radius: 999px;
  background: #ffffff;
  border: 1px solid #f3ccd2;
}

.rules-check {
  text-transform: none;
  letter-spacing: normal;
  font-size: 0.9rem;
  line-height: 1.42;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 10px;
  color: var(--text);
}

.rules-check input {
  width: 17px;
  height: 17px;
  margin-top: 2px;
}

.submit-btn {
  width: 100%;
  margin-top: 4px;
  border-radius: 999px;
  font-size: 1.03rem;
  padding-block: 12px;
}

.login-note {
  margin: 6px 0 0;
  text-align: center;
  font-size: 0.88rem;
  color: var(--text);
}

.login-note a {
  color: #52636f;
  text-decoration: none;
  font-weight: 700;
}

.login-modal {
  width: min(420px, 100%);
  padding: 18px 16px;
}

.login-form {
  margin-top: 2px;
  display: grid;
  gap: 11px;
}

.login-form h2 {
  margin: 6px 0 6px;
  text-align: center;
  font-family: Archivo, sans-serif;
  font-size: 1.75rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.login-divider {
  height: 1px;
  width: 100%;
  background: #dcdcdc;
  margin-top: 4px;
}

.login-signup-note {
  margin: 2px 0 0;
  text-align: center;
  color: var(--text);
  font-size: 0.95rem;
}

.login-signup-note a {
  color: var(--accent);
  text-decoration: none;
  font-weight: 700;
}

@media (max-width: 980px) {
  .nav-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 10px 12px;
    border-radius: 16px;
  }

  .menu-toggle {
    display: inline-flex;
    justify-self: end;
  }

  .brand {
    min-width: 0;
    gap: 8px;
  }

  .brand-logo {
    width: 42px;
    height: 42px;
  }

  .brand-icon {
    width: 18px;
    height: 18px;
  }

  .brand strong {
    font-size: 0.82rem;
    letter-spacing: 0.05em;
  }

  .brand small {
    font-size: 0.68rem;
    letter-spacing: 0.08em;
  }

  .main-nav,
  .nav-actions {
    display: none;
  }

  .nav-row.mobile-open .main-nav {
    display: flex;
    grid-column: 1 / -1;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    padding-top: 8px;
    border-top: 1px solid #e4e8ef;
  }

  .nav-row.mobile-open .main-nav a {
    font-size: 0.95rem;
  }

  .nav-row.mobile-open .nav-actions:not([hidden]) {
    display: flex;
    grid-column: 1 / -1;
    gap: 8px;
    flex-wrap: wrap;
  }

  .auth-email {
    max-width: 100%;
  }
}

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

  .coverage-card-small {
    --card-tilt: 0deg;
  }

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

  .orientation-card {
    min-height: auto;
  }

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

  .faq-title {
    max-width: 100%;
  }
}

@media (max-width: 620px) {
  :root {
    --fixed-header-offset: 182px;
  }

  .container {
    width: min(1180px, calc(100% - 24px));
  }

  .nav-row {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .registration-layout {
    grid-template-columns: 1fr;
  }

  .rules-col {
    padding-left: 0;
  }

  .registration-modal {
    padding: 16px 12px;
  }

  .registration-modal h2 {
    font-size: 1.35rem;
  }

  .rebate-card {
    padding: 18px 14px;
    border-radius: 18px;
    flex-direction: column;
    align-items: flex-start;
  }

  .promo-layout {
    grid-template-columns: 1fr;
  }

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

  .betting-markets-grid {
    flex-direction: column;
  }

  .betting-market-card {
    flex: 1 1 100%;
    min-width: 100%;
  }

  .official-license {
    grid-template-columns: 1fr;
  }

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

  .coverage-card-small {
    padding: 18px 16px 18px 74px;
    min-height: 112px;
  }

  .coverage-card-small::before {
    left: 16px;
    width: 40px;
    height: 40px;
  }

  .orientation-section {
    margin-bottom: 82px;
    padding: 16px;
    border-radius: 22px;
  }

  .orientation-card-main,
  .orientation-card-side {
    padding: 20px 16px 18px;
  }

  .orientation-card-main {
    clip-path: none;
    border-radius: 18px;
  }

  .orientation-card-main::after {
    width: 46px;
    height: 46px;
    right: 12px;
    top: 12px;
  }

  .orientation-title {
    max-width: 100%;
    font-size: 1.65rem;
  }

  .orientation-text,
  .orientation-list li {
    font-size: 0.97rem;
  }

  .orientation-image {
    aspect-ratio: 16 / 8;
  }

  .useful-pages-section {
    margin-bottom: 86px;
    padding: 24px 16px 18px;
    border-radius: 20px;
  }

  .useful-title {
    max-width: 100%;
    font-size: 2rem;
  }

  .useful-intro {
    font-size: 0.97rem;
  }

  .useful-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .useful-card {
    min-height: 0;
    padding: 16px 14px;
    border-radius: 14px;
  }

  .faq-section {
    margin-bottom: 86px;
    padding: 22px 14px 18px;
    border-radius: 20px;
  }

  .faq-title {
    font-size: 1.8rem;
  }

  .faq-intro {
    font-size: 0.96rem;
  }

  .faq-item {
    border-radius: 14px;
  }

  .faq-trigger {
    padding: 14px 14px 12px;
    font-size: 1.02rem;
  }

  .faq-arrow {
    width: 26px;
    height: 26px;
    border-radius: 8px;
  }

  .faq-panel {
    padding: 0 14px 14px;
  }

  .faq-panel p {
    font-size: 0.95rem;
  }

  .license-details-grid {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .payment-icons {
    gap: 10px 14px;
  }

  .payment-icons img {
    height: 20px;
  }

  .payment-strip {
    padding: 12px 14px;
  }

  .rebate-right {
    position: static;
    width: 100%;
    margin-right: 0;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .offer-hero-img {
    width: min(100%, 240px);
  }

  .rebate-right-title {
    text-align: left;
    margin-top: 0;
  }

}

@media (prefers-reduced-motion: reduce) {
  .coverage-card-small {
    animation: none;
    transition: none;
    transform: none;
  }

  .coverage-card-small:hover {
    transform: none;
  }

  .orientation-card {
    transition: none;
  }

  .orientation-card:hover {
    transform: none;
  }

  .useful-card {
    transition: none;
  }

  .useful-card:hover {
    transform: none;
  }

  .faq-item {
    transition: none;
  }

  .faq-item:hover {
    transform: none;
  }

  .faq-arrow {
    transition: none;
  }
}
