.bonuses-hero {
  position: relative;
  padding: 64px 24px;
  background: var(--surface);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  max-width: 1100px;
  margin: 0 auto;
}

.bonuses-hero-img {
  max-width: 380px;
  width: 100%;
  height: auto;
  max-height: 280px;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid var(--border);
  flex-shrink: 0;
}

.bonuses-hero-inner {
  max-width: 600px;
  position: relative;
  z-index: 1;
}

.bonuses-hero h1 {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  margin-bottom: 12px;
}

.bonuses-hero p {
  font-family: var(--font-system);
  color: var(--muted);
}

.bonuses-columns {
  max-width: 1100px;
  margin: 0 auto;
  padding: 48px 24px 64px;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
}

.bonuses-main h2 {
  font-size: 1.25rem;
  color: var(--primary);
  margin: 32px 0 12px;
}

.bonuses-main h2:first-child {
  margin-top: 0;
}

.bonuses-main p {
  margin-bottom: 16px;
  line-height: 1.75;
}

.bonuses-main ul {
  margin: 0 0 16px 20px;
}

.bonuses-main li {
  margin-bottom: 8px;
}

.bonuses-rail {
  position: sticky;
  top: 80px;
  align-self: start;
}

.bonus-type-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 16px;
}

.bonus-type-card h3 {
  font-family: var(--font-system);
  font-size: 0.9rem;
  color: var(--accent);
  margin-bottom: 8px;
}

.bonus-type-card p {
  font-size: 0.85rem;
  color: var(--muted);
  margin: 0;
  line-height: 1.5;
}

.terms-table {
  width: 100%;
  border-collapse: collapse;
  font-family: var(--font-system);
  font-size: 13px;
  margin: 24px 0;
}

.terms-table th,
.terms-table td {
  padding: 10px 14px;
  border: 1px solid var(--border);
  text-align: left;
}

.terms-table th {
  background: var(--surface);
  color: var(--primary);
}

@media (max-width: 900px) {
  .bonuses-hero {
    flex-direction: column;
    padding: 48px 24px;
  }

  .bonuses-hero-img {
    max-width: 100%;
    max-height: 220px;
  }

  .bonuses-columns {
    grid-template-columns: 1fr;
  }

  .bonuses-rail {
    position: static;
  }
}
