#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 .logo-placeholder img,
#offers .offer-logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
  max-width: none;
  max-height: none;
  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 .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 .logo-placeholder img,
  #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;
  overflow: hidden;
}

.hero-inner {
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  text-align: center;
}

.hero-art {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: min(720px, 90%);
  height: auto;
  max-height: 420px;
  object-fit: contain;
  opacity: 0.18;
  filter: grayscale(1);
  pointer-events: none;
  z-index: 0;
}

.hero h1 {
  position: relative;
  font-family: var(--font-sans);
  font-weight: 800;
  font-size: clamp(2rem, 4.4vw, 3.1rem);
  color: var(--text);
  letter-spacing: -0.02em;
  line-height: 1.12;
  margin-bottom: 14px;
}

.hero-sub {
  position: relative;
  font-weight: 400;
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 680px;
  margin: 0 auto;
}

.hero-meta {
  position: relative;
  margin-top: 18px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--secondary);
}

.hero-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--primary);
  display: inline-block;
  animation: status-blink 1.4s steps(2, end) infinite;
}

.offers-section {
  position: relative;
  padding: 56px 24px 64px;
  background-color: var(--secondary);
  background-image:
    linear-gradient(180deg, rgba(21, 96, 100, 0.88), rgba(15, 31, 28, 0.9)),
    url("/images/offers_bg/offers_bg.webp");
  background-size: cover;
  background-position: center;
}

.offers-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, transparent 0 12px, rgba(0, 196, 154, 0.12) 12px 13px, transparent 13px),
    linear-gradient(180deg, rgba(0, 196, 154, 0.08), transparent 40%);
  background-size: 48px 100%, 100% 100%;
}

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

.offers-title {
  text-align: center;
  font-family: var(--font-mono);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 1.05rem;
  margin-bottom: 10px;
  color: var(--surface);
}

.offers-lead {
  text-align: center;
  color: rgba(249, 252, 251, 0.78);
  max-width: 680px;
  margin: 0 auto 28px;
  font-size: 0.92rem;
}

.offers-lead a {
  color: var(--accent);
  text-decoration: underline;
}

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

.info-section::before {
  content: "";
  position: absolute;
  pointer-events: none;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  border: 1px solid rgba(0, 196, 154, 0.22);
  box-shadow: 0 0 0 8px rgba(0, 196, 154, 0.06), 0 0 28px rgba(0, 196, 154, 0.12);
  right: 6%;
  top: 18px;
}

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

.info-section h2 {
  font-size: 1.45rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  margin-bottom: 14px;
  font-family: var(--font-mono);
}

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

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

.layout-steps .step-list {
  list-style: none;
  display: grid;
  gap: 12px;
  margin-top: 16px;
}

.layout-steps .step-list li {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 12px;
  align-items: start;
  color: var(--muted);
}

.layout-steps .step-list span {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--surface);
  background: var(--secondary);
  box-shadow: 0 0 12px rgba(0, 196, 154, 0.3);
}

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

.bank-card {
  background: var(--surface);
  padding: 16px;
  border: 1px solid var(--border);
  box-shadow: 0 10px 28px rgba(21, 96, 100, 0.08);
}

.bank-card h3 {
  font-size: 0.92rem;
  font-family: var(--font-mono);
  margin-bottom: 6px;
  color: var(--text);
}

.bank-card p {
  font-size: 0.85rem;
  margin: 0;
}

.layout-mosaic {
  background: var(--surface);
}

.layout-mosaic .mosaic-bg {
  min-height: 160px;
  margin-top: 18px;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  background-image:
    linear-gradient(100deg, rgba(249, 252, 251, 0.82), rgba(21, 96, 100, 0.28)),
    url("/images/decorative/decor_3.webp");
  background-size: cover;
  background-position: center;
  padding: 22px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.mosaic-chip {
  background: rgba(255, 255, 255, 0.88);
  padding: 12px;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--secondary);
  border: 1px solid var(--border);
}

.tip-list {
  list-style: none;
  display: grid;
  gap: 10px;
  margin-top: 14px;
}

.tip-list li {
  padding: 12px 14px 12px 42px;
  background: var(--surface);
  border-left: 3px solid var(--primary);
  color: var(--muted);
  position: relative;
}

.tip-list li::before {
  content: "";
  position: absolute;
  left: 14px;
  top: 18px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 8px var(--accent);
  animation: status-blink 1.8s steps(2, end) infinite;
}

.quote-split {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 28px;
  align-items: center;
}

.pull-quote {
  font-family: var(--font-mono);
  font-size: 1.05rem;
  color: var(--secondary);
  border-top: 1px solid var(--primary);
  border-bottom: 1px solid var(--primary);
  padding: 18px 0;
  letter-spacing: 0.03em;
}

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

.rtp-col {
  background: var(--surface);
  padding: 18px;
  border: 1px solid var(--border);
}

.rtp-col h3 {
  font-family: var(--font-mono);
  font-size: 0.88rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.pill {
  padding: 8px 12px;
  border: 1px solid var(--border);
  background: var(--surface);
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--secondary);
}

.timeline {
  display: grid;
  gap: 0;
  margin-top: 16px;
  border-left: 2px solid var(--primary);
  padding-left: 18px;
}

.timeline div {
  padding: 10px 0 18px;
  color: var(--muted);
  position: relative;
}

.timeline div::before {
  content: "";
  position: absolute;
  left: -24px;
  top: 16px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--secondary);
  box-shadow: 0 0 0 3px rgba(0, 196, 154, 0.2);
}

.live-panel {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 24px;
  align-items: center;
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 22px;
  margin-top: 8px;
}

.live-gauge {
  width: 92px;
  height: 92px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 50%, var(--surface) 0 28px, transparent 29px),
    conic-gradient(var(--primary) 0 70%, rgba(21, 96, 100, 0.18) 70% 100%);
  box-shadow: 0 0 20px rgba(0, 196, 154, 0.28);
}

.alt-band {
  background: rgba(21, 96, 100, 0.05);
}

.alt-band::before {
  left: 6%;
  right: auto;
}

@media (max-width: 860px) {
  .layout-split,
  .quote-split,
  .rtp-compare,
  .live-panel,
  .bank-grid,
  .layout-mosaic .mosaic-bg {
    grid-template-columns: 1fr;
  }

  .hero {
    padding: 32px 20px;
  }

  .hero-art {
    display: none;
  }
}
