:root {
  --bg: #FDF2F2;
  --surface: #FFFFFF;
  --text: #451A03;
  --muted: #92400E;
  --primary: #E11D48;
  --secondary: #78350F;
  --accent: #F43F5E;
  --border: rgba(69, 26, 3, 0.1);
  --emerald: #064e3b;
  --charcoal: #1c1917;
  --page-padding: 24px;
  --font-sans: "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono: ui-monospace, "Cascadia Code", "Consolas", monospace;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: var(--font-sans);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background-image:
    linear-gradient(160deg, rgba(225, 29, 72, 0.04) 0%, transparent 45%),
    radial-gradient(ellipse at 85% 10%, rgba(6, 78, 59, 0.06) 0%, transparent 50%);
  position: relative;
}

main {
  flex: 1 0 auto;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image:
    repeating-linear-gradient(0deg, transparent, transparent 47px, rgba(6, 78, 59, 0.03) 47px, rgba(6, 78, 59, 0.03) 48px),
    repeating-linear-gradient(90deg, transparent, transparent 47px, rgba(28, 25, 23, 0.02) 47px, rgba(28, 25, 23, 0.02) 48px);
  pointer-events: none;
  z-index: 0;
}

body > * {
  position: relative;
  z-index: 1;
}

a {
  color: var(--primary);
  text-decoration: none;
}

a:hover {
  color: var(--accent);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.disclosure-pill {
  max-width: fit-content;
  margin: 8px auto;
  padding: 6px 24px;
  font-size: 11px;
  line-height: 1.5;
  color: var(--muted);
  background: rgba(225, 29, 72, 0.05);
  border: 1px solid var(--border);
  border-radius: 999px;
  text-align: center;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 900;
  background: var(--charcoal);
  height: 52px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  height: 100%;
  padding: 0 var(--page-padding);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.logo-link img {
  height: 32px;
  width: auto;
}

.nav-cta-desktop {
  display: none;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--surface);
  background: var(--primary);
  padding: 8px 18px;
  border-radius: 999px;
  transition: background 0.2s ease, transform 0.2s ease;
}

.nav-cta-desktop:hover {
  background: var(--accent);
  color: var(--surface);
  transform: translateY(-1px);
}

.burger-btn {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--surface);
  font-size: 20px;
  width: 38px;
  height: 38px;
  border-radius: 8px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.burger-btn:hover {
  border-color: var(--primary);
  background: rgba(225, 29, 72, 0.15);
}

.nav-drawer {
  position: fixed;
  top: 0;
  right: -300px;
  width: 300px;
  height: 100vh;
  background: var(--charcoal);
  z-index: 1000;
  padding: 60px 28px 28px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  transition: right 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border-left: 1px solid rgba(225, 29, 72, 0.2);
  overflow-y: auto;
}

.nav-drawer.open {
  right: 0;
}

.drawer-close {
  position: absolute;
  top: 12px;
  right: 16px;
  background: transparent;
  border: none;
  color: var(--surface);
  font-size: 28px;
  cursor: pointer;
  line-height: 1;
}

.nav-drawer a {
  color: rgba(255, 255, 255, 0.85);
  padding: 12px 0;
  font-size: 15px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.04em;
}

.nav-drawer a:hover {
  color: var(--accent);
}

.drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(28, 25, 23, 0.5);
  z-index: 999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.drawer-overlay.visible {
  opacity: 1;
  pointer-events: auto;
}

.site-footer {
  background: var(--charcoal);
  color: rgba(255, 255, 255, 0.75);
  padding: 48px var(--page-padding) 32px;
  margin-top: auto;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-top {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 28px;
}

.footer-logo img {
  height: 36px;
  opacity: 0.9;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.65);
  font-size: 13px;
}

.footer-links a:hover {
  color: var(--accent);
}

.footer-requisites {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 24px;
  font-family: var(--font-mono);
}

.footer-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  margin-bottom: 24px;
}

.footer-badges img {
  height: 40px;
  width: auto;
  opacity: 0.85;
  transition: opacity 0.2s ease;
}

.footer-badges a:hover img {
  opacity: 1;
}

.footer-disclosure {
  font-size: 12px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 20px;
}

.footer-copy {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.35);
}

.age-overlay {
  position: fixed;
  inset: 0;
  background: rgba(28, 25, 23, 0.88);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.age-overlay.hidden {
  display: none;
}

.age-modal {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 36px 32px;
  max-width: 440px;
  width: 100%;
  text-align: center;
  box-shadow: 0 24px 64px rgba(69, 26, 3, 0.2);
}

.age-modal h2 {
  font-size: 1.35rem;
  margin-bottom: 12px;
  color: var(--text);
}

.age-modal p {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 24px;
}

.age-buttons {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-primary {
  background: var(--primary);
  color: var(--surface);
  border: none;
  padding: 12px 24px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s ease;
}

.btn-primary:hover {
  background: var(--accent);
}

.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
  padding: 12px 24px;
  border-radius: 999px;
  font-size: 14px;
  cursor: pointer;
  transition: border-color 0.2s ease;
}

.btn-outline:hover {
  border-color: var(--primary);
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 16px 24px;
  z-index: 1500;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 16px;
  box-shadow: 0 -8px 32px rgba(69, 26, 3, 0.1);
}

.cookie-banner.hidden {
  display: none;
}

.cookie-banner p {
  font-size: 13px;
  color: var(--muted);
  max-width: 640px;
  flex: 1;
  min-width: 200px;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.btn-cookie-reject {
  background: transparent;
  color: var(--muted);
  border: 1px solid var(--border);
  padding: 10px 20px;
  border-radius: 999px;
  font-size: 13px;
  cursor: pointer;
}

.btn-cookie-reject:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.legal-page {
  padding: 48px var(--page-padding) 64px;
}

.legal-inner {
  max-width: 800px;
  margin: 0 auto;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 40px 36px;
}

.legal-inner h1 {
  font-size: 1.75rem;
  margin-bottom: 20px;
  color: var(--text);
}

.legal-inner h2 {
  font-size: 1.15rem;
  margin: 28px 0 12px;
  color: var(--secondary);
}

.legal-inner p,
.legal-inner li {
  font-size: 15px;
  color: var(--muted);
  margin-bottom: 12px;
}

.legal-inner ul {
  padding-left: 20px;
  margin-bottom: 16px;
}

.contact-form {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-form label {
  font-size: 13px;
  font-family: var(--font-mono);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--secondary);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: 10px;
  font-family: var(--font-sans);
  font-size: 15px;
  color: var(--text);
  background: var(--bg);
}

.contact-form textarea {
  min-height: 140px;
  resize: vertical;
}

.form-error {
  font-size: 13px;
  color: var(--primary);
  display: none;
}

.form-error.visible {
  display: block;
}

.form-success {
  padding: 24px;
  background: rgba(6, 78, 59, 0.08);
  border: 1px solid rgba(6, 78, 59, 0.2);
  border-radius: 12px;
  color: var(--emerald);
  font-size: 15px;
}

.form-success.hidden {
  display: none;
}

.error-page {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px var(--page-padding);
  text-align: center;
}

.error-inner h1 {
  font-size: 4rem;
  color: var(--primary);
  margin-bottom: 12px;
}

.error-inner p {
  color: var(--muted);
  margin-bottom: 24px;
}

@media (min-width: 768px) {
  .nav-cta-desktop {
    display: inline-flex;
    margin-left: auto;
    margin-right: 12px;
  }
}

@media (max-width: 767px) {
  .cookie-banner {
    flex-direction: column;
    text-align: center;
  }
}

.hero-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 280px;
}

.hero-headline-col {
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 32px;
  position: relative;
  overflow: hidden;
}

.hero-headline-col::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 80%, rgba(6, 78, 59, 0.25) 0%, transparent 50%),
    repeating-linear-gradient(45deg, transparent, transparent 12px, rgba(255, 255, 255, 0.03) 12px, rgba(255, 255, 255, 0.03) 13px);
  pointer-events: none;
}

.hero-headline-col h1 {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  color: var(--surface);
  line-height: 1.15;
  position: relative;
  z-index: 1;
  max-width: 480px;
}

.hero-subtitle-col {
  background: var(--surface);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 32px;
  border-left: 2px solid var(--accent);
  position: relative;
}

.hero-subtitle-col::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(6, 78, 59, 0.04) 0%, transparent 60%);
  pointer-events: none;
}

.hero-subtitle-col p {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--muted);
  max-width: 440px;
  position: relative;
  z-index: 1;
}

.offers-section {
  padding: 56px var(--page-padding);
  background-image: url("/images/offers_bg/offers_bg.svg");
  background-size: cover;
  background-position: center;
  position: relative;
}

.offers-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(28, 25, 23, 0.78);
  pointer-events: none;
}

.offers-inner {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.offers-section h2 {
  font-size: 1.75rem;
  margin-bottom: 32px;
  text-align: center;
  color: var(--surface);
}

.offers-section h2 em {
  color: var(--accent);
  font-style: normal;
  font-family: var(--font-mono);
  font-size: 0.85em;
  letter-spacing: 0.06em;
}

.offers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.offer-card {
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.35s ease;
}

.offer-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.4);
}

.offer-card-logo {
  width: 300px;
  height: 100px;
  margin: 20px auto 0;
  padding: 0;
  background: #f8f8f8;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  flex-shrink: 0;
}

.offer-card-logo img {
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: contain;
  object-position: center;
  display: block;
}

.offer-card-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}

.offer-card-name {
  font-size: 1.15rem;
  color: #1a1a1a;
}

.offer-bonus-group {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.offer-card-bonus {
  font-size: clamp(0.875rem, 2.5vw, 1rem);
  font-weight: 700;
  color: #c41e3a;
  line-height: 1.35;
  word-break: break-word;
  overflow-wrap: break-word;
}

.offer-terms-notice {
  font-size: 11px;
  color: #888888;
}

.offer-card-desc {
  font-size: 12px;
  color: #666666;
  line-height: 1.5;
}

.offer-card-cta {
  display: inline-block;
  text-align: center;
  padding: 12px 20px;
  background: #1a1a1a;
  color: #ffffff;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  margin-top: auto;
  transition: background 0.2s ease;
}

.offer-card-cta:hover {
  background: #333333;
  color: #ffffff;
}

.info-section {
  padding: 56px var(--page-padding);
  position: relative;
}

.info-section:nth-child(even) {
  background: rgba(255, 255, 255, 0.6);
}

.info-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.info-section h2 {
  font-size: 1.5rem;
  margin-bottom: 20px;
  color: var(--text);
}

.info-section h2 em {
  font-style: normal;
  color: var(--primary);
}

.info-section p {
  color: var(--muted);
  margin-bottom: 16px;
  font-size: 15px;
}

.info-cta-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  padding: 12px 22px;
  background: rgba(225, 29, 72, 0.08);
  border: 1px solid rgba(225, 29, 72, 0.2);
  border-radius: 999px;
  color: var(--primary);
  font-size: 14px;
  font-weight: 600;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.info-cta-link:hover {
  background: rgba(225, 29, 72, 0.15);
  border-color: var(--primary);
  color: var(--primary);
}

.layout-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  margin-top: 24px;
}

.game-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 20px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.game-card:hover {
  border-color: rgba(225, 29, 72, 0.3);
  box-shadow: 0 8px 24px rgba(69, 26, 3, 0.08);
}

.game-card h3 {
  font-size: 1rem;
  margin-bottom: 8px;
  color: var(--secondary);
}

.game-card p {
  font-size: 13px;
  margin-bottom: 0;
}

.layout-split-reverse {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.layout-split-reverse img {
  max-width: 500px;
  max-height: 320px;
  object-fit: cover;
  border-radius: 12px;
  border: 1px solid var(--border);
}

.live-badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 20px 0;
}

.live-badge {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 6px 14px;
  background: rgba(6, 78, 59, 0.1);
  color: var(--emerald);
  border-radius: 999px;
  border: 1px solid rgba(6, 78, 59, 0.2);
}

.layout-table-showcase {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 36px;
  align-items: start;
}

.table-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.table-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
}

.table-icon {
  width: 44px;
  height: 44px;
  background: rgba(225, 29, 72, 0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--primary);
  flex-shrink: 0;
}

.layout-checklist-banking {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.checklist-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.check-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 18px;
  background: var(--surface);
  border-radius: 10px;
  border: 1px solid var(--border);
}

.check-mark {
  color: var(--emerald);
  font-weight: 700;
  flex-shrink: 0;
}

.layout-spins-visual {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 36px;
  align-items: center;
}

.spins-steps {
  counter-reset: spinstep;
}

.spin-step {
  display: flex;
  gap: 16px;
  margin-bottom: 20px;
  align-items: flex-start;
}

.spin-step::before {
  counter-increment: spinstep;
  content: counter(spinstep);
  width: 32px;
  height: 32px;
  background: var(--primary);
  color: var(--surface);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  flex-shrink: 0;
}

.spin-step h3 {
  font-size: 1rem;
  margin-bottom: 6px;
  color: var(--secondary);
}

.spin-step p {
  font-size: 14px;
  margin-bottom: 0;
}

.layout-choice-mosaic {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.choice-tile {
  padding: 24px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  text-align: center;
}

.choice-tile strong {
  display: block;
  font-size: 1.5rem;
  color: var(--primary);
  margin-bottom: 8px;
}

.choice-tile span {
  font-size: 13px;
  color: var(--muted);
}

.layout-value-band {
  background: linear-gradient(135deg, rgba(6, 78, 59, 0.08) 0%, rgba(225, 29, 72, 0.06) 100%);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 36px;
}

.value-points {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
  margin-top: 24px;
}

.value-point {
  padding: 16px;
  background: var(--surface);
  border-radius: 10px;
  border-left: 3px solid var(--primary);
}

.value-point h3 {
  font-size: 0.95rem;
  margin-bottom: 6px;
  color: var(--text);
}

.value-point p {
  font-size: 13px;
  margin-bottom: 0;
}

.layout-promo-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.promo-card {
  padding: 24px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  position: relative;
  overflow: hidden;
}

.promo-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
}

.promo-card h3 {
  font-size: 1.05rem;
  margin-bottom: 10px;
  color: var(--secondary);
}

.layout-roulette-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.roulette-facts {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.roulette-fact {
  padding: 14px 18px;
  background: rgba(28, 25, 23, 0.04);
  border-radius: 10px;
  font-size: 14px;
  color: var(--muted);
}

.roulette-fact strong {
  color: var(--text);
}

.layout-bonus-timeline {
  position: relative;
  padding-left: 28px;
  border-left: 2px solid rgba(225, 29, 72, 0.25);
  margin-top: 24px;
}

.timeline-node {
  position: relative;
  padding-bottom: 28px;
}

.timeline-node::before {
  content: "";
  position: absolute;
  left: -35px;
  top: 4px;
  width: 12px;
  height: 12px;
  background: var(--primary);
  border-radius: 50%;
  border: 2px solid var(--surface);
  box-shadow: 0 0 0 2px rgba(225, 29, 72, 0.3);
  animation: optimization-pulse 2.5s ease-in-out infinite;
}

@keyframes optimization-pulse {
  0%, 100% { box-shadow: 0 0 0 2px rgba(225, 29, 72, 0.3); }
  50% { box-shadow: 0 0 0 6px rgba(225, 29, 72, 0.1); }
}

.timeline-node h3 {
  font-size: 1rem;
  margin-bottom: 8px;
  color: var(--secondary);
}

.timeline-node p {
  font-size: 14px;
  margin-bottom: 0;
}

.decor-img-wrap {
  max-width: 500px;
  max-height: 320px;
  overflow: hidden;
  border-radius: 12px;
  border: 1px solid var(--border);
}

.decor-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.dna-health-grid {
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(0deg, transparent, transparent 23px, rgba(6, 78, 59, 0.04) 23px, rgba(6, 78, 59, 0.04) 24px);
  pointer-events: none;
}

.biotech-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--emerald);
  margin-bottom: 12px;
  display: block;
}

.genetic-pattern-bg {
  background-image:
    radial-gradient(circle at 30% 40%, rgba(6, 78, 59, 0.06) 0%, transparent 40%),
    radial-gradient(circle at 70% 60%, rgba(225, 29, 72, 0.04) 0%, transparent 35%);
}

.health-overlay-section::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(6, 78, 59, 0.2), transparent);
}

@media (max-width: 900px) {
  .hero-split {
    grid-template-columns: 1fr;
  }

  .hero-subtitle-col {
    border-left: none;
    border-top: 2px solid var(--accent);
  }

  .layout-split-reverse,
  .layout-table-showcase,
  .layout-checklist-banking,
  .layout-spins-visual,
  .layout-roulette-split {
    grid-template-columns: 1fr;
  }

  .layout-choice-mosaic {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  .offer-card-logo {
    width: 260px;
    height: 88px;
  }

  .offer-card-logo img {
    object-fit: contain;
    object-position: center;
  }

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

  .layout-split-reverse .decor-img-wrap,
  .layout-roulette-split .decor-img-wrap {
    max-width: 100%;
  }
}

@media (max-width: 375px) {
  .decor-img-wrap {
    max-height: 200px;
  }

  .info-inner {
    overflow-x: hidden;
  }
}
