:root {
  --bg: #020617;
  --surface: #0F172A;
  --text: #F8FAFC;
  --muted: #64748B;
  --primary: #BEF264;
  --secondary: #334155;
  --accent: #84CC16;
  --border: rgba(190,242,100,0.2);
  --font-serif: Didot, "Bodoni MT", Georgia, "Times New Roman", serif;
  --font-sans: "Helvetica Neue", Helvetica, Avenir, "Segoe UI", sans-serif;
  --max: 1200px;
  --offer-bg: #1a1a1a;
  --offer-border: #2a2a2a;
  --offer-bonus: #ffd700;
  --offer-cta-bg: #22c55e;
  --offer-cta-text: #ffffff;
  --gold: linear-gradient(135deg, #BEF264 0%, #84CC16 45%, #EAB308 100%);
  --ui-luxury: luxury;
  --ui-dark: dark;
  --ui-gold: gold;
  --ui-premium: premium;
  --ui-exclusive: exclusive;
}

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

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

body {
  font-family: var(--font-sans);
  color: var(--text);
  background-color: var(--bg);
  background-image:
    linear-gradient(165deg, rgba(2, 6, 23, 0.98) 0%, rgba(15, 23, 42, 0.94) 48%, rgba(2, 6, 23, 1) 100%),
    radial-gradient(ellipse 55% 42% at 12% 0%, rgba(190, 242, 100, 0.09), transparent 58%),
    radial-gradient(ellipse 42% 36% at 92% 82%, rgba(132, 204, 22, 0.07), transparent 52%);
  line-height: 1.65;
  min-height: 100vh;
  overflow-x: hidden;
  display: flex;
  flex-direction: column;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background-image:
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 4px,
      rgba(248, 250, 252, 0.012) 4px,
      rgba(248, 250, 252, 0.012) 5px
    );
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(circle at 76% 16%, rgba(190, 242, 100, 0.05), transparent 40%),
    radial-gradient(circle at 14% 90%, rgba(132, 204, 22, 0.05), transparent 46%);
}

.luxury,
.dark,
.gold,
.premium,
.exclusive {
  position: relative;
}

.luxury-noir-gold {
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

body > * {
  position: relative;
  z-index: 1;
}

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

.offer-logo img {
  max-width: none;
}

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

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

ul {
  list-style: none;
}

.hidden {
  display: none !important;
}

.disclosure-banner {
  margin: 0;
  padding: 6px 16px;
  text-align: center;
  font-size: 10px;
  line-height: 1.4;
  color: var(--muted);
  background: transparent;
  border: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(2, 6, 23, 0.96);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(8px);
}

.nav-marquee {
  height: 20px;
  overflow: hidden;
  border-bottom: 1px solid rgba(190, 242, 100, 0.08);
  background: rgba(15, 23, 42, 0.85);
}

.nav-marquee__track {
  display: flex;
  width: max-content;
  animation: marquee-scroll 48s linear infinite;
  white-space: nowrap;
}

.nav-marquee__track span {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 3px 0;
  font-family: var(--font-serif);
}

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

.nav-main {
  height: 56px;
}

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

.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
}

.brand-lockup span {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  background: var(--gold);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.brand-lockup img {
  width: 32px;
  height: 43px;
  object-fit: contain;
  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.65));
}

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

.nav-links a {
  color: var(--text);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 8px;
  border-radius: 4px;
  font-family: var(--font-serif);
}

.nav-links a:hover {
  background: rgba(255, 255, 255, 0.08);
  color: var(--primary);
}

.burger-btn {
  display: none;
  width: 40px;
  height: 40px;
  border: 1px solid var(--border);
  background: transparent;
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  border-radius: 4px;
}

.burger-btn span {
  display: block;
  width: 18px;
  height: 1px;
  background: var(--primary);
}

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

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

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

.burger-btn span {
  transition: transform 0.25s ease, opacity 0.2s ease;
}

.drawer-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(2, 6, 23, 0.72);
  z-index: 110;
}

.drawer-backdrop.open {
  display: block;
}

.nav-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: min(300px, 86vw);
  height: 100%;
  background: var(--surface);
  border-left: 1px solid var(--border);
  z-index: 120;
  padding: 72px 24px 24px;
  transform: translateX(100%);
  transition: transform 0.35s ease;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.nav-drawer.open {
  transform: translateX(0);
}

.nav-drawer a {
  color: var(--text);
  font-family: var(--font-serif);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.85rem;
  padding: 10px 12px;
  border-radius: 4px;
  border-bottom: 1px solid rgba(190, 242, 100, 0.08);
}

.nav-drawer a:hover {
  background: rgba(255, 255, 255, 0.08);
  color: var(--primary);
}

main {
  flex: 1;
}

.site-footer {
  margin-top: auto;
  background: rgba(15, 23, 42, 0.95);
  border-top: 1px solid var(--border);
  padding: 48px 20px 32px;
}

.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-brand {
  align-self: flex-start;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
}

.footer-links a {
  color: var(--muted);
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-family: var(--font-serif);
}

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

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

.footer-badges img {
  max-height: 40px;
  width: auto;
  opacity: 0.9;
}

.footer-company,
.footer-updated,
.footer-compliance,
.footer-help,
.footer-au-disclosure {
  color: var(--muted);
  font-size: 0.82rem;
  max-width: 920px;
}

.footer-updated {
  font-size: 0.78rem;
  letter-spacing: 0.04em;
}

.footer-au-disclosure {
  font-size: 11px;
  line-height: 1.55;
  margin-top: 4px;
  padding-top: 14px;
  border-top: 1px solid rgba(190, 242, 100, 0.12);
}

.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(2, 6, 23, 0.88);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 200;
  padding: 20px;
}

.modal-box {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 32px 28px;
  max-width: 420px;
  width: 100%;
  text-align: center;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.55);
}

.modal-box h2 {
  font-family: var(--font-serif);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 1.2rem;
  margin-bottom: 12px;
  background: var(--gold);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.modal-box p {
  color: var(--muted);
  font-size: 0.92rem;
  margin-bottom: 20px;
}

.modal-actions,
.cookie-actions {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  border: 1px solid transparent;
  cursor: pointer;
  padding: 10px 18px;
  font-family: var(--font-serif);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 0.78rem;
  border-radius: 4px;
}

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

.btn-primary:hover {
  background: var(--accent);
}

.btn-outline {
  background: transparent;
  border-color: var(--border);
  color: var(--text);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.08);
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 180;
  background: rgba(15, 23, 42, 0.97);
  border-top: 1px solid var(--border);
  padding: 16px 20px;
}

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

.cookie-inner p {
  color: var(--muted);
  font-size: 0.85rem;
  flex: 1;
  min-width: 220px;
}

.page-hero {
  padding: 48px 20px 36px;
  border-bottom: 1px solid var(--border);
  background:
    linear-gradient(180deg, rgba(15, 23, 42, 0.9), rgba(2, 6, 23, 0.4));
}

.page-hero-inner {
  max-width: var(--max);
  margin: 0 auto;
}

.page-hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.page-hero p {
  color: var(--muted);
  max-width: 640px;
}

.page-content {
  max-width: var(--max);
  margin: 0 auto;
  padding: 40px 20px 64px;
}

.page-content h2 {
  font-family: var(--font-serif);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 1.15rem;
  margin: 28px 0 12px;
  color: var(--primary);
}

.page-content h3 {
  font-family: var(--font-serif);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.95rem;
  margin: 20px 0 8px;
}

.page-content p {
  margin-bottom: 14px;
  color: rgba(248, 250, 252, 0.88);
}

.page-content ul {
  margin: 0 0 16px 18px;
  list-style: disc;
  color: rgba(248, 250, 252, 0.88);
}

.page-content li {
  margin-bottom: 8px;
}

.page-content code {
  font-size: 0.85em;
  color: var(--primary);
}

.decor-img {
  max-width: min(500px, 100%);
  max-height: 320px;
  width: auto;
  height: auto;
  object-fit: cover;
}

.decor-wrap {
  overflow: hidden;
  max-width: 100%;
}

@media (max-width: 600px) {
  .decor-img {
    max-width: 100%;
    max-height: 200px;
  }

  .decor-wrap {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
  }

  .subpage-hero-strip {
    height: 56px;
    max-width: 100%;
  }
}

.topic-cta {
  display: inline-block;
  margin-top: 18px;
  padding: 12px 20px;
  border: 1px solid var(--border);
  color: var(--bg);
  background: var(--primary);
  font-family: var(--font-serif);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 0.78rem;
  border-radius: 4px;
}

.topic-cta:hover {
  background: var(--accent);
  color: var(--bg);
}

.contact-form {
  margin-top: 28px;
  max-width: 520px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 24px;
  background: var(--surface);
  border: 1px solid var(--border);
}

.contact-form label {
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  font-family: var(--font-serif);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  margin-top: 6px;
  padding: 12px 14px;
  background: rgba(2, 6, 23, 0.7);
  border: 1px solid var(--border);
  color: var(--text);
  font-family: var(--font-sans);
  font-size: 0.95rem;
}

.contact-form textarea {
  min-height: 140px;
  resize: vertical;
}

.form-error {
  color: #f87171;
  font-size: 0.85rem;
}

.form-error:not(.visible) {
  display: none;
}

.form-success {
  margin-top: 24px;
  padding: 24px;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--text);
}

.not-found {
  text-align: center;
  padding: 80px 20px;
}

.not-found h1 {
  font-family: var(--font-serif);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

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

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

  .nav-links {
    display: none;
  }

  .burger-btn {
    display: flex;
  }
}

.hero {
  position: relative;
}

.hero-strip {
  height: 120px;
  overflow: hidden;
  background-image: url("/images/decorative/decor_1.jpg");
  background-size: cover;
  background-position: center 40%;
  background-repeat: no-repeat;
  transform: translateZ(0);
  will-change: transform;
  animation: parallax-soft 18s ease-in-out infinite alternate;
}

@keyframes parallax-soft {
  from { background-position: center 35%; }
  to { background-position: center 55%; }
}

.hero-body {
  background: var(--bg);
  padding: 40px 20px 48px;
  text-align: center;
  border-bottom: 1px solid var(--border);
}

.hero-body h1 {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  line-height: 1.2;
  margin-bottom: 14px;
  background: var(--gold);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-body .hero-sub {
  max-width: 640px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 1rem;
}

.offers-section {
  padding: 56px 20px;
  background-image:
    linear-gradient(180deg, rgba(2, 6, 23, 0.9), rgba(15, 23, 42, 0.92)),
    url("/images/offers_bg/offers_bg.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}

.offers-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: repeating-linear-gradient(
    -14deg,
    transparent,
    transparent 12px,
    rgba(190, 242, 100, 0.025) 12px,
    rgba(190, 242, 100, 0.025) 13px
  );
}

.offers-inner {
  max-width: var(--max);
  margin: 0 auto;
  position: relative;
}

.offers-section h2 {
  font-family: var(--font-serif);
  font-size: 1.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.offers-lead {
  color: var(--muted);
  margin-bottom: 28px;
  font-size: 0.92rem;
}

.offers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
}

.offer-card {
  background: var(--offer-bg);
  border: 1px solid var(--offer-border);
  padding: 20px 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.45);
}

.offer-card:hover {
  transform: translateY(-3px);
  transition: transform 0.35s ease;
}

.offer-logo {
  width: 180px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin: 0 auto;
}

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

.offer-name {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  color: #ffffff;
  text-align: center;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.offer-bonus-group {
  text-align: center;
  overflow-wrap: anywhere;
  word-break: break-word;
  max-width: 100%;
}

.offer-bonus {
  display: block;
  color: var(--offer-bonus);
  font-weight: 700;
  font-size: clamp(0.82rem, 2.4vw, 0.98rem);
  line-height: 1.35;
}

.offer-terms {
  display: block;
  margin-top: 4px;
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.55);
}

.offer-desc {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.4;
  text-align: left;
}

.btn-offer {
  display: block;
  text-align: center;
  margin-top: auto;
  padding: 12px 14px;
  background: var(--offer-cta-bg);
  color: var(--offer-cta-text);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-family: var(--font-serif);
}

.btn-offer:hover {
  filter: brightness(1.08);
  color: var(--offer-cta-text);
}

.info-block {
  padding: 56px 20px;
  position: relative;
  border-bottom: 1px solid rgba(190, 242, 100, 0.08);
}

.info-inner {
  max-width: var(--max);
  margin: 0 auto;
  position: relative;
}

.info-block h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.3rem, 2.4vw, 1.7rem);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 16px;
  color: var(--text);
}

.info-block p {
  color: rgba(248, 250, 252, 0.88);
  margin-bottom: 12px;
}

.info-1 {
  background: linear-gradient(120deg, rgba(15, 23, 42, 0.55), transparent);
}

.info-1 .layout-split {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 28px;
  align-items: start;
}

.bet-type-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 16px;
}

.bet-type-grid li {
  padding: 14px;
  border: 1px solid var(--border);
  background: rgba(15, 23, 42, 0.7);
  font-size: 0.9rem;
}

.bet-type-grid strong {
  display: block;
  color: var(--primary);
  font-family: var(--font-serif);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.78rem;
  margin-bottom: 6px;
}

.info-2 {
  text-align: center;
}

.info-2 .info-inner {
  max-width: 760px;
}

.step-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 22px;
  text-align: left;
}

.step-row article {
  padding: 18px;
  border-top: 1px solid var(--primary);
  background: var(--surface);
}

.step-row h3 {
  font-family: var(--font-serif);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 0.85rem;
  color: var(--primary);
  margin-bottom: 8px;
}

.info-3 .racing-layout {
  display: grid;
  grid-template-columns: minmax(0, 220px) 1fr;
  gap: 28px;
  align-items: center;
}

.info-3 .racing-layout .decor-wrap {
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.55);
  border: 1px solid var(--border);
}

.info-4 .league-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 18px 0;
}

.info-4 .league-chips span {
  padding: 8px 14px;
  border: 1px solid var(--border);
  font-family: var(--font-serif);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 0.72rem;
  color: var(--primary);
}

.info-5 {
  background: rgba(15, 23, 42, 0.45);
}

.info-5 .live-band {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin-top: 20px;
  border: 1px solid var(--border);
}

.info-5 .live-band div {
  padding: 22px;
}

.info-5 .live-band div:first-child {
  border-right: 1px solid var(--border);
  background: rgba(190, 242, 100, 0.05);
}

.info-5 .live-band h3 {
  font-family: var(--font-serif);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 0.85rem;
  margin-bottom: 8px;
  color: var(--primary);
}

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

.aside-card {
  padding: 20px;
  border: 1px solid var(--border);
  background: var(--surface);
  font-size: 0.9rem;
  color: var(--muted);
}

.aside-card .label {
  font-family: var(--font-serif);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.7rem;
  color: var(--primary);
  margin-bottom: 10px;
}

.info-7 .offer-checklist {
  margin-top: 16px;
  display: grid;
  gap: 10px;
}

.info-7 .offer-checklist li {
  padding: 12px 14px 12px 36px;
  position: relative;
  background: rgba(15, 23, 42, 0.65);
  border-left: 2px solid var(--accent);
}

.info-7 .offer-checklist li::before {
  content: "";
  position: absolute;
  left: 14px;
  top: 18px;
  width: 8px;
  height: 8px;
  background: var(--primary);
}

.info-8 .odds-compare {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 20px 0;
}

.info-8 .odds-compare article {
  padding: 18px;
  background: var(--surface);
  border-bottom: 2px solid var(--primary);
}

.info-8 .odds-compare h3 {
  font-family: var(--font-serif);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 0.82rem;
  margin-bottom: 8px;
}

.info-8 .odds-visual {
  margin-top: 18px;
  overflow: hidden;
  max-width: 420px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.info-9 .cashout-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: center;
}

.info-9 .pull-quote {
  padding: 28px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  font-family: var(--font-serif);
  font-size: 1.15rem;
  letter-spacing: 0.04em;
  color: var(--primary);
  line-height: 1.45;
}

.info-10 {
  background:
    linear-gradient(180deg, rgba(2, 6, 23, 0.2), rgba(15, 23, 42, 0.7));
}

.info-10 .safety-mosaic {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 24px;
  align-items: start;
  margin-top: 8px;
}

.info-10 .safety-list {
  list-style: disc;
  margin-left: 18px;
  color: rgba(248, 250, 252, 0.88);
}

.info-10 .safety-list li {
  margin-bottom: 8px;
}

.info-10 .decor-panel {
  min-height: 220px;
  background-image: url("/images/decorative/decor_4.jpg");
  background-size: cover;
  background-position: center;
  border: 1px solid var(--border);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.5);
  animation: panel-drift 22s ease-in-out infinite alternate;
}

@keyframes panel-drift {
  from { background-position: 40% center; }
  to { background-position: 60% center; }
}

@media (max-width: 900px) {
  .hero-strip {
    height: 80px;
  }

  .info-1 .layout-split,
  .info-3 .racing-layout,
  .info-6 .licence-rail,
  .info-9 .cashout-split,
  .info-10 .safety-mosaic,
  .info-5 .live-band,
  .step-row,
  .info-8 .odds-compare,
  .bet-type-grid {
    grid-template-columns: 1fr;
  }

  .info-5 .live-band div:first-child {
    border-right: none;
    border-bottom: 1px solid var(--border);
  }
}

@media (max-width: 600px) {
  .hero-strip {
    height: 60px;
  }

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

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

  .decor-img {
    max-width: 100%;
    max-height: 200px;
  }

  .decor-wrap {
    max-width: 100%;
    overflow: hidden;
  }

  .info-3 .racing-layout .decor-wrap,
  .info-8 .odds-visual {
    max-width: 100%;
  }
}
