/* ==========================================================================
   Bonuses page — main content
   ========================================================================== */

/* Real layout wrapper (from site CSS) — main column fills remaining height */
.styles_layout__Akb41 .styles_main__wrapper__Lh0So {
  display: flex;
  flex-direction: column;
  flex-grow: 3;
}

.bonuses-page {
  max-width: 1200px;
  margin: auto;
  padding: 30px;
  color: #fff;
}

/* HERO */

.hero-banner {
  position: relative;
  height: 260px;
  border-radius: 20px;
  overflow: hidden;

  background:
    radial-gradient(circle at center,
      rgba(95, 73, 170, .3),
      transparent 60%),
    #1c1d2d;
}

.hero-sign {
  position: absolute;
  left: 40px;
  top: 20px;
  height: 190px;
}

.hero-character {
  position: absolute;
  right: 40px;
  bottom: 0;
  height: 260px;
}

.bonus-subtitle {
  margin: 20px 0 25px;
  font-size: 22px;
  font-weight: 700;
}

.bonus-subtitle span {
  color: #f2bc62;
}

/* DAILY BONUS */

.bonus-grid {
  display: grid;
  grid-template-columns: 2fr 1.2fr;
  gap: 20px;
}

.daily-bonus,
.bonus-case {
  background: #23253b;
  border: 1px solid #343654;
  border-radius: 20px;
}

.daily-bonus {
  padding: 25px;
}

.daily-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.daily-header h2 {
  margin: 0;
}

.rules-btn {
  border: none;
  background: #f0bf67;
  color: #111;
  font-weight: 700;
  padding: 12px 20px;
  border-radius: 10px;
  cursor: pointer;
}

.days-list {
  display: flex;
  align-items: center;
  margin-top: 30px;
}

.day-item {
  width: 70px;
  height: 70px;

  background: #34375a;

  display: flex;
  align-items: center;
  justify-content: center;

  transform: rotate(45deg);

  border-radius: 14px;

  font-weight: 700;

  color: #d4d6e7;
}

.day-item * {
  transform: rotate(-45deg);
}

.line {
  width: 35px;
  height: 3px;
  background: #4a4d75;
}

.gift {
  font-size: 24px;
}

/* CASE */

.bonus-case {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  min-height: 250px;
}

.bonus-case img {
  max-width: 100%;
  max-height: 230px;
}

.claim-btn {
  position: absolute;
  bottom: 15px;

  width: 85%;
  height: 46px;

  border-radius: 10px;

  background: transparent;
  border: 1px solid #4f5376;

  color: white;
  cursor: pointer;
}

/* SECTION */

.section-title {
  text-align: center;
  margin: 40px 0 25px;
  text-transform: uppercase;
}

/* SOCIAL */

.social-bonuses {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.social-card {
  position: relative;

  overflow: hidden;

  min-height: 150px;

  background:
    linear-gradient(135deg,
      #35386a,
      #2a3052);

  border-radius: 18px;

  padding: 20px;
}

.telegram {
  background:
    linear-gradient(135deg,
      #33476d,
      #243855);
}

.card-content {
  position: relative;
  z-index: 2;
}

.card-content h3 {
  margin: 0;
  font-size: 18px;
  color: #cfd2e6;
}

.card-content span {
  color: #7eff72;
}

.card-content p {
  margin-top: 40px;
  color: #9f7a44;
}

.social-card img {
  position: absolute;
  right: -20px;
  bottom: -20px;

  width: 180px;
  opacity: .95;
}

/* RESPONSIVE */

@media (max-width: 768px) {
  .bonus-grid,
  .social-bonuses {
    grid-template-columns: 1fr;
  }

  .hero-sign {
    height: 130px;
  }

  .hero-character {
    height: 200px;
  }
}
