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

:root {
  --bg: #f0f2f5;
  --surface: #ffffff;
  --text: #1c1e21;
  --muted: #606770;
  --primary: #007aff;
  --secondary: #4267b2;
  --accent: #31a24c;
  --border: rgba(0, 0, 0, 0.08);
  --max-w: 1200px;
  --nav-h: 60px;
  --font: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  --offer-logo-width: 180px;
  --offer-logo-height: 64px;
}

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

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  font-family: var(--font);
  background-color: var(--bg);
  background-image:
    linear-gradient(165deg, rgba(240, 242, 245, 1) 0%, rgba(255, 255, 255, 0.9) 42%, rgba(240, 242, 245, 1) 100%),
    repeating-linear-gradient(90deg, transparent, transparent 79px, rgba(0, 0, 0, 0.025) 79px, rgba(0, 0, 0, 0.025) 80px);
  color: var(--text);
  line-height: 1.55;
  letter-spacing: -0.03em;
  overflow-x: hidden;
}

main {
  flex: 1 0 auto;
}

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

a {
  color: var(--primary);
  text-decoration: none;
}

a:hover {
  color: var(--secondary);
}

h1, h2, h3 {
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.05em;
}

.wrap,
.footer-inner {
  width: min(var(--max-w), calc(100% - 48px));
  margin: 0 auto;
}

.disclosure-banner {
  position: relative;
  width: 100%;
  background: linear-gradient(90deg, var(--primary) 0 50%, var(--surface) 50% 100%);
  padding: 8px 16px;
}

.disclosure-text,
.disclosure-light,
.disclosure-dark {
  margin: 0;
  font-size: 12px;
  text-align: center;
  line-height: 1.4;
  letter-spacing: -0.02em;
}

.disclosure-light,
.disclosure-dark {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px 16px;
  pointer-events: none;
}

.disclosure-light {
  color: var(--surface);
  clip-path: inset(0 50% 0 0);
}

.disclosure-dark {
  color: var(--text);
  clip-path: inset(0 0 0 50%);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  width: 100%;
  background: linear-gradient(90deg, var(--text), color-mix(in srgb, var(--text) 88%, var(--surface)));
}

.navbar-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 16px 24px;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.logo-link,
.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--surface);
  text-decoration: none;
}

.logo-link:hover,
.footer-brand:hover {
  color: var(--surface);
}

.logo-link img,
.footer-brand img {
  width: 36px;
  height: 30px;
  object-fit: contain;
}

.logo-text {
  font-weight: 800;
  font-size: 15px;
  letter-spacing: -0.06em;
  text-transform: uppercase;
}

.nav-desktop,
.footer-links {
  list-style: none;
}

.nav-desktop {
  display: flex;
  align-items: center;
  gap: 2px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.nav-desktop a {
  color: var(--surface);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: -0.04em;
  padding: 6px 9px;
  white-space: nowrap;
}

.nav-desktop a:hover,
.nav-drawer a:hover {
  color: var(--primary);
}

.nav-burger {
  display: none;
  background: none;
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 8px 10px;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
}

.nav-burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--surface);
  transition: transform 0.2s, opacity 0.2s;
}

.nav-burger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-burger.active span:nth-child(2) {
  opacity: 0;
}

.nav-burger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav-drawer {
  position: fixed;
  top: 0;
  right: -300px;
  width: 300px;
  max-width: calc(100vw - 32px);
  height: 100vh;
  background: linear-gradient(90deg, var(--text), color-mix(in srgb, var(--text) 88%, var(--surface)));
  z-index: 1001;
  padding: 72px 24px 24px;
  transition: right 0.25s ease;
  overflow-y: auto;
}

.nav-drawer.open {
  right: 0;
}

.nav-drawer ul {
  list-style: none;
}

.nav-drawer li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.nav-drawer a {
  display: block;
  padding: 14px 0;
  color: var(--surface);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: -0.04em;
  font-weight: 700;
}

.drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(28, 30, 33, 0.55);
  z-index: 1000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s;
}

.drawer-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

body.nav-open {
  overflow: hidden;
}

.hero {
  width: 100%;
  min-height: 120px;
  background: var(--text);
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.hero-title {
  width: min(var(--max-w), calc(100% - 48px));
  margin: 0 auto;
  color: var(--surface);
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 800;
  letter-spacing: -0.07em;
  line-height: 0.9;
  text-transform: uppercase;
  transform: translateY(18%);
}

.hero-sub {
  min-height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: color-mix(in srgb, var(--text) 88%, var(--surface));
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  text-align: center;
  padding: 8px 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.section-index {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  letter-spacing: -0.08em;
  color: var(--primary);
  line-height: 1;
  display: block;
}

.info-section {
  position: relative;
  padding: 56px 0;
  border-bottom: 1px solid var(--border);
}

.info-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 48px;
  background: var(--primary);
}

.info-section h2 {
  font-size: clamp(1.4rem, 3vw, 2rem);
  margin-bottom: 16px;
}

.info-section p,
.sub-article p,
.legal-content p,
.legal-content li,
.sub-article li {
  color: var(--muted);
}

.info-section p {
  margin-bottom: 12px;
  max-width: 68ch;
}

.info-cta {
  display: inline-block;
  margin-top: 18px;
  font-weight: 700;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  font-size: 13px;
  border-bottom: 2px solid var(--primary);
  padding-bottom: 2px;
  color: var(--text);
}

.info-cta:hover {
  color: var(--primary);
}

.decor-clip,
.decor-band,
.apps-visual,
.mosaic-band {
  max-width: 100%;
  overflow: hidden;
}

.decor-img {
  width: 100%;
  max-width: 500px;
  height: auto;
  max-height: 320px;
  object-fit: contain;
  object-position: center;
}

.site-footer {
  margin-top: auto;
  background: var(--text);
  color: rgba(255, 255, 255, 0.82);
  padding: 48px 0 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.site-footer a {
  color: rgba(255, 255, 255, 0.82);
}

.site-footer a:hover {
  color: var(--primary);
}

.footer-brand {
  margin-bottom: 24px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
  margin-bottom: 28px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-links a {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: -0.03em;
  text-transform: uppercase;
}

.footer-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  margin-bottom: 24px;
}

.footer-badges a,
.footer-badges span {
  display: inline-flex;
  align-items: center;
}

.footer-badges img {
  height: 36px;
  width: auto;
  max-width: 100px;
  object-fit: contain;
}

.footer-requisites,
.footer-note {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.5;
}

.footer-requisites {
  margin-bottom: 12px;
}

.footer-note {
  max-width: 72ch;
}

.age-gate {
  position: fixed;
  inset: 0;
  background: rgba(28, 30, 33, 0.88);
  z-index: 3000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.age-gate.active {
  display: flex;
}

.age-box,
.redirect-card {
  background: var(--surface);
  border: 1px solid var(--border);
  width: 100%;
}

.age-box {
  padding: 32px 28px;
  max-width: 420px;
  text-align: center;
}

.age-box h2 {
  margin-bottom: 12px;
  font-size: 1.4rem;
}

.age-box p {
  color: var(--muted);
  font-size: 14px;
  margin-bottom: 24px;
}

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

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  font-family: var(--font);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.btn-primary {
  background: var(--primary);
  color: var(--surface);
}

.btn-primary:hover {
  background: var(--secondary);
  color: var(--surface);
}

.btn-secondary {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
}

.btn-secondary:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2500;
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 18px 24px;
  display: none;
  box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.08);
}

.cookie-banner.active {
  display: block;
}

.cookie-inner {
  width: min(var(--max-w), 100%);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
}

.cookie-inner p {
  flex: 1 1 280px;
  font-size: 13px;
  color: var(--muted);
}

.page-hero {
  background: var(--text);
  color: var(--surface);
  padding: 40px 0 32px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.page-hero h1,
.page-hero-label {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  letter-spacing: -0.06em;
  line-height: 1.1;
}

.page-hero-label {
  font-weight: 700;
}

.page-hero p {
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  max-width: 68ch;
}

.legal-content,
.sub-article {
  padding: 48px 0 72px;
  background: var(--surface);
}

.legal-content h1 {
  margin-bottom: 16px;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
}

.legal-content h2,
.sub-article h2 {
  margin: 32px 0 12px;
  font-size: 1.2rem;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

.sub-article h3 {
  margin: 20px 0 8px;
  font-size: 1rem;
}

.legal-content p,
.legal-content li,
.sub-article p {
  margin-bottom: 14px;
  max-width: 74ch;
}

.legal-content ul,
.sub-article ul,
.sub-article ol {
  padding-left: 20px;
  margin-bottom: 16px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 560px;
  margin-top: 28px;
}

.contact-form label {
  display: block;
  margin-bottom: 6px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--border);
  background: var(--bg);
  font-family: var(--font);
  font-size: 14px;
  color: var(--text);
}

.contact-form input.error,
.contact-form textarea.error {
  border-color: var(--text);
}

.email-error {
  display: none;
  color: var(--text);
  font-size: 12px;
  margin-top: 4px;
}

.email-error.visible,
.form-success.visible {
  display: block;
}

.form-success {
  display: none;
  padding: 24px;
  background: var(--bg);
  border-left: 4px solid var(--accent);
  margin-top: 24px;
  max-width: 560px;
}

.redirect-wrap {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px 24px;
}

.redirect-card {
  max-width: 520px;
  padding: 40px 32px;
  text-align: center;
}

.ad-flag {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--muted);
  margin-bottom: 16px;
  text-transform: uppercase;
}

.spinner {
  width: 40px;
  height: 40px;
  border: 2px solid var(--border);
  border-top-color: var(--primary);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  margin: 0 auto 20px;
}

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

.redirect-card h1 {
  font-size: 1.4rem;
  margin-bottom: 12px;
}

.redirect-card p {
  color: var(--muted);
  font-size: 14px;
  margin-bottom: 10px;
}

.redirect-meta {
  font-size: 12px;
}

.error-page {
  padding: 80px 0;
  text-align: center;
}

.error-page h1 {
  font-size: clamp(3rem, 8vw, 6rem);
  letter-spacing: -0.08em;
  color: var(--primary);
  margin-bottom: 12px;
}

.error-page p {
  color: var(--muted);
  margin-bottom: 24px;
}

.offers-section {
  position: relative;
  padding: 64px 0 72px;
  background-color: #1a2332;
  background-image: linear-gradient(rgba(26, 35, 50, 0.88), rgba(28, 30, 33, 0.92)), url("/images/offers_bg/offers_bg.webp");
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.offers-section .wrap {
  position: relative;
  z-index: 1;
}

.offers-section h2 {
  color: #ffffff;
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  text-align: center;
  text-transform: uppercase;
  letter-spacing: -0.06em;
  margin-bottom: 8px;
}

.offers-intro {
  text-align: center;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 28px;
  font-size: 14px;
}

.offers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 22px;
  max-width: 960px;
  margin: 0 auto;
}

.offer-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
  border: 2px solid #1a1a1a;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}

.offer-logo {
  width: var(--offer-logo-width);
  height: var(--offer-logo-height);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #f5f5f5;
  border-radius: 8px;
  padding: 8px;
  flex-shrink: 0;
}

.offer-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
  max-width: none;
}

.offer-name {
  font-weight: 800;
  font-size: 1.15rem;
  color: #1a1a1a;
}

.offer-bonus-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  width: 100%;
}

.offer-bonus {
  width: 100%;
  font-weight: 800;
  font-size: clamp(0.82rem, 2.4vw, 1rem);
  color: #1e7a3a;
  line-height: 1.35;
  word-break: break-word;
  overflow-wrap: anywhere;
}

.offer-terms {
  font-size: 11px;
  color: #6f7680;
  font-weight: 600;
}

.offer-desc {
  font-size: 12px;
  color: #777777;
  line-height: 1.45;
}

.btn-offer {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  background: #1e7a3a;
  color: #ffffff;
  border-radius: 8px;
  padding: 12px 16px;
  font-weight: 800;
  font-size: 14px;
  font-family: var(--font);
  text-decoration: none;
}

.btn-offer:hover {
  background: #166330;
  color: #ffffff;
}

#info-1 .layout-split,
#info-7 .football-split,
#info-10 .apps-layout,
.layout-sidebar,
.split-cols {
  display: grid;
  gap: 32px;
}

#info-1 .layout-split {
  grid-template-columns: 1fr 1fr;
  align-items: start;
}

#info-1 .type-list,
#info-6 .tips-list {
  list-style: none;
}

#info-1 .type-list {
  border-top: 1px solid var(--border);
}

#info-1 .type-list li {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
}

#info-2 .odds-table {
  width: 100%;
  max-width: 560px;
  border-collapse: collapse;
  margin-top: 20px;
  font-size: 14px;
}

#info-2 .odds-table th,
#info-2 .odds-table td {
  border-bottom: 1px solid var(--border);
  padding: 12px 8px;
  text-align: left;
}

#info-2 .odds-table th {
  color: var(--text);
  font-weight: 800;
  text-transform: uppercase;
  font-size: 11px;
}

#info-3 .live-band,
#info-3 .live-points,
#info-5 .champ-grid,
#info-8 .live-cols,
#info-9 .error-cards,
.image-rail,
.stat-band {
  display: grid;
}

#info-3 .live-band {
  grid-template-columns: 120px 1fr;
  gap: 24px;
  align-items: center;
  background: var(--text);
  color: var(--surface);
  padding: 28px;
  margin-top: 8px;
}

#info-3 .live-band p,
#info-8 p {
  color: rgba(255, 255, 255, 0.75);
}

#info-3 .live-points {
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  margin-top: 24px;
}

#info-3 .live-points article,
#info-9 .error-cards article {
  background: var(--surface);
  padding: 20px;
}

#info-4 .phone-steps {
  counter-reset: step;
  list-style: none;
  max-width: 640px;
  margin-top: 20px;
}

#info-4 .phone-steps li {
  position: relative;
  padding: 16px 0 16px 64px;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
  color: var(--muted);
}

#info-4 .phone-steps li::before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  position: absolute;
  left: 0;
  top: 16px;
  font-weight: 800;
  font-size: 1.4rem;
  color: var(--primary);
}

#info-5 .champ-grid {
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 24px;
}

#info-5 .champ-item {
  border-left: 3px solid var(--primary);
  padding: 12px 0 12px 16px;
  background: var(--surface);
}

#info-5 .decor-band,
#info-10 .apps-visual,
.mosaic-band {
  width: 100%;
  border: 1px solid var(--border);
  background-position: center;
  background-repeat: no-repeat;
}

#info-5 .decor-band,
.mosaic-band {
  max-width: 500px;
}

#info-5 .decor-band {
  margin-top: 28px;
  min-height: 180px;
  background-size: cover;
}

#info-6 .tips-rail {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 24px;
  align-items: start;
}

#info-6 .tips-list li {
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
  display: flex;
  gap: 16px;
}

#info-6 .tips-list span {
  font-weight: 800;
  color: var(--primary);
  flex-shrink: 0;
}

#info-7 .football-split {
  grid-template-columns: 1.2fr 0.8fr;
  align-items: center;
}

#info-7 .quote-box,
.pull-quote {
  font-weight: 700;
  letter-spacing: -0.05em;
  line-height: 1.35;
  color: var(--text);
}

#info-7 .quote-box {
  border-top: 4px solid var(--primary);
  border-bottom: 1px solid var(--border);
  padding: 24px 0;
  font-size: 1.15rem;
}

#info-8 {
  background: var(--text);
  color: var(--surface);
}

#info-8 .live-cols {
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

#info-9 .error-cards {
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 24px;
}

#info-10 .apps-layout {
  grid-template-columns: 1fr 280px;
  align-items: start;
}

#info-10 .apps-checklist {
  list-style: none;
  margin-top: 16px;
}

#info-10 .apps-checklist li {
  padding: 10px 0 10px 28px;
  position: relative;
  font-size: 14px;
  color: var(--muted);
  border-bottom: 1px solid var(--border);
}

#info-10 .apps-checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 16px;
  width: 12px;
  height: 2px;
  background: var(--accent);
}

#info-10 .apps-visual {
  min-height: 240px;
  background-size: cover;
}

.layout-sidebar {
  grid-template-columns: 1fr 260px;
  align-items: start;
}

.side-rail {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 20px;
  position: sticky;
  top: 80px;
}

.side-rail h3 {
  font-size: 12px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.side-rail ol {
  padding-left: 18px;
  font-size: 13px;
  color: var(--muted);
}

.stat-band {
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  margin: 28px 0;
}

.stat-band div {
  background: var(--text);
  color: var(--surface);
  padding: 24px 16px;
  text-align: center;
}

.stat-band strong {
  display: block;
  font-size: 1.8rem;
  color: var(--primary);
  margin-bottom: 4px;
}

.stat-band span {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.65);
  text-transform: uppercase;
}

.pull-quote {
  border-left: 4px solid var(--primary);
  padding: 8px 0 8px 20px;
  margin: 28px 0;
  font-size: 1.2rem;
}

.split-cols {
  grid-template-columns: 1fr 1fr;
  margin: 24px 0;
}

.image-rail {
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin: 24px 0;
}

.image-rail .decor-clip {
  min-height: 200px;
}

.image-rail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mosaic-band {
  min-height: 200px;
  margin: 24px 0;
  background-size: cover;
}

@media (max-width: 900px) {
  .nav-desktop {
    display: none;
  }

  .nav-burger {
    display: flex;
  }

  .hero {
    min-height: 80px;
  }

  .hero-title {
    font-size: clamp(2rem, 10vw, 3rem);
    transform: translateY(22%);
  }
}

@media (max-width: 800px) {
  #info-1 .layout-split,
  #info-3 .live-band,
  #info-3 .live-points,
  #info-5 .champ-grid,
  #info-6 .tips-rail,
  #info-7 .football-split,
  #info-8 .live-cols,
  #info-9 .error-cards,
  #info-10 .apps-layout,
  .layout-sidebar,
  .split-cols,
  .image-rail,
  .stat-band {
    grid-template-columns: 1fr;
  }

  .side-rail {
    position: static;
  }
}

@media (max-width: 600px) {
  .wrap,
  .footer-inner {
    width: calc(100% - 32px);
  }

  .disclosure-text,
  .disclosure-light,
  .disclosure-dark {
    font-size: 10px;
  }

  .offer-logo {
    width: 160px;
    height: 58px;
  }

  .offer-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    display: block;
  }

  .decor-img {
    max-width: 100%;
    max-height: 220px;
    object-fit: contain;
    object-position: center;
  }

  #info-5 .decor-band,
  #info-10 .apps-visual,
  .mosaic-band {
    min-height: 160px;
  }

  .cookie-banner {
    padding: 16px;
  }
}
