.bonus-page {
  padding-bottom: 64px;
}

.bonus-hero {
  padding: 48px 20px;
  background:
    radial-gradient(ellipse at 30% 50%, rgba(129, 140, 248, 0.15) 0%, transparent 60%),
    radial-gradient(ellipse at 70% 50%, rgba(34, 211, 238, 0.1) 0%, transparent 55%);
  text-align: center;
}

.bonus-hero h1 {
  font-size: 36px;
  font-weight: 900;
  margin-bottom: 12px;
  color: var(--text);
}

.bonus-hero p {
  font-size: 16px;
  color: var(--muted);
  max-width: 600px;
  margin: 0 auto;
}

.bonus-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 48px 20px;
}

.bonus-grid {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 40px;
}

.bonus-article h2 {
  font-size: 22px;
  font-weight: 700;
  color: var(--secondary);
  margin: 28px 0 12px;
}

.bonus-article h2:first-child {
  margin-top: 0;
}

.bonus-article p {
  font-size: 15px;
  line-height: 1.75;
  margin-bottom: 16px;
}

.bonus-article ul {
  margin: 12px 0 16px 24px;
}

.bonus-article li {
  margin-bottom: 8px;
  font-size: 15px;
}

.bonus-table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0;
}

.bonus-table th,
.bonus-table td {
  padding: 12px 16px;
  text-align: left;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
}

.bonus-table th {
  background: rgba(129, 140, 248, 0.12);
  color: var(--accent);
  font-weight: 700;
}

.bonus-table td {
  color: var(--muted);
}

.bonus-visual {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.bonus-visual img {
  max-width: 100%;
  max-height: 320px;
  border-radius: 16px;
  object-fit: cover;
  border: 2px solid var(--border);
}

.bonus-highlight {
  padding: 20px;
  background: rgba(129, 140, 248, 0.1);
  border-radius: 12px;
  border: 1px solid var(--border);
}

.bonus-highlight h3 {
  font-size: 15px;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 8px;
}

.bonus-highlight p {
  font-size: 13px;
  color: var(--muted);
  margin: 0;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .bonus-grid {
    grid-template-columns: 1fr;
  }
}
