#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;
}

#offers .card-inner {
  background: #ffffff;
  padding: 1.125rem 1.375rem 1.375rem;
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
}

#offers .logo-rating-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: nowrap;
}

#offers .logo-placeholder {
  flex-shrink: 0;
  width: 72px;
  height: 72px;
  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%;
  max-width: none;
  max-height: none;
  object-fit: contain;
  object-position: center;
  display: block;
  background: transparent;
}

#offers .rating {
  display: flex;
  flex-direction: column;
  gap: 0.3125rem;
  align-items: flex-start;
  flex: 1;
  min-width: 0;
}

#offers .rating-value {
  font-weight: 700;
  font-size: 1.125rem;
  color: #1e293b;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  font-variant: normal;
  letter-spacing: normal;
}

#offers .rating-max {
  font-size: 0.875rem;
  color: #64748b;
  font-weight: 400;
}

#offers .rating .rating-value,
#offers .rating .rating-max {
  display: inline;
}

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

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

#offers .domain {
  margin: 0;
  font-size: 0.8125rem;
  font-weight: 600;
  color: #64748b;
  letter-spacing: 0.02em;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  font-variant: normal;
}

#offers .divider {
  margin: 0.25rem 0 0;
  border: none;
  border-top: 1px solid #e2e8f0;
}

#offers .bonus-info {
  display: flex;
  flex-direction: column;
  gap: 0.3125rem;
}

#offers .bonus-label {
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #64748b;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  font-variant: normal;
}

#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", Roboto, sans-serif;
  font-variant: normal;
  letter-spacing: normal;
}

#offers .bonus-terms {
  margin: 0;
  font-size: 0.6875rem;
  color: #64748b;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  font-variant: normal;
  letter-spacing: normal;
}

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

#offers .action-area {
  margin-top: 0.375rem;
}

#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", Roboto, sans-serif;
  font-variant: normal;
}

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

#offers .rank-ribbon {
  position: absolute;
  top: 0;
  right: 0;
  width: 38px;
  height: 38px;
  background: #4f46e5;
  border-radius: 0 14px 0 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.125rem;
}

#offers .rank-num {
  font-size: 0.875rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  font-variant: normal;
}

@media (min-width: 380px) {
  #offers .content-area {
    padding: 0 0.5rem;
    gap: 1.25rem;
  }

  #offers .card-inner {
    padding: 1.25rem 1.5rem 1.5rem;
    gap: 0.9375rem;
  }

  #offers .logo-rating-row {
    gap: 1.125rem;
  }

  #offers .divider {
    margin: 0.3125rem 0 0;
  }

  #offers .action-area {
    margin-top: 0.5rem;
  }
}

@media (max-width: 767px) {
  #offers .logo-placeholder {
    width: 56px;
    height: 56px;
    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;
    line-height: 1.45;
    overflow-wrap: anywhere;
    word-break: break-word;
  }
}
.info-section {
  position: relative;
  padding: 56px 20px;
  overflow: hidden;
}

.info-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(ellipse at 30% 20%, rgba(134, 239, 172, 0.06) 0%, transparent 55%);
  z-index: 0;
}

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

.info-section h2 {
  font-size: 1.65rem;
  font-weight: 800;
  margin-bottom: 16px;
  color: var(--text);
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
}

.info-section p {
  color: rgba(240, 253, 244, 0.9);
  margin-bottom: 12px;
  max-width: 720px;
}

#info-1 {
  background: linear-gradient(180deg, rgba(6, 78, 59, 0.35) 0%, transparent 100%);
}

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

#info-1 .criteria-list {
  list-style: none;
  padding: 0;
  display: grid;
  gap: 10px;
}

#info-1 .criteria-list li {
  padding: 12px 16px;
  background: linear-gradient(180deg, rgba(6, 78, 59, 0.8) 0%, rgba(20, 83, 45, 0.7) 100%);
  border: 1px solid var(--border);
  border-radius: 10px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 4px 12px rgba(0, 0, 0, 0.25);
}

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

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

#info-2 .bonus-tile {
  padding: 18px;
  border-radius: 12px;
  background: linear-gradient(160deg, var(--surface) 0%, #043322 100%);
  border: 1px solid var(--border);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 6px 16px rgba(0, 0, 0, 0.3);
}

#info-2 .bonus-tile strong {
  display: block;
  color: var(--accent);
  margin-bottom: 8px;
}

#info-3 {
  padding: 0;
}

#info-3 .slots-band {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 320px;
}

#info-3 .slots-copy {
  padding: 56px 36px;
  background: linear-gradient(135deg, var(--bg) 0%, var(--surface) 100%);
}

#info-3 .slots-visual {
  background-image: url("/images/decorative/decor_1.webp");
  background-size: cover;
  background-position: center;
  position: relative;
}

#info-3 .slots-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(5, 46, 22, 0.55) 0%, transparent 60%);
}

#info-4 {
  background: linear-gradient(90deg, rgba(20, 83, 45, 0.5) 0%, transparent 100%);
}

#info-4 .quote-layout {
  display: flex;
  gap: 28px;
  align-items: flex-start;
}

#info-4 .pull-quote {
  flex: 0 0 220px;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1.35;
  border-left: 4px solid var(--primary);
  padding-left: 16px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

#info-5 {
  background: rgba(6, 78, 59, 0.25);
}

#info-5 .variant-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 18px;
}

#info-5 .variant-card {
  padding: 16px 18px;
  border-radius: 12px;
  background: linear-gradient(180deg, #0a3d28 0%, var(--bg) 100%);
  border: 1px solid var(--border);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

#info-5 .variant-card h3 {
  color: var(--muted);
  font-size: 1rem;
  margin-bottom: 8px;
}

#info-6 .safe-rail {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 28px;
  align-items: start;
}

#info-6 .safe-aside {
  padding: 20px;
  border-radius: 14px;
  background: linear-gradient(180deg, var(--primary) 0%, var(--secondary) 100%);
  color: var(--bg);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.35), 0 8px 20px rgba(0, 0, 0, 0.35);
}

#info-6 .safe-aside h3 {
  margin-bottom: 10px;
  color: var(--bg);
}

#info-6 .safe-aside p {
  color: rgba(5, 46, 22, 0.9);
  max-width: none;
}

#info-7 .beyond-mosaic {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 20px;
  margin-top: 18px;
}

#info-7 .beyond-copy {
  padding: 8px 0;
}

#info-7 .beyond-panel {
  padding: 22px;
  border-radius: 14px;
  background: linear-gradient(160deg, rgba(134, 239, 172, 0.18) 0%, rgba(6, 78, 59, 0.85) 55%);
  border: 1px solid var(--border);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12), 0 10px 24px rgba(0, 0, 0, 0.35);
}

#info-7 .beyond-stat {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 14px;
  max-width: none;
}

#info-7 .beyond-panel ul {
  padding-left: 1.1rem;
  color: rgba(240, 253, 244, 0.9);
}

#info-8 {
  background: linear-gradient(180deg, var(--surface) 0%, var(--bg) 100%);
}

#info-8 .pros-cons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 18px;
}

#info-8 .pc-col {
  padding: 20px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: linear-gradient(160deg, rgba(6, 78, 59, 0.7) 0%, rgba(5, 46, 22, 0.9) 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

#info-8 .pc-col h3 {
  color: var(--accent);
  margin-bottom: 10px;
}

#info-8 .pc-col ul {
  padding-left: 1.1rem;
}

#info-9 .license-steps {
  counter-reset: step;
  list-style: none;
  padding: 0;
  margin: 18px 0 0;
  display: grid;
  gap: 12px;
}

#info-9 .license-steps li {
  counter-increment: step;
  position: relative;
  padding: 16px 16px 16px 64px;
  border-radius: 12px;
  background: rgba(6, 78, 59, 0.55);
  border: 1px solid var(--border);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
}

#info-9 .license-steps li::before {
  content: counter(step);
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  color: var(--bg);
  background: linear-gradient(180deg, var(--accent) 0%, var(--primary) 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.4), 0 2px 8px rgba(34, 197, 94, 0.35);
}

#info-10 {
  background: linear-gradient(135deg, rgba(20, 83, 45, 0.45) 0%, rgba(5, 46, 22, 0.2) 100%);
}

#info-10 .pay-table {
  width: 100%;
  max-width: 720px;
  border-collapse: collapse;
  margin-top: 18px;
  background: rgba(6, 78, 59, 0.4);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

#info-10 .pay-table th,
#info-10 .pay-table td {
  padding: 12px 14px;
  text-align: left;
  border-bottom: 1px solid var(--border);
  font-size: 0.9rem;
}

#info-10 .pay-table th {
  background: rgba(34, 197, 94, 0.15);
  color: var(--accent);
}

#info-10 .pay-visual {
  margin-top: 24px;
  height: 160px;
  max-width: 500px;
  border-radius: 12px;
  overflow: hidden;
  background-image: url("/images/decorative/decor_2.webp");
  background-size: cover;
  background-position: center;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.35);
}

@media (max-width: 860px) {
  #info-1 .layout-split,
  #info-3 .slots-band,
  #info-4 .quote-layout,
  #info-5 .variant-cards,
  #info-6 .safe-rail,
  #info-7 .beyond-mosaic,
  #info-8 .pros-cons,
  #info-2 .bonus-grid {
    grid-template-columns: 1fr;
    flex-direction: column;
  }

  #info-3 .slots-visual {
    min-height: 180px;
    max-width: 100%;
    overflow: hidden;
  }

  #info-4 .pull-quote {
    flex: none;
  }

  #info-10 .pay-visual {
    max-width: 100%;
    height: 140px;
  }

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

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

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

  #info-3 .slots-visual {
    min-height: 140px;
  }

  #info-10 .pay-visual {
    height: 120px;
  }

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