.hero {
  position: relative;
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 56px 24px;
  text-align: center;
  border-bottom: 1px solid var(--border);
}

.hero-mosaic {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: 1.15fr 1fr 1.2fr;
  opacity: 0.15;
  filter: grayscale(1);
  pointer-events: none;
  overflow: hidden;
  max-width: 100%;
}

.hero-mosaic span {
  background-size: cover;
  background-position: center;
}

.hero-tile-a {
  background-image: url("/images/decorative/decor_1.jpg");
}

.hero-tile-b {
  background-image: url("/images/decorative/decor_2.jpg");
}

.hero-tile-c {
  background-image: url("/images/decorative/decor_3.webp");
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(15, 23, 42, 0.55), rgba(15, 23, 42, 0.88)),
    radial-gradient(ellipse at 50% 28%, rgba(249, 115, 22, 0.18), transparent 58%);
  pointer-events: none;
}

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

.hero h1 {
  font-size: clamp(2.1rem, 5vw, 3.4rem);
  color: #ffffff;
  margin-bottom: 12px;
  font-stretch: expanded;
}

.hero-sub {
  color: #ffffff;
  font-size: 1.05rem;
  max-width: 46ch;
  margin: 0 auto;
}

@media (max-width: 767px) {
  .hero {
    min-height: 180px;
    padding: 36px 18px;
    overflow: hidden;
    max-width: 100%;
  }

  .hero-mosaic,
  .hero-mosaic span {
    max-width: 100%;
  }

  .offers-section {
    overflow: hidden;
    max-width: 100%;
  }
}

.offers-section {
  padding: 40px 24px 48px;
  background-image:
    linear-gradient(180deg, rgba(15, 23, 42, 0.78), rgba(15, 23, 42, 0.88)),
    url("/images/offers_bg/offers_bg.webp");
  background-size: cover;
  background-position: center;
  position: relative;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.offers-section::before {
  content: "";
  position: absolute;
  inset: 10px;
  border: 1px dashed rgba(248, 250, 252, 0.12);
  pointer-events: none;
}

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

.offers-section h2 {
  color: #fff;
  text-align: center;
  font-size: 1.75rem;
  margin-bottom: 8px;
  font-stretch: expanded;
}

.offers-lead {
  text-align: center;
  color: var(--muted);
  margin-bottom: 28px;
  font-size: 0.95rem;
}

.info-wrap {
  max-width: min(var(--max), 100%);
  margin: 0 auto;
  padding: 8px 24px 56px;
  overflow-x: hidden;
}

.info-cta {
  display: inline-block;
  margin-top: 16px;
  padding: 10px 18px;
  background: var(--surface);
  color: var(--accent);
  border: 1px solid var(--accent);
  text-decoration: none;
  font-weight: 700;
  font-family: var(--font-sans);
}

.info-cta:hover {
  color: var(--primary);
  border-color: var(--primary);
}

#info-1 {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 28px;
  padding: 42px 22px;
  border: 1px solid var(--border);
  background: var(--surface);
  margin: 28px 0;
  position: relative;
}

#info-1::after {
  content: "";
  position: absolute;
  left: -1px;
  top: 18px;
  width: 6px;
  height: 62%;
  background: var(--primary);
}

#info-1 h2 {
  grid-column: 1 / -1;
  margin-bottom: 4px;
}

.tip-cards {
  display: grid;
  gap: 12px;
}

.tip-cards article {
  border: 1px solid var(--border);
  padding: 12px 14px;
  background: var(--bg);
}

.tip-cards h3 {
  font-size: 1rem;
  margin-bottom: 6px;
  color: var(--primary);
}

#info-2 {
  display: flex;
  flex-direction: row-reverse;
  gap: 32px;
  padding: 36px 28px 36px 48px;
  margin: 36px 18px 36px 0;
  border: 1px solid var(--border);
  outline: 1px solid rgba(56, 189, 248, 0.18);
  outline-offset: 6px;
  transform: rotate(-0.35deg);
  background: linear-gradient(120deg, var(--bg), var(--surface));
}

#info-2 .info-copy {
  flex: 1;
}

#info-2 .rule {
  width: 4px;
  background: var(--accent);
  flex-shrink: 0;
}

#info-3 {
  text-align: center;
  padding: 48px 20px;
  margin: 32px auto;
  max-width: 760px;
  border: 1px solid var(--border);
  background: var(--surface);
}

#info-3 p {
  max-width: 62ch;
  margin: 0 auto 12px;
}

.odds-chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin: 16px 0 8px;
}

.odds-chips span {
  border: 1px solid var(--primary);
  color: var(--primary);
  padding: 6px 12px;
  font-family: var(--font-serif);
  font-stretch: expanded;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

#info-4 {
  padding: 40px 8px 40px 0;
  margin: 40px 0;
  border-left: 8px solid var(--primary);
  padding-left: 24px;
}

.pay-tiles {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-top: 16px;
}

.pay-tiles span {
  display: block;
  border: 1px solid var(--border);
  background: var(--surface);
  padding: 16px 10px;
  text-align: center;
  font-size: 0.85rem;
  font-weight: 700;
}

#info-5 {
  position: relative;
  padding: 44px 28px;
  margin: 28px 0 28px 24px;
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: 16px 16px 0 rgba(0, 0, 0, 0.35);
}

.step-list {
  list-style: none;
  margin-top: 16px;
  counter-reset: steps;
}

.step-list li {
  counter-increment: steps;
  position: relative;
  padding: 10px 0 10px 52px;
  border-bottom: 1px solid var(--border);
}

.step-list li::before {
  content: counter(steps);
  position: absolute;
  left: 0;
  top: 8px;
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--primary);
  font-stretch: expanded;
}

#info-6 {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 24px;
  align-items: start;
  padding: 36px;
  margin: 32px 0;
  border: 1px solid var(--border);
  background:
    linear-gradient(180deg, rgba(56, 189, 248, 0.06), transparent 40%),
    var(--surface);
}

.safety-list {
  list-style: none;
}

.safety-list li {
  padding: 10px 0 10px 28px;
  border-bottom: 1px solid var(--border);
  position: relative;
}

.safety-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 16px;
  width: 12px;
  height: 12px;
  background: var(--accent);
}

#info-7 {
  padding: 48px 18% 48px 12%;
  margin: 40px -12px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

#info-7 .pull {
  font-family: var(--font-serif);
  font-size: clamp(1.4rem, 3vw, 2rem);
  line-height: 1.25;
  color: var(--primary);
  font-stretch: expanded;
  margin: 12px 0 20px;
  max-width: 18ch;
}

#info-8 {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 20px;
  padding: 36px 24px;
  margin: 32px 0;
  border: 1px solid var(--border);
  background: var(--bg);
}

.pulse-rail {
  width: 8px;
  margin: 8px auto;
  background: repeating-linear-gradient(
    180deg,
    var(--primary) 0 12px,
    transparent 12px 24px
  );
  position: relative;
}

.pulse-rail::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 16px;
  height: 16px;
  margin-left: -8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 6px rgba(56, 189, 248, 0.2);
}

#info-9 {
  padding: 40px 0;
  margin: 28px 0;
}

.esport-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 18px;
}

.esport-grid article {
  border: 1px solid var(--border);
  padding: 16px;
  background: var(--surface);
  transform: translateY(8px);
}

.esport-grid article:nth-child(2) {
  transform: translateY(-8px);
  border-color: var(--primary);
}

.esport-grid h3 {
  font-size: 1rem;
  margin-bottom: 8px;
}

#info-10 {
  padding: 36px;
  margin: 32px 0 8px;
  border: 1px solid var(--border);
  background: var(--surface);
}

.type-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 18px;
}

.type-grid article {
  border: 1px solid var(--border);
  padding: 14px;
  background: var(--bg);
}

.type-grid h3 {
  font-size: 1rem;
  margin-bottom: 6px;
  color: var(--accent);
}

#info-1,
#info-2,
#info-3,
#info-4,
#info-5,
#info-6,
#info-7,
#info-8,
#info-9,
#info-10 {
  overflow-x: hidden;
}

@media (max-width: 800px) {
  #info-1,
  #info-6,
  #info-8 {
    grid-template-columns: 1fr;
  }

  #info-2 {
    flex-direction: column;
    transform: none;
    margin: 24px 0;
    padding: 24px;
  }

  #info-2 .rule {
    width: 100%;
    height: 4px;
  }

  .pay-tiles,
  .esport-grid,
  .type-grid {
    grid-template-columns: 1fr 1fr;
  }

  #info-7 {
    padding: 32px 16px;
    margin: 24px 0;
  }

  .esport-grid article,
  .esport-grid article:nth-child(2) {
    transform: none;
  }
}

@media (max-width: 520px) {
  .pay-tiles,
  .esport-grid,
  .type-grid {
    grid-template-columns: 1fr;
  }

  #info-5 {
    margin: 24px 0;
    box-shadow: none;
    padding: 28px 16px;
  }

  #info-2 {
    outline: none;
  }
}
#offers .content-area {
  max-width: 420px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.125rem;
  align-items: stretch;
}

#offers .card {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(30, 41, 59, 0.06);
  border: 1px solid #e2e8f0;
  background: #ffffff;
}

#offers .card-inner {
  background: #ffffff;
  padding: 1.125rem 1.375rem 1.375rem;
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
}

#offers .logo-rating-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: nowrap;
}

#offers .logo-placeholder {
  flex-shrink: 0;
  width: 72px;
  height: 72px;
  border-radius: 12px;
  overflow: hidden;
  background: #f8fafc;
  display: flex;
  align-items: center;
  justify-content: center;
}

#offers .offer-logo {
  width: 100%;
  height: 100%;
  max-width: none;
  max-height: none;
  object-fit: contain;
  object-position: center;
  display: block;
  background: transparent;
}

#offers .rating {
  display: flex;
  flex-direction: column;
  gap: 0.3125rem;
  align-items: flex-start;
  flex: 1;
  min-width: 0;
}

#offers .rating-value {
  font-weight: 700;
  font-size: 1.125rem;
  color: #1e293b;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  font-variant: normal;
  letter-spacing: normal;
}

#offers .rating-max {
  font-size: 0.875rem;
  color: #64748b;
  font-weight: 400;
}

#offers .rating .rating-value,
#offers .rating .rating-max {
  display: inline;
}

#offers .stars {
  display: flex;
  align-items: center;
  gap: 0.1875rem;
}

#offers .star {
  width: 14px;
  height: 12px;
  color: #f59e0b;
}

#offers .domain {
  margin: 0;
  font-size: 0.8125rem;
  font-weight: 600;
  color: #64748b;
  letter-spacing: 0.02em;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  font-variant: normal;
}

#offers .divider {
  margin: 0.25rem 0 0;
  border: none;
  border-top: 1px solid #e2e8f0;
}

#offers .bonus-info {
  display: flex;
  flex-direction: column;
  gap: 0.3125rem;
}

#offers .bonus-label {
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #64748b;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  font-variant: normal;
}

#offers .bonus-text {
  margin: 0;
  font-size: 0.9375rem;
  font-weight: 600;
  line-height: 1.4;
  color: #1e293b;
  overflow-wrap: anywhere;
  word-break: break-word;
  hyphens: auto;
  max-width: 100%;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  font-variant: normal;
  letter-spacing: normal;
}

#offers .bonus-terms {
  margin: 0;
  font-size: 0.6875rem;
  color: #64748b;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  font-variant: normal;
  letter-spacing: normal;
}

#offers .offer-desc {
  margin: 0;
  font-size: 0.75rem;
  line-height: 1.45;
  color: #64748b;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  font-variant: normal;
  letter-spacing: normal;
}

#offers .action-area {
  margin-top: 0.375rem;
}

#offers .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  padding: 0.8125rem 1.125rem;
  font-size: 0.9375rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #fff;
  background: #4f46e5;
  border: none;
  border-radius: 10px;
  text-decoration: none;
  cursor: pointer;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  font-variant: normal;
}

#offers .btn:hover {
  background: #4338ca;
  color: #fff;
}

#offers .rank-ribbon {
  position: absolute;
  top: 0;
  right: 0;
  width: 38px;
  height: 38px;
  background: #4f46e5;
  border-radius: 0 14px 0 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.125rem;
}

#offers .rank-num {
  font-size: 0.875rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  font-variant: normal;
}

@media (min-width: 380px) {
  #offers .content-area {
    padding: 0 0.5rem;
    gap: 1.25rem;
  }

  #offers .card-inner {
    padding: 1.25rem 1.5rem 1.5rem;
    gap: 0.9375rem;
  }

  #offers .logo-rating-row {
    gap: 1.125rem;
  }

  #offers .divider {
    margin: 0.3125rem 0 0;
  }

  #offers .action-area {
    margin-top: 0.5rem;
  }
}

@media (max-width: 767px) {
  #offers .logo-placeholder {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
  }

  #offers .offer-logo {
    width: 100%;
    height: 100%;
    max-width: none;
    max-height: none;
    object-fit: contain;
    object-position: center;
    display: block;
  }

  #offers .bonus-text {
    font-size: 0.875rem;
    line-height: 1.45;
    overflow-wrap: anywhere;
    word-break: break-word;
  }
}

@media (max-width: 375px) {
  #offers .logo-placeholder {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
  }

  #offers .offer-logo {
    width: 100%;
    height: 100%;
    max-width: none;
    max-height: none;
    object-fit: contain;
    object-position: center;
    display: block;
  }
}
