.hero {
  position: relative;
  min-height: 350px;
  padding: 56px 24px 40px;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(30, 27, 75, 0.2) 0%, var(--bg) 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 30%, rgba(168, 85, 247, 0.22) 0%, transparent 45%),
    radial-gradient(ellipse at 80% 70%, rgba(67, 56, 202, 0.28) 0%, transparent 50%);
  pointer-events: none;
}

.hero-collage {
  position: relative;
  width: min(520px, 90vw);
  height: 260px;
  margin: 0 auto 28px;
}

.hero-collage .hero-shot {
  position: absolute;
  overflow: hidden;
  border: 2px solid var(--text);
  box-shadow: 6px 6px 0 rgba(0, 0, 0, 0.5);
}

.hero-collage .hero-shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  max-width: none;
  max-height: none;
}

.hero-shot-a {
  width: 200px;
  height: 200px;
  left: 12%;
  top: 10px;
  transform: rotate(-5deg);
  z-index: 2;
}

.hero-shot-b {
  width: 160px;
  height: 160px;
  right: 8%;
  top: 0;
  transform: rotate(3deg);
  z-index: 1;
}

.hero-shot-c {
  width: 140px;
  height: 140px;
  left: 42%;
  bottom: 0;
  transform: rotate(-2deg);
  z-index: 3;
}

.hero-title {
  position: relative;
  z-index: 5;
  text-align: center;
  font-family: var(--font-distorted);
  font-size: clamp(2rem, 6vw, 3.4rem);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #fff;
  text-shadow: 0 0 18px rgba(168, 85, 247, 0.7), 3px 3px 0 rgba(0, 0, 0, 0.65);
  -webkit-text-stroke: 1px rgba(238, 242, 255, 0.35);
  margin: -40px auto 16px;
  max-width: 900px;
  line-height: 1.05;
}

.hero-sub {
  position: relative;
  z-index: 5;
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 1.05rem;
}

.offers-section {
  position: relative;
  padding: 64px 24px;
  background-image: url("/images/offers_bg/offers_bg.webp");
  background-size: cover;
  background-position: center;
}

.offers-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(30, 27, 75, 0.88);
}

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

.offers-inner h2 {
  font-family: var(--font-distorted);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  text-align: center;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 8px;
  -webkit-text-stroke: 0.5px var(--accent);
}

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

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

.offer-card {
  background: linear-gradient(145deg, #2a0a3a, #1a0524);
  border: 1px solid rgba(216, 180, 254, 0.15);
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(216, 180, 254, 0.1);
}

.offer-card-logo {
  width: 240px;
  height: 90px;
  margin: 16px auto 0;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 10px;
  flex-shrink: 0;
  box-sizing: border-box;
}

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

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

.offer-card-name {
  font-family: var(--font-distorted);
  font-size: 1.1rem;
  color: #D8B4FE;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.offer-bonus-group {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.offer-bonus {
  font-size: 0.95rem;
  font-weight: 600;
  color: #F3E8FF;
  line-height: 1.4;
  word-break: break-word;
  overflow-wrap: anywhere;
}

.offer-terms {
  font-size: 0.72rem;
  color: rgba(243, 232, 255, 0.55);
}

.offer-desc {
  font-size: 0.78rem;
  color: rgba(243, 232, 255, 0.65);
  line-height: 1.45;
}

.offer-cta {
  margin-top: auto;
  display: block;
  text-align: center;
  text-decoration: none;
  font-family: var(--font-distorted);
  font-size: 12px;
  padding: 12px 16px;
  background: #7E22CE;
  color: #F3E8FF;
  border: 2px solid #D8B4FE;
  border-radius: 6px;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  transition: background 0.2s ease;
}

.offer-cta:hover {
  background: #9333EA;
  color: #F3E8FF;
}

.info-block {
  position: relative;
  padding: 56px 24px;
  overflow: hidden;
}

.info-block::after {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  border: 1px dashed rgba(168, 85, 247, 0.25);
  right: -40px;
  top: 20px;
  transform: rotate(18deg);
  pointer-events: none;
}

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

.info-block h2 {
  font-family: var(--font-distorted);
  font-size: clamp(1.4rem, 3vw, 2rem);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 16px;
  color: var(--text);
}

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

.info-cta {
  display: inline-block;
  margin-top: 18px;
  padding: 12px 20px;
  background: var(--primary);
  color: #fff;
  border: 2px solid var(--accent);
  font-family: var(--font-distorted);
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.info-cta:hover {
  background: var(--secondary);
  color: #fff;
}

#info-1 {
  background: linear-gradient(90deg, rgba(49, 46, 129, 0.55), transparent);
}

#info-1 .info-inner {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 20px;
  align-items: start;
}

#info-2 {
  background: var(--surface);
}

#info-2 .info-inner {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 28px;
  align-items: center;
}

#info-2 .odds-panel {
  border: 2px solid var(--border);
  padding: 20px;
  background: rgba(30, 27, 75, 0.5);
}

#info-2 .odds-panel li {
  list-style: none;
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
  color: var(--accent);
  font-family: var(--font-distorted);
  letter-spacing: 0.04em;
}

#info-3 {
  background: transparent;
}

#info-3 .info-inner {
  border-left: 4px solid var(--primary);
  padding-left: 24px;
}

#info-3 .chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

#info-3 .chip {
  border: 1px solid var(--border);
  padding: 8px 14px;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--accent);
  background: rgba(168, 85, 247, 0.12);
}

#info-4 {
  background: linear-gradient(180deg, rgba(67, 56, 202, 0.25), transparent);
}

#info-4 .info-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

#info-4 .stat-tile {
  border: 2px solid var(--text);
  padding: 18px;
  background: var(--surface);
  box-shadow: 4px 4px 0 var(--primary);
}

#info-4 .stat-tile strong {
  display: block;
  font-family: var(--font-distorted);
  font-size: 1.6rem;
  color: var(--accent);
  margin-bottom: 6px;
}

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

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

#info-5 .check-item {
  border-top: 3px solid var(--primary);
  padding-top: 12px;
  color: var(--muted);
  font-size: 0.9rem;
}

#info-6 {
  background: transparent;
}

#info-6 .info-inner {
  max-width: 720px;
  margin-left: auto;
  margin-right: 0;
  text-align: right;
}

#info-6 ul {
  display: inline-block;
  text-align: left;
  margin: 12px 0 0;
  color: var(--muted);
}

#info-7 {
  background: linear-gradient(135deg, rgba(49, 46, 129, 0.7), rgba(30, 27, 75, 0.2));
}

#info-7 .split-rugby {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 16px;
}

#info-7 .rugby-box {
  padding: 20px;
  border: 1px dashed var(--accent);
  background: rgba(0, 0, 0, 0.2);
}

#info-8 {
  background: var(--surface);
}

#info-8 .table-odds {
  width: 100%;
  border-collapse: collapse;
  margin-top: 16px;
  font-size: 0.9rem;
}

#info-8 .table-odds th,
#info-8 .table-odds td {
  border: 1px solid var(--border);
  padding: 10px 12px;
  text-align: left;
  color: var(--muted);
}

#info-8 .table-odds th {
  background: rgba(168, 85, 247, 0.15);
  color: var(--accent);
  font-family: var(--font-distorted);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

#info-9 {
  background: transparent;
}

#info-9 .mobile-band {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: stretch;
}

#info-9 .mobile-band > div {
  flex: 1 1 280px;
}

#info-9 .tape {
  align-self: center;
  padding: 14px 18px;
  background: rgba(216, 180, 254, 0.15);
  border: 1px solid var(--border);
  transform: rotate(-1.5deg);
  font-family: var(--font-distorted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text);
}

#info-10 {
  background: linear-gradient(0deg, rgba(168, 85, 247, 0.18), transparent);
  padding-bottom: 72px;
}

#info-10 .foot-columns {
  columns: 2;
  column-gap: 32px;
}

#info-10 .foot-columns p {
  break-inside: avoid;
}

@media (max-width: 768px) {
  .hero {
    min-height: 320px;
    padding: 40px 16px 32px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
    max-width: 100%;
  }

  .hero::before {
    background: rgba(30, 27, 75, 0.72);
    z-index: 1;
  }

  .hero-collage {
    position: absolute;
    inset: 0;
    width: 100%;
    max-width: 100%;
    height: 100%;
    margin: 0;
    overflow: hidden;
  }

  .hero-shot-b,
  .hero-shot-c {
    display: none;
  }

  .hero-shot-a {
    inset: 0;
    width: 100%;
    max-width: 100%;
    height: 100%;
    transform: none;
    border: none;
    box-shadow: none;
  }

  .hero-collage .hero-shot img {
    max-width: 100%;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .hero-title,
  .hero-sub {
    position: relative;
    z-index: 2;
    margin-top: 0;
  }

  .offer-card-logo {
    width: 200px;
    height: 76px;
  }

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

  .offer-bonus {
    font-size: 0.85rem;
  }

  #info-1 .info-inner,
  #info-2 .info-inner,
  #info-4 .info-inner,
  #info-7 .split-rugby {
    grid-template-columns: 1fr;
  }

  #info-5 .checklist {
    grid-template-columns: 1fr;
  }

  #info-6 .info-inner {
    margin-right: auto;
    text-align: left;
  }

  #info-10 .foot-columns {
    columns: 1;
  }

  .vertical-label {
    writing-mode: horizontal-tb;
    transform: none;
  }
}

@media (max-width: 375px) {
  .hero-collage,
  .hero-shot-a,
  .offers-section {
    max-width: 100vw;
    overflow: hidden;
  }

  .offer-card-logo {
    width: 180px;
    height: 66px;
  }

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