.hero {
  position: relative;
  z-index: 1;
}

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

.hero-body {
  background: var(--bg);
  padding: 40px 24px 48px;
  text-align: center;
  position: relative;
}

.hero-body.arcade-floor::after {
  opacity: 0.4;
}

.hero-brand {
  font-family: var(--font-pixel);
  font-size: clamp(1.4rem, 4vw, 2.4rem);
  font-weight: 700;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  text-shadow:
    0 0 12px rgba(217, 119, 6, 0.7),
    4px 4px 0 rgba(0, 0, 0, 0.8);
  margin-bottom: 14px;
  position: relative;
  z-index: 1;
  animation: retro80sPulse 5s ease-in-out infinite alternate;
}

.hero-title {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 700;
  font-size: clamp(1.15rem, 2.5vw, 1.55rem);
  color: var(--text);
  max-width: 720px;
  margin: 0 auto 12px;
  position: relative;
  z-index: 1;
}

.hero-sub {
  color: var(--muted);
  max-width: 560px;
  margin: 0 auto 22px;
  font-size: 15px;
  position: relative;
  z-index: 1;
}

.hero-cta {
  display: inline-block;
  font-family: var(--font-pixel);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  background: var(--accent);
  color: var(--bg);
  padding: 14px 22px;
  border: 2px solid var(--primary);
  box-shadow: 5px 5px 0 rgba(0, 0, 0, 0.75);
  position: relative;
  z-index: 1;
}

.hero-cta:hover {
  color: var(--bg);
  background: var(--primary);
  animation: pixelShatter 0.35s steps(3) both;
}

.offers-section {
  position: relative;
  padding: 56px 24px;
  background-color: var(--bg);
  background-image:
    linear-gradient(rgba(26, 26, 26, 0.88), rgba(26, 26, 26, 0.92)),
    url("/images/offers_bg/offers_bg.webp");
  background-size: cover;
  background-position: center;
}

.offers-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(
    90deg,
    transparent 0%,
    rgba(217, 119, 6, 0.06) 50%,
    transparent 100%
  );
  pointer-events: none;
}

.offers-inner {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.offers-header {
  margin-bottom: 28px;
  text-align: center;
}

.offers-header h2 {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.4rem, 3vw, 1.9rem);
  margin-bottom: 8px;
  color: var(--accent);
  text-shadow: 3px 3px 0 rgba(0, 0, 0, 0.75);
}

.offers-header p {
  color: var(--muted);
  max-width: 560px;
  margin: 0 auto;
}

.offers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

.offer-card {
  background: #1A1035;
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.offer-card:hover {
  transform: translateY(-2px);
  border-color: rgba(167, 139, 250, 0.45);
  animation: pixelShatter 0.45s steps(4) both;
}

.offer-logo-wrap {
  width: 160px;
  height: 80px;
  flex-shrink: 0;
  background: rgba(255, 255, 255, 0.04);
  padding: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  box-sizing: border-box;
}

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

.offer-name {
  font-family: var(--font-pixel);
  font-size: 1.05rem;
  text-transform: uppercase;
  color: #fff;
}

.offer-bonus-wrap {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}

.offer-bonus {
  font-size: 14px;
  font-weight: 600;
  color: #FFD700;
  word-break: break-word;
  overflow-wrap: anywhere;
  line-height: 1.35;
}

.offer-terms {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.45);
}

.offer-desc {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.45;
}

.offer-cta {
  margin-top: auto;
  display: inline-flex;
  justify-content: center;
  font-family: var(--font-pixel);
  font-weight: 700;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  background: #FFD700;
  color: #1A1035;
  padding: 12px 16px;
  border: none;
  cursor: pointer;
}

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

.info-section {
  padding: 52px 24px;
  position: relative;
}

.info-inner {
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.info-section h2 {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 700;
  font-size: clamp(1.25rem, 2.4vw, 1.7rem);
  margin-bottom: 14px;
  color: var(--text);
  text-shadow: 3px 3px 0 rgba(0, 0, 0, 0.6);
}

.info-section p {
  margin-bottom: 12px;
  color: var(--text);
}

.info-1 {
  background: var(--surface);
}

.info-1 .split-rail {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 28px;
  align-items: start;
}

.info-1 .chip-stack {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.info-1 .chip {
  border: 2px solid var(--accent);
  box-shadow: 4px 4px 0 rgba(0, 0, 0, 0.65);
  padding: 12px 14px;
  font-family: var(--font-pixel);
  font-size: 11px;
  text-transform: uppercase;
  background: rgba(180, 83, 9, 0.12);
}

.info-2 {
  background: var(--bg);
}

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

.info-2 .limit-card {
  padding: 16px;
  background: var(--surface);
  border-left: 4px solid var(--primary);
  box-shadow: 5px 5px 0 rgba(0, 0, 0, 0.55);
}

.info-2 .limit-card strong {
  display: block;
  font-family: var(--font-pixel);
  font-size: 11px;
  color: var(--accent);
  margin-bottom: 8px;
  text-transform: uppercase;
}

.info-3 {
  background: linear-gradient(90deg, var(--surface) 0%, var(--bg) 100%);
}

.info-3 .review-band {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: center;
}

.info-3 .score-rail {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.info-3 .score-rail span {
  font-family: var(--font-pixel);
  font-size: 12px;
  padding: 10px 12px;
  background: rgba(217, 119, 6, 0.12);
  border: 1px solid var(--border);
}

.info-4 {
  background: var(--bg);
}

.info-4 .fav-layout {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 24px;
  align-items: start;
}

.info-4 .fav-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 14px;
}

.info-4 .fav-list li {
  padding: 10px 12px;
  border: 1px dashed var(--border);
  font-size: 14px;
}

.info-5 {
  background: var(--surface);
}

.info-5 .bonus-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 16px;
}

.info-5 .bonus-cols article {
  padding: 18px;
  border: 2px solid var(--border);
  box-shadow: 6px 6px 0 rgba(120, 53, 15, 0.45);
}

.info-5 .bonus-cols h3 {
  font-family: var(--font-pixel);
  font-size: 12px;
  color: var(--accent);
  margin-bottom: 8px;
  text-transform: uppercase;
}

.info-6 {
  background: var(--bg);
}

.info-6 .roulette-wrap {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 28px;
  align-items: center;
}

.info-6 .wheel-callout {
  padding: 20px;
  border: 2px solid var(--accent);
  box-shadow:
    0 0 14px rgba(217, 119, 6, 0.4),
    5px 5px 0 rgba(0, 0, 0, 0.7);
  background: rgba(36, 36, 36, 0.9);
}

.info-7 {
  background: var(--surface);
}

.info-7 .slot-mosaic {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 18px;
}

.info-7 .slot-panel {
  padding: 16px;
  background: var(--bg);
  border-top: 3px solid var(--primary);
  box-shadow: 4px 4px 0 rgba(0, 0, 0, 0.55);
}

.info-7 .slot-panel h3 {
  font-family: var(--font-pixel);
  font-size: 12px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 8px;
}

.info-7 .slot-visual {
  grid-column: 1 / -1;
  margin-top: 8px;
}

.info-8 {
  background: linear-gradient(180deg, var(--bg), var(--surface));
}

.info-8 .live-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 16px 0;
}

.info-8 .live-chip {
  font-family: var(--font-pixel);
  font-size: 10px;
  text-transform: uppercase;
  padding: 10px 14px;
  border: 1px solid var(--accent);
  box-shadow: 0 0 10px rgba(217, 119, 6, 0.35);
  background: rgba(180, 83, 9, 0.15);
}

.info-9 {
  background: var(--bg);
}

.info-9 .pros-cons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 16px;
}

.info-9 .pros-cons div {
  padding: 18px;
  background: var(--surface);
}

.info-9 .pros-cons h3 {
  font-family: var(--font-pixel);
  font-size: 12px;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.info-9 .pros-cons ul {
  padding-left: 18px;
}

.info-9 .pros-cons li {
  margin-bottom: 8px;
  font-size: 14px;
}

.info-9 .decor-band {
  margin-top: 20px;
  height: 140px;
  width: 100%;
  max-width: min(500px, 100%);
  overflow: hidden;
  background-size: cover;
  background-position: center;
  border: 2px solid var(--border);
  box-shadow: 5px 5px 0 rgba(0, 0, 0, 0.65);
}

.info-10 {
  background: var(--surface);
}

.info-10 .pay-steps {
  counter-reset: step;
  list-style: none;
  display: grid;
  gap: 12px;
  margin-top: 16px;
}

.info-10 .pay-steps li {
  counter-increment: step;
  padding: 14px 14px 14px 56px;
  position: relative;
  background: var(--bg);
  border: 1px solid var(--border);
}

.info-10 .pay-steps li::before {
  content: counter(step);
  position: absolute;
  left: 12px;
  top: 12px;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-pixel);
  font-size: 12px;
  background: var(--accent);
  color: var(--bg);
  box-shadow: 3px 3px 0 rgba(0, 0, 0, 0.65);
}

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

  .offer-logo-wrap {
    width: 140px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
  }

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

  .offer-bonus {
    font-size: 13px;
    word-break: break-word;
    overflow-wrap: anywhere;
  }

  .info-1 .split-rail,
  .info-3 .review-band,
  .info-4 .fav-layout,
  .info-5 .bonus-cols,
  .info-6 .roulette-wrap,
  .info-7 .slot-mosaic,
  .info-9 .pros-cons {
    grid-template-columns: 1fr;
  }

  .info-2 .limit-grid {
    grid-template-columns: 1fr;
  }

  .info-4 .fav-list {
    grid-template-columns: 1fr;
  }

  .info-9 .decor-band {
    max-width: 100%;
    height: 100px;
  }
}

@media (max-width: 375px) {
  .offer-logo-wrap {
    width: 120px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
  }

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

  .hero-strip {
    height: 48px;
  }

  .info-9 .decor-band {
    max-width: 100%;
    height: 80px;
  }
}
