.hero-strip {
  width: 100%;
  height: 120px;
  overflow: hidden;
  background-image: url("/images/decorative/decor_1.webp");
  background-size: cover;
  background-position: center;
  position: relative;
}

.hero-strip::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, var(--bg) 100%);
}

.hero-section {
  padding: 40px 20px 56px;
  text-align: center;
  background: var(--bg);
  position: relative;
}

.hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(220, 38, 38, 0.4), transparent);
}

.hero-inner {
  max-width: 760px;
  margin: 0 auto;
}

.hero-inner h1 {
  font-size: clamp(1.75rem, 4.5vw, 2.75rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.hero-inner p {
  font-size: 17px;
  color: var(--muted);
  max-width: 620px;
  margin: 0 auto;
}

.offers-section {
  position: relative;
  padding: 56px 20px;
  background-image:
    linear-gradient(180deg, rgba(11, 11, 11, 0.92) 0%, rgba(11, 11, 11, 0.88) 100%),
    url("/images/offers_bg/offers_bg.svg");
  background-size: cover;
  background-position: center;
}

.offers-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(220, 38, 38, 0.08) 0%, transparent 55%);
  pointer-events: none;
}

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

.offers-inner h2 {
  font-size: clamp(1.35rem, 3vw, 1.75rem);
  text-align: center;
  margin-bottom: 8px;
}

.offers-inner h2.section-glow-heading {
  display: block;
  text-align: center;
}

.offers-sub {
  color: var(--muted);
  font-size: 15px;
  text-align: center;
  margin-bottom: 36px;
}

.offers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}

.offer-card {
  background: #1a1a2e;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.35s var(--smooth), box-shadow 0.35s var(--smooth);
}

.offer-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

.offer-card-logo {
  width: 100%;
  height: 90px;
  background: #fff;
  padding: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.offer-card-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
}

.offer-card-body {
  padding: 18px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.offer-card-name {
  font-size: 1.1rem;
  margin-bottom: 10px;
  color: #fff;
}

.offer-bonus-group {
  margin-bottom: 10px;
}

.offer-bonus {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: #fbbf24;
  line-height: 1.35;
  word-break: break-word;
  overflow-wrap: break-word;
}

.offer-terms {
  display: block;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 4px;
}

.offer-desc {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.4;
  margin-bottom: 14px;
}

.offer-cta {
  margin-top: auto;
  padding: 11px 16px;
  background: #2563eb;
  color: #fff;
  border: none;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  display: block;
  transition: background 0.35s var(--smooth);
}

.offer-cta:hover {
  background: #1d4ed8;
  color: #fff;
}

.info-section {
  padding: 56px 20px;
  position: relative;
}

.info-section:nth-child(even) {
  background: rgba(21, 21, 21, 0.5);
}

.info-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.info-inner h2 {
  font-size: clamp(1.25rem, 3vw, 1.6rem);
  margin-bottom: 16px;
}

.layout-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.payment-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 20px 0;
}

.payment-pill {
  padding: 8px 18px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--pill);
  font-size: 13px;
  color: var(--text);
}

.sites-table-wrap {
  overflow-x: auto;
  margin: 24px 0;
  border-radius: var(--soft-curves);
  border: 1px solid var(--border);
}

.sites-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

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

.sites-table th {
  background: var(--surface);
  color: var(--primary);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.sites-table td {
  color: var(--muted);
}

.basket-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 24px 0;
}

.basket-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--rounded);
  padding: 20px;
}

.basket-card h3 {
  font-size: 1rem;
  color: var(--secondary);
  margin-bottom: 8px;
}

.basket-card p {
  font-size: 14px;
  color: var(--muted);
}

.basket-visual {
  float: right;
  max-width: 280px;
  max-height: 220px;
  border-radius: var(--soft-curves);
  margin: 0 0 16px 24px;
  object-fit: cover;
}

.live-timeline {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 28px 0;
}

.live-step {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--soft-curves);
  padding: 24px 20px;
  position: relative;
}

.live-step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: var(--primary);
  color: var(--text);
  border-radius: var(--pill);
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 12px;
}

.live-step h3 {
  font-size: 1rem;
  margin-bottom: 8px;
}

.live-step p {
  font-size: 14px;
  color: var(--muted);
}

.types-mosaic {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin: 24px 0;
}

.types-tile {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--rounded);
  padding: 18px;
  transition: border-color 0.25s var(--smooth), box-shadow 0.25s var(--smooth);
}

.types-tile:hover {
  border-color: rgba(220, 38, 38, 0.4);
  box-shadow: var(--glow-accents);
}

.types-tile h3 {
  font-size: 0.95rem;
  color: var(--secondary);
  margin-bottom: 6px;
}

.types-tile p {
  font-size: 13px;
  color: var(--muted);
}

.tips-numbered {
  counter-reset: tip-counter;
  list-style: none;
  margin: 24px 0;
}

.tips-numbered li {
  counter-increment: tip-counter;
  position: relative;
  padding: 16px 16px 16px 56px;
  margin-bottom: 12px;
  background: var(--surface);
  border-radius: var(--rounded);
  border: 1px solid var(--border);
  font-size: 14px;
  color: var(--muted);
}

.tips-numbered li::before {
  content: counter(tip-counter);
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 28px;
  height: 28px;
  background: var(--primary);
  color: var(--text);
  border-radius: var(--pill);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
}

.responsible-panel {
  background: rgba(22, 163, 74, 0.08);
  border: 1px solid rgba(22, 163, 74, 0.25);
  border-radius: var(--soft-curves);
  padding: 24px;
  margin: 20px 0;
}

.responsible-panel p {
  font-size: 15px;
  color: var(--text);
}

.responsible-list {
  list-style: none;
  margin: 20px 0;
}

.responsible-list li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 10px;
  font-size: 14px;
  color: var(--muted);
}

.responsible-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: var(--pill);
}

.mobile-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  align-items: center;
}

.mobile-visual {
  max-width: 420px;
  max-height: 280px;
  border-radius: var(--soft-curves);
  object-fit: cover;
  width: 100%;
}

.mobile-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 16px;
}

.mobile-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: var(--surface);
  border-radius: var(--pill);
  border: 1px solid var(--border);
  font-size: 14px;
  color: var(--muted);
}

.mobile-feature-dot {
  width: 8px;
  height: 8px;
  background: var(--secondary);
  border-radius: var(--pill);
  flex-shrink: 0;
}

.bonus-bands {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 24px 0;
}

.bonus-band {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 20px;
  align-items: center;
  padding: 18px 22px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--soft-curves);
}

.bonus-band-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--primary);
  font-weight: 600;
}

.bonus-band p {
  font-size: 14px;
  color: var(--muted);
  margin: 0;
}

.nba-asymmetric {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
}

.nba-visual {
  max-width: 460px;
  max-height: 300px;
  border-radius: var(--soft-curves);
  object-fit: cover;
  width: 100%;
}

.nba-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 20px;
}

.nba-stat {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--rounded);
  padding: 16px;
  text-align: center;
}

.nba-stat strong {
  display: block;
  font-size: 1.4rem;
  color: var(--secondary);
  margin-bottom: 4px;
}

.nba-stat span {
  font-size: 12px;
  color: var(--muted);
}

.info-breakout {
  margin-left: calc(-1 * min(4vw, 40px));
  margin-right: calc(-1 * min(4vw, 40px));
  padding-left: min(4vw, 40px);
  padding-right: min(4vw, 40px);
}

@media (max-width: 900px) {
  .layout-split,
  .mobile-split,
  .nba-asymmetric {
    grid-template-columns: 1fr;
  }

  .basket-cards,
  .live-timeline,
  .types-mosaic {
    grid-template-columns: 1fr;
  }

  .basket-visual {
    float: none;
    margin: 0 auto 20px;
    max-width: 100%;
  }

  .bonus-band {
    grid-template-columns: 1fr;
    gap: 8px;
  }
}

@media (max-width: 768px) {
  .hero-strip {
    height: 60px;
  }

  .hero-section {
    padding: 32px 16px 40px;
  }

  .offer-card-logo {
    height: 80px;
  }

  .offer-card-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
  }
}

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

  .basket-visual,
  .mobile-visual,
  .nba-visual {
    max-width: 100%;
    width: 100%;
    margin-left: 0;
    margin-right: 0;
  }

  .hero-strip {
    max-width: 100%;
    overflow: hidden;
  }
}

@media (min-width: 769px) and (max-width: 900px) {
  .hero-strip {
    height: 80px;
  }
}
