#offers .content-area {
  max-width: 420px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.125rem;
  align-items: stretch;
}

#offers .card {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(30, 41, 59, 0.06);
  border: 1px solid #e2e8f0;
  background: #ffffff;
  padding: 1.25rem 1.375rem 1.375rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.55rem;
}

#offers .logo-placeholder {
  flex-shrink: 0;
  width: 96px;
  height: 96px;
  border-radius: 12px;
  overflow: hidden;
  background: #f8fafc;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

#offers .offer-name {
  margin: 0;
  font-size: 1.15rem;
  font-weight: 700;
  color: #1e293b;
  font-family: Georgia, "Palatino Linotype", Palatino, "Times New Roman", serif;
}

#offers .bonus-text {
  margin: 0;
  font-size: 0.9375rem;
  font-weight: 600;
  line-height: 1.4;
  color: #1e293b;
  overflow-wrap: anywhere;
  word-break: break-word;
  hyphens: auto;
  max-width: 100%;
  font-family: system-ui, -apple-system, "Segoe UI", sans-serif;
}

#offers .bonus-terms {
  margin: 0;
  font-size: 0.6875rem;
  color: #64748b;
  line-height: 1.4;
  font-family: system-ui, -apple-system, "Segoe UI", sans-serif;
}

#offers .offer-desc {
  margin: 0;
  font-size: 0.75rem;
  color: #64748b;
  line-height: 1.45;
  font-family: system-ui, -apple-system, "Segoe UI", sans-serif;
}

#offers .offer-rating {
  margin: 0;
  font-size: 0.9rem;
  font-weight: 700;
  color: #1e293b;
  font-family: system-ui, -apple-system, "Segoe UI", sans-serif;
}

#offers .stars {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.1875rem;
}

#offers .star {
  width: 14px;
  height: 12px;
  color: #f59e0b;
}

#offers .offer-feature {
  margin: 0;
  font-size: 0.8125rem;
  font-weight: 600;
  color: #64748b;
  font-family: system-ui, -apple-system, "Segoe UI", sans-serif;
}

#offers .action-area {
  margin-top: 0.35rem;
  width: 100%;
}

#offers .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  padding: 0.8125rem 1.125rem;
  font-size: 0.9375rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #fff;
  background: #4f46e5;
  border: none;
  border-radius: 10px;
  text-decoration: none;
  cursor: pointer;
  font-family: system-ui, -apple-system, "Segoe UI", sans-serif;
}

#offers .btn:hover {
  background: #4338ca;
  color: #fff;
  opacity: 1;
}

@media (max-width: 767px) {
  #offers .logo-placeholder {
    width: 72px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
  }

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

  #offers .bonus-text {
    font-size: 0.875rem;
    overflow-wrap: anywhere;
    word-break: break-word;
  }
}
.hero {
  position: relative;
  background: var(--bg);
  padding: 60px 24px 80px;
  min-height: 300px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 60% at 50% 30%, rgba(201, 162, 39, 0.1), transparent 65%),
    linear-gradient(180deg, var(--surface) 0%, var(--bg) 100%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 720px;
}

.hero-brand {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 5.5vw, 3.4rem);
  color: var(--text);
  margin-bottom: 14px;
  letter-spacing: 0.06em;
}

.hero-brand span {
  color: var(--gold);
}

.hero-lead {
  color: var(--muted);
  font-size: 1.05rem;
  margin-bottom: 28px;
  line-height: 1.7;
}

.hero-cta {
  display: inline-flex;
  gap: 12px;
}

.hero-cta a {
  display: inline-block;
  padding: 14px 28px;
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold);
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.875rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: background 0.4s ease, color 0.4s ease, opacity 0.4s ease;
}

.hero-cta a:hover {
  background: var(--gold);
  color: var(--bg);
  opacity: 1;
}

.hero-wave {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  width: 100%;
  height: 70px;
  z-index: 3;
  line-height: 0;
}

.hero-wave svg {
  width: 100%;
  height: 100%;
  display: block;
}

.offers-section {
  position: relative;
  padding: 64px 24px 72px;
  background-color: var(--surface);
  background-image:
    linear-gradient(180deg, rgba(15, 15, 15, 0.72) 0%, rgba(26, 26, 26, 0.88) 100%),
    url("/images/offers_bg/offers_bg.webp");
  background-size: cover;
  background-position: center;
}

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

.offers-section h2 {
  text-align: center;
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  margin-bottom: 8px;
  color: var(--text);
}

.offers-lead {
  text-align: center;
  color: var(--muted);
  font-size: 0.9375rem;
  margin-bottom: 36px;
}

.info-block {
  padding: 64px 24px;
  position: relative;
}

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

.info-block h2 {
  font-size: clamp(1.4rem, 2.8vw, 1.9rem);
  margin-bottom: 16px;
  color: var(--text);
}

.info-block p {
  color: var(--muted);
  margin-bottom: 1rem;
  max-width: 720px;
}

.info-cta {
  display: inline-block;
  margin-top: 18px;
  padding: 12px 22px;
  border: 1px solid var(--gold);
  color: var(--gold);
  border-radius: 6px;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  transition: background 0.4s ease, color 0.4s ease, opacity 0.4s ease;
}

.info-cta:hover {
  background: var(--gold);
  color: var(--bg);
  opacity: 1;
}

#info-1 {
  background: var(--bg);
}

#info-1 .info-inner {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: center;
}

#info-1 .support-rail {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 28px;
  border-left: 3px solid var(--gold);
}

#info-1 .support-rail li {
  color: var(--muted);
  margin-bottom: 10px;
  margin-left: 1.1rem;
}

#info-2 {
  background: var(--surface);
}

#info-2 .info-inner {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

#info-2 .step-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

#info-2 .step-item {
  padding: 20px;
  border-top: 2px solid var(--gold);
  background: rgba(255, 255, 255, 0.02);
}

#info-2 .step-item strong {
  display: block;
  color: var(--gold);
  font-family: var(--font-serif);
  margin-bottom: 8px;
  font-size: 1.05rem;
}

#info-2 .step-item p {
  font-size: 0.875rem;
  margin: 0;
}

#info-2 .decor-wrap {
  margin-top: 8px;
  max-width: 420px;
}

#info-3 {
  background:
    linear-gradient(135deg, rgba(15, 15, 15, 0.92), rgba(26, 26, 26, 0.95)),
    url("/images/decorative/decor_1.jpg");
  background-size: cover;
  background-position: center;
}

#info-3 .info-inner {
  max-width: 680px;
  background: rgba(15, 15, 15, 0.78);
  padding: 36px 32px;
  border-radius: 12px;
  border: 1px solid var(--border);
  backdrop-filter: blur(4px);
}

#info-3 .roulette-chips {
  display: flex;
  gap: 10px;
  margin-top: 16px;
  flex-wrap: wrap;
}

#info-3 .chip {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px dashed var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  color: var(--gold);
  font-weight: 700;
}

#info-4 {
  background: var(--bg);
}

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

#info-4 .bonus-cell {
  padding: 24px;
  background: var(--surface);
  border-radius: 10px;
  border-bottom: 2px solid var(--accent);
}

#info-4 .bonus-cell h3 {
  color: var(--primary);
  font-size: 1.1rem;
  margin-bottom: 8px;
}

#info-4 .bonus-cell p {
  margin: 0;
  font-size: 0.9rem;
}

#info-5 {
  background: var(--surface);
}

#info-5 .games-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: start;
}

#info-5 .games-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

#info-5 .games-list li {
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  color: var(--muted);
  display: flex;
  justify-content: space-between;
  gap: 12px;
}

#info-5 .games-list span {
  color: var(--gold);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

#info-5 .decor-band {
  height: 220px;
  max-width: 500px;
  background-image: url("/images/decorative/decor_2.webp");
  background-size: cover;
  background-position: center;
  border-radius: 8px;
  border: 1px solid var(--border);
}

#info-6 {
  background: var(--bg);
  text-align: center;
}

#info-6 .info-inner {
  max-width: 700px;
}

#info-6 p {
  margin-left: auto;
  margin-right: auto;
}

#info-6 .timeline {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  margin-top: 28px;
  position: relative;
}

#info-6 .timeline::before {
  content: "";
  position: absolute;
  top: 14px;
  left: 8%;
  right: 8%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

#info-6 .tl-item {
  flex: 1;
  position: relative;
  z-index: 1;
}

#info-6 .tl-dot {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--surface);
  border: 2px solid var(--gold);
  margin: 0 auto 10px;
}

#info-6 .tl-item p {
  font-size: 0.8rem;
  margin: 0;
}

#info-7 {
  background: var(--surface);
}

#info-7 .basics-layout {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 28px;
  align-items: start;
}

#info-7 .vert-label {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-family: var(--font-serif);
  font-size: 1.4rem;
  color: var(--gold);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-right: 1px solid var(--border);
  padding-right: 20px;
  height: 200px;
}

#info-7 .basics-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

#info-7 .basics-cols h3 {
  color: var(--primary);
  font-size: 1rem;
  margin-bottom: 8px;
}

#info-8 {
  background: var(--bg);
}

#info-8 .dealer-quote {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  color: var(--primary);
  border-left: 3px solid var(--accent);
  padding: 8px 0 8px 24px;
  margin: 24px 0;
  max-width: 640px;
  line-height: 1.5;
}

#info-8 .dealer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 20px;
}

#info-8 .dealer-tag {
  text-align: center;
  padding: 16px 10px;
  background: var(--surface);
  border: 1px solid var(--border);
  font-size: 0.8rem;
  color: var(--muted);
  letter-spacing: 0.04em;
}

#info-9 {
  background: var(--surface);
}

#info-9 .mobile-layout {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 36px;
  align-items: center;
}

#info-9 .phone-frame {
  border: 2px solid var(--border);
  border-radius: 28px;
  padding: 28px 20px;
  background: var(--bg);
  max-width: 280px;
  margin: 0 auto;
  overflow: hidden;
  text-align: center;
  min-height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
  box-shadow: inset 0 0 40px rgba(201, 162, 39, 0.08);
}

#info-9 .phone-screen-label {
  font-family: var(--font-serif);
  color: var(--gold);
  font-size: 1.1rem;
}

#info-9 .phone-screen-note {
  font-size: 0.85rem;
  margin: 0;
  max-width: none;
}

#info-9 ul {
  margin: 16px 0 0 1.2rem;
  color: var(--muted);
}

#info-9 li {
  margin-bottom: 8px;
}

#info-10 {
  background: var(--bg);
}

#info-10 .withdraw-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  margin-top: 28px;
  border: 1px solid var(--border);
}

#info-10 .withdraw-cell {
  background: var(--surface);
  padding: 28px 20px;
  text-align: center;
}

#info-10 .withdraw-cell strong {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--gold);
  margin-bottom: 8px;
}

#info-10 .withdraw-cell p {
  margin: 0;
  font-size: 0.85rem;
  max-width: none;
}

@media (max-width: 800px) {
  .hero {
    padding: 32px 20px 48px;
    min-height: 240px;
  }

  .hero-wave {
    height: 40px;
  }

  #info-1 .info-inner,
  #info-2 .step-row,
  #info-4 .bonus-grid,
  #info-5 .games-split,
  #info-7 .basics-layout,
  #info-7 .basics-cols,
  #info-8 .dealer-grid,
  #info-9 .mobile-layout,
  #info-10 .withdraw-band {
    grid-template-columns: 1fr;
  }

  #info-5 .decor-band {
    width: 100%;
    max-width: 100%;
    height: 180px;
  }

  #info-3 .info-inner {
    padding: 24px 18px;
    max-width: 100%;
  }

  #info-6 .timeline {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  #info-6 .timeline::before {
    display: none;
  }

  #info-7 .vert-label {
    writing-mode: horizontal-tb;
    transform: none;
    height: auto;
    border-right: none;
    border-bottom: 1px solid var(--border);
    padding: 0 0 12px;
  }

  #info-9 .phone-frame {
    max-width: 100%;
  }
}

@media (max-width: 375px) {
  .offers-section,
  .info-block,
  .hero {
    padding-left: 16px;
    padding-right: 16px;
  }

  #info-5 .decor-band {
    height: 160px;
    max-width: 100%;
  }
}
