.hero {
  position: relative;
  min-height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 60px 24px;
  text-align: center;
  background: var(--text);
}

.hero-stripe {
  position: absolute;
  left: -20%;
  right: -20%;
  top: 50%;
  height: 60px;
  margin-top: -30px;
  background: var(--accent);
  opacity: 0.2;
  transform: rotate(45deg);
  pointer-events: none;
}

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

.hero h1 {
  font-size: clamp(1.6rem, 4.2vw, 2.7rem);
  color: var(--bg);
  margin-bottom: 14px;
  text-shadow: 4px 4px 0 rgba(37, 99, 235, 0.55);
}

.hero-sub {
  color: rgba(248, 250, 252, 0.88);
  font-size: 1.05rem;
  font-weight: 700;
  font-style: italic;
  max-width: 48ch;
  margin: 0 auto;
}

@media (max-width: 767px) {
  .hero {
    padding: 32px 18px;
    min-height: 220px;
  }

  .hero-stripe {
    height: 28px;
    margin-top: -14px;
  }
}

.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;
}

.offers-section::before {
  content: "";
  position: absolute;
  inset: 10px;
  border: 2px solid rgba(37, 99, 235, 0.45);
  box-shadow: 0 0 18px rgba(22, 163, 74, 0.25);
  pointer-events: none;
}

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

.offers-section h2 {
  color: var(--bg);
  text-align: center;
  font-size: 1.45rem;
  margin-bottom: 8px;
}

.offers-lead {
  text-align: center;
  color: rgba(248, 250, 252, 0.78);
  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(--primary);
  color: var(--surface);
  text-decoration: none;
  font-weight: 700;
  font-style: italic;
  box-shadow: 5px 5px 0 var(--text);
  border: 2px solid var(--text);
}

.info-cta:hover {
  transform: translate(3px, -2px);
  clip-path: polygon(0 10%, 12% 0, 100% 8%, 92% 100%, 4% 90%);
}

#info-1 {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 28px;
  padding: 42px 22px;
  margin: 28px 0;
  background: var(--surface);
  border: 3px solid var(--primary);
  box-shadow: 8px 8px 0 var(--text);
  position: relative;
}

#info-1::after {
  content: "";
  position: absolute;
  left: -1px;
  top: 18px;
  width: 8px;
  height: 58%;
  background: linear-gradient(180deg, var(--accent), var(--primary));
}

#info-1 h2,
#info-1 .info-cta {
  grid-column: 1 / -1;
}

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

.tip-cards article {
  border: 2px solid var(--border);
  padding: 12px 14px;
  background: var(--bg);
  box-shadow: 4px 4px 0 rgba(15, 23, 42, 0.12);
}

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

#info-2 {
  padding: 36px 28px;
  margin: 36px 0;
  background:
    linear-gradient(135deg, rgba(22, 163, 74, 0.08), transparent 48%),
    var(--surface);
  border-left: 10px solid var(--secondary);
  box-shadow: 0 0 0 3px var(--border);
}

#info-2 .callout {
  font-family: var(--font-pixel);
  font-size: 0.95rem;
  color: var(--secondary);
  margin-bottom: 12px;
}

#info-2 h2 {
  margin-bottom: 10px;
}

#info-3 {
  position: relative;
  padding: 48px 24px;
  margin: 32px 0;
  overflow: hidden;
  background: var(--text);
  color: var(--bg);
}

#info-3::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("/images/decorative/decor_1.webp");
  background-size: cover;
  background-position: center;
  opacity: 0.18;
  pointer-events: none;
}

#info-3 .info-copy {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin: 0 auto;
}

#info-3 h2,
#info-3 p {
  color: var(--bg);
}

.live-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
  position: relative;
  z-index: 1;
}

.live-chips span {
  border: 2px solid var(--accent);
  color: var(--bg);
  padding: 6px 12px;
  font-size: 0.78rem;
  font-weight: 700;
  font-style: italic;
  text-transform: uppercase;
  box-shadow: 3px 3px 0 var(--accent);
}

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

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

.pay-tiles span {
  display: block;
  border: 2px solid var(--text);
  background: var(--surface);
  padding: 16px 10px;
  text-align: center;
  font-size: 0.82rem;
  font-weight: 700;
  box-shadow: 4px 4px 0 var(--primary);
}

#info-5 {
  position: relative;
  padding: 44px 28px;
  margin: 28px 0;
  background: var(--surface);
  border: 3px solid var(--accent);
  box-shadow: 12px 12px 0 var(--text);
}

.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-pixel);
  font-size: 1.3rem;
  color: var(--accent);
}

#info-6 {
  display: grid;
  grid-template-columns: 1fr 240px;
  gap: 24px;
  align-items: start;
  padding: 36px;
  margin: 32px 0;
  background: var(--surface);
  border: 3px solid var(--secondary);
}

.vip-stats {
  display: grid;
  gap: 10px;
}

.vip-stats span {
  background: var(--bg);
  border: 2px solid var(--border);
  padding: 12px;
  font-weight: 700;
  font-style: italic;
  text-align: center;
  box-shadow: 4px 4px 0 var(--secondary);
}

#info-7 {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 280px);
  gap: 24px;
  align-items: center;
  padding: 36px 8px;
  margin: 36px 0;
}

#info-7 .decor-frame {
  justify-self: end;
}

#info-8 {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 20px;
  padding: 36px 24px;
  margin: 32px 0;
  background:
    repeating-linear-gradient(
      90deg,
      rgba(37, 99, 235, 0.06) 0 12px,
      transparent 12px 24px
    ),
    var(--surface);
  border: 3px solid var(--text);
}

.pulse-rail {
  width: 10px;
  margin: 8px auto;
  background: repeating-linear-gradient(
    180deg,
    var(--primary) 0 12px,
    var(--accent) 12px 24px
  );
  box-shadow: 0 0 12px rgba(37, 99, 235, 0.45);
}

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

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

#info-9 .glossary article {
  background: var(--surface);
  border: 2px solid var(--border);
  padding: 16px;
  box-shadow: 6px 6px 0 rgba(15, 23, 42, 0.12);
}

#info-9 .glossary article:nth-child(2) {
  transform: translateY(-10px);
  border-color: var(--primary);
}

#info-9 .glossary h3 {
  font-size: 0.92rem;
  margin-bottom: 8px;
  color: var(--primary);
}

.intro-band {
  min-height: 140px;
  margin-bottom: 20px;
  overflow: hidden;
  border: 3px solid var(--text);
  background-image:
    linear-gradient(90deg, rgba(15, 23, 42, 0.55), rgba(15, 23, 42, 0.2)),
    url("/images/decorative/decor_3.jpg");
  background-size: cover;
  background-position: center;
  max-width: 100%;
}

#info-10 {
  padding: 36px;
  margin: 32px 0 8px;
  background:
    linear-gradient(160deg, rgba(249, 115, 22, 0.1), transparent 40%),
    var(--surface);
  border: 3px solid var(--accent);
  box-shadow: 10px 10px 0 var(--text);
}

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

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

.check-grid h3 {
  font-size: 0.92rem;
  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-7,
  #info-8 {
    grid-template-columns: 1fr;
  }

  .pay-tiles,
  #info-9 .glossary,
  .check-grid {
    grid-template-columns: 1fr 1fr;
  }

  #info-9 .glossary article:nth-child(2) {
    transform: none;
  }

  #info-7 .decor-frame {
    justify-self: start;
  }
}

@media (max-width: 520px) {
  .pay-tiles,
  #info-9 .glossary,
  .check-grid {
    grid-template-columns: 1fr;
  }

  #info-5,
  #info-10,
  #info-1 {
    box-shadow: 4px 4px 0 var(--text);
    padding: 24px 16px;
  }

  #info-6 {
    padding: 24px 16px;
  }
}

@media (max-width: 767px) {
  .offers-section {
    overflow: hidden;
    max-width: 100%;
  }

  .intro-band {
    min-height: 100px;
    max-width: 100%;
    overflow: hidden;
  }
}

@media (max-width: 375px) {
  .info-wrap,
  #info-1,
  #info-2,
  #info-3,
  #info-7,
  #info-9,
  .intro-band,
  .decor-frame {
    max-width: 100%;
    overflow: hidden;
  }

  .decor-img {
    max-width: 100%;
    width: 100%;
    height: auto;
    max-height: 180px;
  }
}
#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;
  }
}
