:root {
  --bg: #FAFAF9;
  --surface: #FFFFFF;
  --text: #1C1917;
  --muted: #78716C;
  --primary: #FB7185;
  --secondary: #60A5FA;
  --accent: #34D399;
  --border: rgba(28,25,23,0.12);
  --font: "Segoe UI", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --max: 1200px;
  --offer-bg: #1a1a1a;
  --offer-border: #2a2a2a;
  --offer-bonus: #ffd700;
  --offer-cta-bg: #22c55e;
  --offer-cta-text: #ffffff;
  --style-voice: ultra minimal, white space, calm, zen, silent UI;
}

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

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

body {
  font-family: var(--font);
  font-weight: 300;
  color: var(--text);
  background-color: var(--bg);
  background-image:
    linear-gradient(165deg, rgba(250, 250, 249, 1) 0%, rgba(255, 255, 255, 0.96) 45%, rgba(250, 250, 249, 1) 100%),
    radial-gradient(ellipse 70% 50% at 8% 0%, rgba(251, 113, 133, 0.08), transparent 55%),
    radial-gradient(ellipse 55% 40% at 95% 20%, rgba(96, 165, 250, 0.07), transparent 50%);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  line-height: 1.7;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background-image:
    radial-gradient(circle at 70% 80%, rgba(52, 211, 153, 0.05), transparent 42%),
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 48px,
      rgba(28, 25, 23, 0.015) 48px,
      rgba(28, 25, 23, 0.015) 49px
    );
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(ellipse 40% 30% at 50% 100%, rgba(96, 165, 250, 0.04), transparent 60%);
}

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

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

.offer-logo img,
.footer-badges img,
.brand-lockup img {
  max-width: none;
}

a {
  color: var(--secondary);
  text-decoration: none;
  transition: color 0.2s ease, opacity 0.2s ease;
}

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

ul {
  list-style: none;
}

h1, h2, h3 {
  font-weight: 200;
  letter-spacing: -0.02em;
  line-height: 1.25;
}

.disclosure-banner {
  width: 100%;
  padding: 0 16px;
  text-align: center;
  background: transparent;
  border: none;
  position: relative;
  z-index: 120;
}

.disclosure-banner p {
  margin: 8px auto;
  max-width: fit-content;
  padding: 5px 18px;
  font-size: 11px;
  font-weight: 500;
  line-height: 1.45;
  color: var(--primary);
  background: rgba(251, 113, 133, 0.15);
  border: 1px solid rgba(251, 113, 133, 0.3);
  border-radius: 4px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 500;
  background: #1C1917;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
  border-bottom: none;
  height: 60px;
}

.nav-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 16px 24px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  box-sizing: border-box;
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #FFFFFF;
  text-decoration: none;
  font-weight: 400;
  font-size: 1.05rem;
  letter-spacing: 0.02em;
  flex-shrink: 0;
}

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

.brand-lockup img {
  width: 36px;
  height: 36px;
  object-fit: contain;
  flex-shrink: 0;
}

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

.nav-links a {
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.9rem;
  font-weight: 400;
  text-decoration: none;
  transition: transform 0.15s ease, color 0.15s ease;
}

.nav-links a:hover {
  color: #FFFFFF;
  transform: scale(1.05);
}

.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.burger span {
  display: block;
  width: 100%;
  height: 2px;
  background: #FFFFFF;
}

.nav-overlay {
  position: fixed;
  inset: 0;
  z-index: 600;
  background: rgba(28, 25, 23, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
  padding: 48px 24px;
}

.nav-overlay.is-open {
  opacity: 1;
  visibility: visible;
}

.nav-overlay-close {
  position: absolute;
  top: 20px;
  right: 24px;
  background: transparent;
  border: none;
  color: #FFFFFF;
  font-size: 2rem;
  cursor: pointer;
  line-height: 1;
  padding: 8px;
}

.nav-overlay a {
  color: #FFFFFF;
  font-size: 1.5rem;
  font-weight: 300;
  padding: 12px 24px;
  text-decoration: none;
}

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

main {
  flex: 1 0 auto;
}

.page-hero {
  padding: 72px 24px 48px;
  text-align: center;
  border-bottom: 1px solid var(--border);
}

.page-hero h1 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 200;
  margin-bottom: 12px;
  color: var(--text);
}

.page-hero p {
  color: var(--muted);
  max-width: 520px;
  margin: 0 auto;
  font-size: 0.95rem;
}

.legal-content {
  max-width: 720px;
  margin: 0 auto;
  padding: 48px 24px 80px;
}

.legal-content h1 {
  font-size: 2rem;
  margin-bottom: 24px;
}

.legal-content h2 {
  font-size: 1.25rem;
  margin: 36px 0 12px;
  font-weight: 300;
  border-top: 1px solid var(--border);
  padding-top: 28px;
}

.legal-content p,
.legal-content li {
  color: var(--muted);
  margin-bottom: 14px;
  font-size: 0.95rem;
}

.legal-content ul {
  list-style: disc;
  padding-left: 1.25rem;
  margin-bottom: 16px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 32px;
  max-width: 480px;
}

.contact-form label {
  font-size: 0.85rem;
  color: var(--text);
  font-weight: 400;
}

.contact-form input,
.contact-form textarea {
  font-family: var(--font);
  font-size: 1rem;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: 4px;
  background: var(--surface);
  color: var(--text);
  transition: border-color 0.2s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--secondary);
}

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

.contact-form button {
  margin-top: 8px;
  align-self: flex-start;
  padding: 12px 28px;
  background: var(--text);
  color: #FFFFFF;
  border: none;
  border-radius: 4px;
  font-family: var(--font);
  font-size: 0.95rem;
  font-weight: 400;
  cursor: pointer;
  transition: opacity 0.2s ease;
}

.contact-form button:hover {
  opacity: 0.85;
}

.contact-form .error-msg {
  display: none;
  font-size: 0.8rem;
  color: var(--primary);
  margin: 0;
}

.contact-form .error-msg.visible {
  display: block;
}

.contact-form.is-hidden {
  display: none;
}

.form-success {
  display: none;
  margin-top: 32px;
  padding: 24px;
  background: rgba(52, 211, 153, 0.12);
  border: 1px solid rgba(52, 211, 153, 0.3);
  border-radius: 4px;
}

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

.form-success p {
  color: var(--text);
  margin: 0;
}

.error-page {
  text-align: center;
  padding: 96px 24px 120px;
}

.error-page h1 {
  font-size: 2rem;
  margin-bottom: 16px;
}

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

.error-page a {
  display: inline-block;
  padding: 12px 28px;
  background: var(--text);
  color: #FFFFFF;
  border-radius: 4px;
  font-weight: 400;
}

.error-page a:hover {
  color: #FFFFFF;
  opacity: 0.85;
}

.site-footer {
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 56px 24px 40px;
  margin-top: auto;
}

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

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

.footer-brand .brand-lockup {
  color: var(--text);
  margin-bottom: 12px;
}

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

.footer-brand p {
  color: var(--muted);
  font-size: 0.9rem;
  max-width: 420px;
}

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

.footer-links a {
  font-size: 0.85rem;
  color: var(--muted);
}

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

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

.footer-badges a,
.footer-badges span {
  display: block;
}

.footer-badges img {
  height: 44px;
  width: auto;
  max-width: 140px;
  object-fit: contain;
  opacity: 0.9;
}

.footer-requisites {
  font-size: 0.75rem;
  color: var(--muted);
  margin-bottom: 16px;
}

.footer-requisites p {
  margin-bottom: 4px;
}

.footer-copy {
  font-size: 0.8rem;
  color: var(--muted);
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

.age-gate {
  position: fixed;
  inset: 0;
  z-index: 9000;
  background: rgba(28, 25, 23, 0.72);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

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

.age-card {
  background: var(--surface);
  max-width: 400px;
  width: 100%;
  padding: 40px 32px;
  border-radius: 4px;
  text-align: center;
  border: 1px solid var(--border);
}

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

.age-card p {
  color: var(--muted);
  font-size: 0.9rem;
  margin-bottom: 28px;
}

.age-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  font-family: var(--font);
  font-size: 0.9rem;
  padding: 11px 22px;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  font-weight: 400;
  transition: opacity 0.2s ease, background 0.2s ease;
}

.btn-primary {
  background: var(--text);
  color: #FFFFFF;
}

.btn-primary:hover {
  opacity: 0.85;
}

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

.btn-ghost:hover {
  color: var(--text);
}

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

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

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

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

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

.redirect-body {
  min-height: 100vh;
}

.redirect-page {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 24px;
  gap: 20px;
}

.redirect-page .ad-label {
  font-size: 0.75rem;
  color: var(--muted);
  letter-spacing: 0.08em;
}

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

.redirect-notes {
  font-size: 0.8rem;
}

.spinner {
  width: 36px;
  height: 36px;
  border: 2px solid var(--border);
  border-top-color: var(--accent);
  border-radius: 50%;
  animation: spin 0.9s linear infinite;
}

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

.redirect-footer {
  padding: 24px;
}

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

  .burger {
    display: flex;
  }

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

  .cookie-actions {
    justify-content: center;
  }
}

.hero {
  position: relative;
  min-height: 350px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #1C1917;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(28, 25, 23, 0.55);
  z-index: 1;
}

.hero-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 48px 24px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.hero-ribbon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: min(92%, 720px);
  height: 60px;
  background: var(--accent);
  transform: rotate(-2deg);
  padding: 0 28px;
}

.hero-ribbon h1 {
  margin: 0;
  color: #FFFFFF;
  font-size: clamp(1.25rem, 3.5vw, 1.85rem);
  font-weight: 300;
  letter-spacing: 0.04em;
  text-align: center;
  white-space: nowrap;
}

.hero-sub {
  color: #FFFFFF;
  font-size: clamp(0.9rem, 2vw, 1.05rem);
  font-weight: 300;
  max-width: 480px;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.55);
  margin: 0;
  line-height: 1.55;
}

.offers-section {
  position: relative;
  padding: 88px 24px;
  background-image:
    linear-gradient(rgba(28, 25, 23, 0.78), rgba(28, 25, 23, 0.85)),
    url("/images/offers_bg/offers_bg.webp");
  background-size: cover;
  background-position: center;
}

.offers-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 50% at 50% 0%, rgba(52, 211, 153, 0.08), transparent 60%);
  pointer-events: none;
}

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

.offers-intro {
  text-align: center;
  margin-bottom: 48px;
}

.offers-intro h2 {
  color: #FFFFFF;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 200;
  margin-bottom: 10px;
}

.offers-intro p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.9rem;
}

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

.offer-card {
  background: var(--offer-bg);
  border: 1px solid var(--offer-border);
  border-radius: 16px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.offer-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.28);
}

.offer-logo {
  width: 200px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin: 0 auto;
  border-radius: 12px;
  background: #0d0d0d;
  padding: 8px;
  box-sizing: border-box;
  flex-shrink: 0;
}

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

.offer-bonus-group {
  text-align: center;
}

.offer-bonus {
  margin: 0;
  color: var(--offer-bonus);
  font-weight: 700;
  font-size: clamp(0.82rem, 2.8vw, 1rem);
  line-height: 1.35;
  overflow-wrap: anywhere;
  word-break: break-word;
}

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

.offer-desc {
  margin: 0;
  font-size: 0.75rem;
  color: #9ca3af;
  line-height: 1.45;
  text-align: center;
}

.offer-cta {
  display: block;
  margin-top: auto;
  padding: 12px 16px;
  background: var(--offer-cta-bg);
  color: var(--offer-cta-text);
  text-align: center;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: opacity 0.2s ease;
  text-decoration: none;
}

.offer-cta:hover {
  opacity: 0.9;
  color: var(--offer-cta-text);
}

.info-section {
  padding: 96px 24px;
  max-width: var(--max);
  margin: 0 auto;
  position: relative;
}

.info-section + .info-section {
  border-top: 1px solid var(--border);
}

.info-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(28, 25, 23, 0.06), transparent);
  pointer-events: none;
}

.info-section h2 {
  font-size: clamp(1.4rem, 2.5vw, 1.85rem);
  font-weight: 200;
  margin-bottom: 16px;
  color: var(--text);
}

.info-section > p {
  color: var(--muted);
  max-width: 640px;
  margin-bottom: 28px;
  font-size: 0.98rem;
}

.info-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.info-layout.reverse {
  direction: rtl;
}

.info-layout.reverse > * {
  direction: ltr;
}

.tip-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.tip-list li {
  color: var(--muted);
  font-size: 0.95rem;
  padding-left: 20px;
  position: relative;
}

.tip-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0.7;
}

.soft-panel {
  padding: 28px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  max-width: 560px;
}

.soft-panel p {
  color: var(--muted);
  margin: 0;
  font-size: 0.95rem;
}

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

.decor-narrow {
  max-width: 500px;
  margin-top: 8px;
}

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

.topic-cta {
  display: inline-block;
  margin-top: 20px;
  padding: 10px 0;
  color: var(--secondary);
  font-weight: 400;
  font-size: 0.95rem;
  border-bottom: 1px solid rgba(96, 165, 250, 0.35);
  text-decoration: none;
}

.topic-cta:hover {
  color: var(--primary);
  border-bottom-color: rgba(251, 113, 133, 0.45);
}

.topic-hero {
  padding: 64px 24px 40px;
  text-align: center;
  border-bottom: 1px solid var(--border);
}

.topic-hero h1 {
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  font-weight: 200;
  margin-bottom: 12px;
}

.topic-hero p {
  color: var(--muted);
  max-width: 520px;
  margin: 0 auto;
  font-size: 0.95rem;
}

.topic-layout {
  max-width: var(--max);
  margin: 0 auto;
  padding: 48px 24px 80px;
  display: grid;
  grid-template-columns: 1.4fr 0.6fr;
  gap: 40px;
  align-items: start;
}

.topic-layout.stack {
  grid-template-columns: 1fr;
  max-width: 760px;
}

.topic-layout.split-band {
  grid-template-columns: 1fr 1fr;
}

.prose-block p {
  color: var(--muted);
  margin-bottom: 16px;
  font-size: 0.95rem;
}

.prose-block h2 {
  font-size: 1.25rem;
  font-weight: 300;
  margin: 32px 0 12px;
  border-top: 1px solid var(--border);
  padding-top: 24px;
}

.prose-block h3 {
  font-size: 1.05rem;
  font-weight: 400;
  margin: 24px 0 10px;
}

.prose-block ul {
  list-style: disc;
  padding-left: 1.25rem;
  margin-bottom: 16px;
}

.prose-block li {
  color: var(--muted);
  margin-bottom: 8px;
  font-size: 0.95rem;
}

.side-rail {
  padding: 24px;
  border: 1px solid var(--border);
  background: var(--surface);
}

.side-rail h3 {
  font-size: 1rem;
  font-weight: 400;
  margin-bottom: 12px;
}

.side-rail ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.side-rail li {
  color: var(--muted);
  font-size: 0.9rem;
  padding-left: 16px;
  position: relative;
}

.side-rail li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0.7;
}

.pull-quote {
  margin: 28px 0;
  padding: 20px 0 20px 20px;
  border-left: 3px solid var(--accent);
  color: var(--text);
  font-size: 1.05rem;
  font-weight: 300;
}

.stat-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 28px 0;
  padding: 24px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.stat-band div {
  text-align: center;
}

.stat-band strong {
  display: block;
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--text);
}

.stat-band span {
  font-size: 0.8rem;
  color: var(--muted);
}

.fade-in {
  animation: fadeSoft 1.2s ease both;
}

@keyframes fadeSoft {
  from {
    opacity: 0.92;
  }
  to {
    opacity: 1;
  }
}

@media (max-width: 860px) {
  .hero {
    min-height: 220px;
  }

  .hero-ribbon {
    transform: none;
    height: auto;
    min-height: 52px;
    padding: 12px 20px;
  }

  .hero-ribbon h1 {
    white-space: normal;
  }

  .info-layout,
  .info-layout.reverse {
    grid-template-columns: 1fr;
    direction: ltr;
    gap: 28px;
  }

  .info-section {
    padding: 64px 24px;
  }

  .offers-section {
    padding: 64px 20px;
  }

  .offer-logo {
    width: 160px;
    height: 80px;
    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: clamp(0.78rem, 3.2vw, 0.92rem);
    overflow-wrap: anywhere;
    word-break: break-word;
  }

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

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

  .topic-layout,
  .topic-layout.split-band {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .stat-band {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 375px) {
  .decor-wrap {
    max-width: 100%;
    overflow: hidden;
  }

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

  .hero-bg {
    max-width: 100%;
  }

  .offer-logo {
    width: 140px;
    height: 70px;
    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.78rem;
  }
}
