/* Bonus Highlight Cards */
.bonus-highlights { padding: 24px 0 16px; }
.bonus-highlights .bonus-highlights-grid { display: grid; grid-template-columns: 1fr; gap: 12px; }
.bonus-highlights .bonus-card { background: linear-gradient(135deg, rgba(212, 168, 83, 0.08) 0%, rgba(196, 30, 58, 0.06) 100%); border: 1px solid rgba(212, 168, 83, 0.25); border-radius: 10px; padding: 24px; text-align: center; transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease; }
.bonus-highlights .bonus-card:hover { border-color: rgba(212, 168, 83, 0.5); box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3); transform: translateY(-3px); }
.bonus-highlights .bonus-card-logo { display: flex; justify-content: center; margin-bottom: 16px; }
.bonus-highlights .bonus-card-logo img { background: #ffffff; border-radius: 6px; padding: 8px 16px; height: 40px; width: auto; object-fit: contain; }
.bonus-highlights .bonus-card-amount { font-size: 32px; font-weight: 800; color: #d4a853; line-height: 1; margin-bottom: 8px; }
.bonus-highlights .bonus-card-offer { font-size: 15px; color: rgba(255, 255, 255, 0.8); margin-bottom: 16px; }
.bonus-highlights .bonus-card-details { display: flex; justify-content: center; gap: 24px; margin-bottom: 20px; }
.bonus-highlights .bonus-card-detail { display: flex; flex-direction: column; align-items: center; }
.bonus-highlights .bonus-card-detail-label { font-size: 10px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: rgba(255, 255, 255, 0.4); margin-bottom: 2px; }
.bonus-highlights .bonus-card-detail-value { font-size: 16px; font-weight: 800; color: #ffffff; }
.bonus-highlights .bonus-card-cta { display: inline-block; padding: 12px 36px; background: #c41e3a; color: #ffffff; font-size: 14px; font-weight: 700; letter-spacing: 0.5px; text-transform: uppercase; border-radius: 4px; text-decoration: none; transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease; box-shadow: 0 4px 16px rgba(196, 30, 58, 0.3); }
.bonus-highlights .bonus-card-cta:hover { background: #d4253f; transform: translateY(-2px); box-shadow: 0 6px 24px rgba(196, 30, 58, 0.4); color: #ffffff; }
.bonus-highlights .bonus-card-terms { font-size: 10px; line-height: 15px; color: rgba(255, 255, 255, 0.35); margin-top: 12px; margin-bottom: 0; }
@media (min-width: 768px) {
  .bonus-highlights .bonus-highlights-grid { grid-template-columns: 1fr 1fr; gap: 20px; }
  .bonus-highlights .bonus-card { padding: 32px; }
  .bonus-highlights .bonus-card-amount { font-size: 38px; }
}
