:root {
  --bg: #F0F2F5;
  --surface: #FFFFFF;
  --text: #1C1E21;
  --muted: #606770;
  --primary: #007AFF;
  --secondary: #4267B2;
  --accent: #31A24C;
  --border: rgba(0,0,0,0.06);
  --memphis: memphis;
  --playful: playful;
  --bold-patterns: bold patterns;
  --asymmetric: asymmetric;
  --geometric: geometric;
  --retro-pop: retro pop;
  --offer-bg: #141414;
  --offer-border: #2a2a2a;
  --offer-bonus: #ffd700;
  --offer-cta-bg: #22c55e;
  --offer-cta-text: #ffffff;
  --max: 1280px;
  --font: "Trebuchet MS", "Segoe UI", Geneva, Verdana, sans-serif;
  --font-display: "Arial Black", Impact, "Helvetica Neue", sans-serif;
}

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

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

body {
  font-family: var(--font);
  color: var(--text);
  background-color: var(--bg);
  background-image:
    linear-gradient(165deg, var(--bg) 0%, #E4E8EE 42%, var(--bg) 100%),
    radial-gradient(ellipse 70% 45% at 100% 0%, rgba(0, 122, 255, 0.12), transparent 55%),
    radial-gradient(ellipse 55% 40% at 0% 100%, rgba(49, 162, 76, 0.1), transparent 50%);
  line-height: 1.65;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
  position: relative;
}

body.memphis.playful.bold-patterns.asymmetric.geometric.retro-pop {
  --tone-memphis: var(--memphis);
  --tone-playful: var(--playful);
  --tone-patterns: var(--bold-patterns);
  --tone-asym: var(--asymmetric);
  --tone-geo: var(--geometric);
  --tone-retro: var(--retro-pop);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.5;
  background-image:
    repeating-linear-gradient(
      -12deg,
      transparent,
      transparent 14px,
      rgba(66, 103, 178, 0.05) 14px,
      rgba(66, 103, 178, 0.05) 16px
    ),
    radial-gradient(circle at 18% 22%, rgba(0, 122, 255, 0.14) 0 11px, transparent 12px),
    radial-gradient(circle at 82% 58%, rgba(49, 162, 76, 0.12) 0 9px, transparent 10px),
    radial-gradient(circle at 48% 12%, rgba(66, 103, 178, 0.1) 0 7px, transparent 8px),
    radial-gradient(circle at 70% 88%, rgba(0, 122, 255, 0.08) 0 13px, transparent 14px);
  background-size: auto, 160px 160px, 200px 200px, 130px 130px, 180px 180px;
  animation: memphis-drift 28s linear infinite;
}

body::after {
  content: "";
  position: fixed;
  width: 72px;
  height: 72px;
  top: 22%;
  right: 5%;
  pointer-events: none;
  z-index: 0;
  border: 3px solid rgba(0, 122, 255, 0.35);
  border-radius: 40% 20% 55% 25%;
  transform: rotate(22deg);
  box-shadow:
    -38vw 28vh 0 -22px rgba(49, 162, 76, 0.22),
    -62vw 55vh 0 -18px rgba(66, 103, 178, 0.18),
    -12vw 68vh 0 -30px rgba(0, 122, 255, 0.16),
    8vw 42vh 0 -34px rgba(49, 162, 76, 0.12);
  animation: memphis-spin 40s linear infinite;
}

@keyframes memphis-drift {
  0% { background-position: 0 0, 0 0, 0 0, 0 0, 0 0; }
  100% { background-position: 80px 40px, 40px 20px, -30px 50px, 20px -15px, -25px 30px; }
}

@keyframes memphis-spin {
  0% { transform: rotate(22deg); }
  100% { transform: rotate(382deg); }
}

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

body.nav-open {
  overflow: hidden;
}

main {
  flex: 1 0 auto;
  width: 100%;
}

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

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

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

h1,
h2,
h3 {
  font-family: var(--font-display);
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--text);
}

.disclosure-banner {
  width: 100%;
  padding: 8px 16px;
  background: var(--primary);
  color: #ffffff;
  font-size: 12px;
  font-weight: 500;
  text-align: center;
  line-height: 1.45;
  border: none;
  z-index: 30;
}

.site-nav {
  position: static;
  width: 100%;
  height: 70px;
  background: #1C1E21;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  border-bottom: none;
  z-index: 100;
}

.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  height: 70px;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 16px;
  position: relative;
}

.nav-left,
.nav-right {
  display: flex;
  align-items: center;
  gap: 8px 18px;
  flex-wrap: wrap;
}

.nav-left {
  justify-content: flex-end;
}

.nav-right {
  justify-content: flex-start;
}

.nav-left a,
.nav-right a {
  color: rgba(255, 255, 255, 0.88);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 0;
}

.nav-left a:hover,
.nav-right a:hover {
  color: #ffffff;
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #ffffff;
  flex-shrink: 0;
  justify-self: center;
}

.brand-lockup:hover {
  color: var(--primary);
}

.brand-lockup img {
  width: 40px;
  height: 53px;
  object-fit: contain;
}

.brand-lockup .brand-name {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 900;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: inherit;
}

.burger-btn {
  display: none;
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.25);
  border-radius: 8px;
  cursor: pointer;
  z-index: 2;
}

.burger-btn span {
  display: block;
  width: 20px;
  height: 2px;
  background: #ffffff;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

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

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

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

.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(28, 30, 33, 0.55);
  z-index: 180;
}

.nav-overlay.open {
  display: block;
}

.mobile-nav {
  position: fixed;
  top: 0;
  right: 0;
  width: 280px;
  height: 100%;
  z-index: 190;
  background: #1C1E21;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 18px;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  padding: 72px 28px 32px;
  overflow-y: auto;
}

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

.mobile-nav a {
  color: #ffffff;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.mobile-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 44px;
  height: 44px;
  border: none;
  background: transparent;
  color: #ffffff;
  font-size: 32px;
  cursor: pointer;
  line-height: 1;
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 60vh;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  padding: 40px 24px 48px;
  background-color: #1C1E21;
  background-image:
    linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.15) 55%, transparent 100%),
    url("/images/decorative/decor_1.jpg");
  background-size: cover;
  background-position: center;
  color: #ffffff;
}

.hero-inner {
  max-width: var(--max);
  width: 100%;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  text-align: left;
}

.hero h1 {
  color: #ffffff;
  font-size: clamp(2rem, 5vw, 3.2rem);
  margin-bottom: 12px;
  animation: hero-pop 0.7s ease-out both;
}

.hero-sub {
  max-width: 560px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.05rem;
  animation: hero-pop 0.7s ease-out 0.12s both;
}

.squiggle {
  display: inline-block;
  width: 48px;
  height: 10px;
  margin-left: 8px;
  vertical-align: middle;
  background:
    radial-gradient(circle at 8px 5px, var(--primary) 0 4px, transparent 5px),
    radial-gradient(circle at 24px 5px, var(--accent) 0 4px, transparent 5px),
    radial-gradient(circle at 40px 5px, var(--secondary) 0 4px, transparent 5px);
  animation: squiggle-bounce 2.4s ease-in-out infinite;
}

@keyframes hero-pop {
  from { opacity: 0; transform: translateY(14px) scale(0.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes squiggle-bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}

.offers-section {
  padding: 48px 16px 56px;
  background-color: var(--bg);
  background-image:
    linear-gradient(180deg, rgba(240, 242, 245, 0.92), rgba(240, 242, 245, 0.88)),
    url("/images/offers_bg/offers_bg.webp");
  background-size: cover;
  background-position: center;
  position: relative;
}

.offers-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    repeating-linear-gradient(
      45deg,
      transparent,
      transparent 18px,
      rgba(0, 122, 255, 0.04) 18px,
      rgba(0, 122, 255, 0.04) 20px
    );
  opacity: 0.7;
}

.offers-inner {
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.offers-title {
  text-align: center;
  margin-bottom: 8px;
  font-size: 1.7rem;
}

.offers-intro {
  text-align: center;
  color: var(--muted);
  font-size: 0.95rem;
  margin-bottom: 28px;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

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

.offer-card {
  background: var(--offer-bg);
  border: 1px solid var(--offer-border);
  border-radius: 10px;
  padding: 22px 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
  transition: border-color 0.2s ease, transform 0.25s ease;
  overflow: hidden;
  min-width: 0;
}

.offer-card:hover {
  border-color: var(--primary);
  transform: scale(1.035);
}

.offer-logo {
  width: 200px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 6px;
  padding: 10px;
  flex-shrink: 0;
}

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

.offer-name {
  font-family: var(--font-display);
  font-size: 1.25rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #ffffff;
}

.offer-bonus-group {
  display: flex;
  flex-direction: column;
  gap: 4px;
  width: 100%;
  min-width: 0;
}

.offer-bonus {
  color: var(--offer-bonus);
  font-weight: 700;
  font-size: 0.98rem;
  line-height: 1.35;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.offer-terms {
  font-size: 0.72rem;
  color: #9ca3af;
}

.offer-desc {
  font-size: 0.78rem;
  color: #9ca3af;
  line-height: 1.45;
}

.offer-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: auto;
  width: 100%;
  padding: 12px 16px;
  background: var(--offer-cta-bg);
  color: var(--offer-cta-text);
  text-decoration: none;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 6px;
  border: none;
  cursor: pointer;
}

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

.info-section {
  padding: 56px 24px;
  position: relative;
  overflow: hidden;
}

.info-section:nth-of-type(odd) {
  background: rgba(255, 255, 255, 0.55);
}

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

.info-section h2 {
  margin-bottom: 14px;
  font-size: clamp(1.35rem, 2.4vw, 1.85rem);
}

.info-section p {
  color: var(--text);
  margin-bottom: 12px;
}

.topic-cta {
  display: inline-block;
  margin-top: 16px;
  padding: 12px 20px;
  background: var(--primary);
  color: #ffffff !important;
  font-weight: 800;
  font-size: 0.9rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  border-radius: 4px 16px 4px 16px;
  box-shadow: 4px 4px 0 rgba(66, 103, 178, 0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.topic-cta:hover {
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0 rgba(49, 162, 76, 0.35);
  color: #ffffff !important;
}

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

.decor-img {
  max-width: min(500px, 100%);
  max-height: 320px;
  width: auto;
  height: auto;
  object-fit: cover;
  border-radius: 12px 4px 18px 8px;
  border: 3px solid var(--secondary);
  box-shadow: 8px 8px 0 rgba(0, 122, 255, 0.2);
}

.site-footer {
  background: #1C1E21;
  color: rgba(255, 255, 255, 0.82);
  padding: 48px 24px 32px;
  margin-top: auto;
}

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

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #ffffff;
  margin-bottom: 20px;
}

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

.footer-brand img {
  width: 40px;
  height: 53px;
  object-fit: contain;
}

.footer-brand .brand-name {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 900;
  text-transform: uppercase;
  color: inherit;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
  margin-bottom: 24px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.88rem;
}

.footer-links a:hover {
  color: #ffffff;
}

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

.footer-badges img {
  height: 36px;
  width: auto;
  max-width: 120px;
  object-fit: contain;
  filter: brightness(1.05);
}

.footer-za {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.62);
  line-height: 1.55;
  margin-bottom: 16px;
  max-width: 920px;
}

.footer-za p {
  margin-bottom: 10px;
}

.footer-updated {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 10px;
}

.footer-requisites {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.5);
}

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

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

.age-panel {
  background: var(--surface);
  border-radius: 12px;
  padding: 28px 24px;
  max-width: 420px;
  width: 100%;
  text-align: center;
  box-shadow: 8px 8px 0 rgba(0, 122, 255, 0.25);
  border: 3px solid var(--primary);
}

.age-panel h2 {
  margin-bottom: 10px;
}

.age-panel p {
  color: var(--muted);
  margin-bottom: 18px;
}

.age-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.btn-confirm,
.btn-decline,
#cookie-accept,
#cookie-reject {
  border: none;
  cursor: pointer;
  padding: 12px 16px;
  font-weight: 800;
  font-size: 0.9rem;
  border-radius: 6px;
  font-family: var(--font);
}

.btn-confirm,
#cookie-accept {
  background: var(--primary);
  color: #ffffff;
}

.btn-decline,
#cookie-reject {
  background: transparent;
  color: var(--text);
  border: 2px solid var(--border);
}

.age-blocked {
  display: none;
  background: var(--surface);
  color: var(--text);
  padding: 24px;
  border-radius: 12px;
  max-width: 420px;
  text-align: center;
  font-weight: 700;
}

.age-blocked.visible {
  display: block;
}

.cookie-banner {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 400;
  background: var(--surface);
  border-top: 3px solid var(--primary);
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.12);
  padding: 16px 20px;
}

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

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

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

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

.page-hero {
  padding: 48px 24px 36px;
  background: #1C1E21;
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: "";
  position: absolute;
  right: -40px;
  top: -20px;
  width: 160px;
  height: 160px;
  border: 4px solid rgba(0, 122, 255, 0.35);
  border-radius: 30% 70% 50% 50%;
  transform: rotate(18deg);
}

.page-hero-inner {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.page-hero h1 {
  color: #ffffff;
  margin-bottom: 10px;
}

.page-hero p {
  color: rgba(255, 255, 255, 0.8);
  max-width: 640px;
}

.page-content {
  padding: 40px 24px 64px;
}

.page-content-inner {
  max-width: 820px;
  margin: 0 auto;
}

.page-content-inner h2 {
  margin: 28px 0 12px;
  font-size: 1.35rem;
}

.page-content-inner p,
.page-content-inner li {
  margin-bottom: 12px;
  color: var(--text);
}

.page-content-inner ul {
  margin: 0 0 16px 1.2rem;
}

.contact-form-wrap {
  margin-top: 28px;
  background: var(--surface);
  border: 2px solid var(--border);
  border-radius: 12px;
  padding: 24px;
  box-shadow: 6px 6px 0 rgba(66, 103, 178, 0.15);
}

.form-field {
  margin-bottom: 16px;
}

.form-field label {
  display: block;
  font-weight: 700;
  margin-bottom: 6px;
  font-size: 0.9rem;
}

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

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

.form-submit {
  background: var(--primary);
  color: #ffffff;
  border: none;
  padding: 12px 22px;
  font-weight: 800;
  border-radius: 6px;
  cursor: pointer;
  font-family: var(--font);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.email-error {
  display: none;
  color: #c0392b;
  font-size: 0.85rem;
  margin-top: 6px;
}

.email-error.visible {
  display: block;
}

.form-success {
  display: none;
  background: rgba(49, 162, 76, 0.12);
  border: 2px solid var(--accent);
  border-radius: 10px;
  padding: 20px;
  margin-top: 20px;
  font-weight: 700;
}

.form-success.visible {
  display: block;
}

.go-page {
  min-height: 50vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 48px 24px;
}

.go-ad {
  font-weight: 900;
  color: var(--primary);
  margin-bottom: 12px;
  letter-spacing: 0.08em;
}

.go-spinner {
  width: 48px;
  height: 48px;
  border: 4px solid var(--border);
  border-top-color: var(--primary);
  border-radius: 50%;
  margin: 24px auto;
  animation: spin 0.9s linear infinite;
}

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

.go-compliance {
  max-width: 520px;
  color: var(--muted);
  font-size: 0.9rem;
  margin-top: 12px;
}

.go-compliance a {
  font-weight: 700;
}

.error-page {
  min-height: 50vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 64px 24px;
}

.error-page h1 {
  font-size: 3rem;
  margin-bottom: 12px;
}

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

.error-home {
  display: inline-block;
  padding: 12px 22px;
  background: var(--primary);
  color: #ffffff !important;
  font-weight: 800;
  border-radius: 6px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

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

  .nav-inner {
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .burger-btn {
    display: flex;
  }

  .offers-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin: 0 auto;
  }

  .hero {
    min-height: 40vh;
    align-items: center;
    justify-content: center;
    text-align: center;
  }

  .hero-inner {
    text-align: center;
  }

  .hero-sub {
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 600px) {
  .disclosure-banner {
    font-size: 11px;
  }

  .cookie-inner {
    flex-direction: column;
    align-items: stretch;
  }

  .cookie-actions {
    width: 100%;
  }

  .cookie-actions button {
    flex: 1;
  }

  .offer-logo {
    width: 160px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
  }

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

  .offer-bonus {
    font-size: 0.88rem;
    overflow-wrap: anywhere;
    word-break: break-word;
  }

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

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

  body::after {
    right: 0;
    width: 48px;
    height: 48px;
    box-shadow: none;
  }
}

@media (max-width: 375px) {
  .offer-logo {
    width: 140px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
  }

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

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

  .hero {
    padding-left: 16px;
    padding-right: 16px;
  }

  .info-section {
    padding-left: 16px;
    padding-right: 16px;
  }
}

.layout-split {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 32px;
  align-items: center;
}

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

.layout-list li {
  background: var(--surface);
  border: 2px solid var(--border);
  border-left: 6px solid var(--primary);
  padding: 14px 16px;
  border-radius: 0 12px 12px 0;
  font-weight: 700;
  transform: rotate(-0.4deg);
}

.layout-list li:nth-child(even) {
  border-left-color: var(--accent);
  transform: rotate(0.5deg);
}

.stat-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 20px;
}

.stat-item {
  background: var(--surface);
  border: 3px solid var(--secondary);
  border-radius: 18px 6px 18px 6px;
  padding: 18px 14px;
  text-align: center;
  box-shadow: 5px 5px 0 rgba(0, 122, 255, 0.15);
}

.stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--primary);
  margin-bottom: 6px;
}

.stat-label {
  display: block;
  font-size: 0.85rem;
  color: var(--muted);
}

.odds-compare {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 18px;
}

.odds-card {
  background: var(--surface);
  border: 2px dashed var(--primary);
  padding: 16px;
  border-radius: 4px 20px;
}

.odds-card h3 {
  font-size: 1.05rem;
  margin-bottom: 8px;
  color: var(--secondary);
}

.odds-card p {
  font-size: 0.9rem;
  margin: 0;
  color: var(--muted);
}

.futures-rail {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 24px;
  align-items: start;
  margin-top: 8px;
}

.futures-marker {
  width: 64px;
  height: 64px;
  background: var(--accent);
  color: #ffffff;
  font-family: var(--font-display);
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50% 20% 50% 20%;
  transform: rotate(-12deg);
  box-shadow: 4px 4px 0 rgba(66, 103, 178, 0.3);
}

.cricket-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 18px;
}

.cricket-tile {
  background: linear-gradient(135deg, rgba(0, 122, 255, 0.08), rgba(49, 162, 76, 0.1));
  border: 2px solid var(--border);
  padding: 16px;
  border-radius: 16px 4px 16px 4px;
}

.cricket-tile strong {
  display: block;
  font-family: var(--font-display);
  margin-bottom: 6px;
  font-size: 0.95rem;
}

.races-steps {
  counter-reset: race-step;
  list-style: none;
  margin: 18px 0 0;
  padding: 0;
  display: grid;
  gap: 12px;
}

.races-steps li {
  counter-increment: race-step;
  position: relative;
  padding: 14px 14px 14px 56px;
  background: var(--surface);
  border: 2px solid var(--border);
  border-radius: 10px;
}

.races-steps li::before {
  content: counter(race-step);
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%) rotate(-8deg);
  width: 32px;
  height: 32px;
  background: var(--primary);
  color: #ffffff;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 0.9rem;
}

.safety-banner {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.safety-chip {
  background: #1C1E21;
  color: #ffffff;
  padding: 10px 14px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-radius: 999px 4px 999px 4px;
}

.support-columns {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 14px;
  margin-top: 18px;
}

.support-col {
  background: var(--surface);
  border-top: 5px solid var(--primary);
  padding: 16px;
  box-shadow: 0 8px 0 rgba(0, 0, 0, 0.04);
}

.support-col:nth-child(2) {
  border-top-color: var(--accent);
  transform: translateY(8px);
}

.support-col:nth-child(3) {
  border-top-color: var(--secondary);
}

.support-col h3 {
  font-size: 1rem;
  margin-bottom: 8px;
}

.support-col p {
  font-size: 0.9rem;
  margin: 0;
  color: var(--muted);
}

.fit-criteria {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.fit-row {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 14px;
  align-items: center;
  background: rgba(0, 122, 255, 0.06);
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid var(--border);
}

.fit-num {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--primary);
  text-align: center;
}

.responsible-quote {
  margin: 18px 0;
  padding: 20px 22px;
  background: var(--surface);
  border-left: 8px solid var(--accent);
  font-family: var(--font-display);
  font-size: 1.05rem;
  line-height: 1.4;
  transform: rotate(-0.3deg);
  box-shadow: 6px 6px 0 rgba(49, 162, 76, 0.18);
}

.apps-mosaic {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 24px;
  align-items: center;
  margin-top: 8px;
}

.apps-checklist {
  list-style: none;
  margin: 14px 0 0;
  padding: 0;
}

.apps-checklist li {
  position: relative;
  padding: 8px 0 8px 28px;
  border-bottom: 1px dashed var(--border);
}

.apps-checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 14px;
  width: 14px;
  height: 14px;
  background: var(--accent);
  border-radius: 3px;
  transform: rotate(45deg);
}

.image-rail {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: center;
}

.info-zigzag {
  position: relative;
}

.info-zigzag::after {
  content: "";
  position: absolute;
  right: 8%;
  top: 12%;
  width: 40px;
  height: 40px;
  border: 3px solid rgba(0, 122, 255, 0.25);
  border-radius: 30% 70% 40% 60%;
  pointer-events: none;
}

@media (max-width: 900px) {
  .layout-split,
  .futures-rail,
  .cricket-grid,
  .support-columns,
  .apps-mosaic,
  .image-rail,
  .odds-compare,
  .stat-band {
    grid-template-columns: 1fr;
  }

  .support-col:nth-child(2) {
    transform: none;
  }

  .layout-split .decor-wrap,
  .cricket-grid + .decor-wrap,
  .decor-wrap {
    overflow: hidden;
    max-width: 100%;
    width: 100%;
  }

  .layout-split .decor-img,
  .decor-img {
    max-width: 100%;
    height: auto;
  }
}

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