.hero {
  position: relative;
  padding: 72px 20px 64px;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 70%, rgba(234, 179, 8, 0.08), transparent 40%),
    repeating-linear-gradient(
      45deg,
      transparent,
      transparent 18px,
      rgba(255, 255, 255, 0.012) 18px,
      rgba(255, 255, 255, 0.012) 19px
    );
  pointer-events: none;
}

.hero-card {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
  background: var(--surface);
  border-radius: 16px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.45), 0 0 0 1px var(--border);
  padding: 48px;
  text-align: center;
  animation: heroRise 0.8s ease both;
}

@keyframes heroRise {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-card h1 {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 4.5vw, 2.85rem);
  line-height: 1.08;
  margin-bottom: 14px;
  color: var(--text);
  transform: rotate(-0.6deg);
}

.hero-card h1 em {
  font-style: normal;
  color: var(--primary);
}

.hero-card p {
  color: var(--muted);
  font-size: 1.02rem;
  max-width: 42ch;
  margin: 0 auto 22px;
}

.hero-cta {
  display: inline-block;
  background: var(--primary);
  color: #0C1E33;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 14px 26px;
  clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 10px 100%, 0 calc(100% - 10px));
}

.hero-cta:hover {
  background: var(--accent);
  color: #0C1E33;
}

.offers-section {
  position: relative;
  padding: 56px 20px 64px;
  background-image:
    linear-gradient(180deg, rgba(12, 30, 51, 0.88), rgba(12, 30, 51, 0.92)),
    url("/images/offers_bg/offers_bg.webp");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.offers-section::after {
  content: "";
  position: absolute;
  left: 5%;
  right: 5%;
  bottom: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--primary), transparent);
  opacity: 0.5;
}

.offers-inner {
  max-width: 1100px;
  margin: 0 auto;
}

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

.offers-header h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  transform: rotate(-0.4deg);
}

.offers-header p {
  color: var(--muted);
  margin-top: 8px;
}

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

.offer-card {
  background: #1a231c;
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  clip-path: polygon(0 0, calc(100% - 16px) 0, 100% 16px, 100% 100%, 16px 100%, 0 calc(100% - 16px));
  box-shadow: 6px 6px 0 rgba(0, 0, 0, 0.3);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  animation: cardIn 0.6s ease both;
}

.offer-card:nth-child(2) {
  animation-delay: 0.08s;
}

.offer-card:nth-child(3) {
  animation-delay: 0.16s;
}

@keyframes cardIn {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.offer-card:hover {
  transform: translate(-2px, -2px);
  box-shadow: 8px 8px 0 rgba(58, 90, 64, 0.35);
}

.offer-logo-wrap {
  width: 120px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-bottom: 16px;
  flex-shrink: 0;
}

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

.offer-name {
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
  font-family: var(--font-display);
}

.offer-bonus-wrap {
  margin-bottom: 12px;
  width: 100%;
  max-width: 100%;
}

.offer-bonus {
  font-size: 14px;
  color: #ffd966;
  font-weight: 600;
  display: block;
  margin-bottom: 4px;
  word-break: break-word;
  overflow-wrap: anywhere;
  line-height: 1.4;
}

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

.offer-desc {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.5;
  margin-bottom: 16px;
  text-align: left;
}

.offer-cta {
  display: inline-block;
  background: linear-gradient(135deg, #2d6a4f, #40916c);
  color: #fff;
  padding: 10px 24px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  border: none;
  cursor: pointer;
  clip-path: polygon(0 0, calc(100% - 6px) 0, 100% 6px, 100% 100%, 6px 100%, 0 calc(100% - 6px));
  margin-top: auto;
  font-family: var(--font-display);
}

.offer-cta:hover {
  filter: brightness(1.1);
  color: #fff;
}

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

.info-block::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.4;
}

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

.info-block h2 {
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 3vw, 2rem);
  margin-bottom: 14px;
  line-height: 1.15;
}

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

.info-cta {
  display: inline-block;
  margin-top: 16px;
  color: #0C1E33;
  background: var(--primary);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 12px 20px;
  clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 8px, 100% 100%, 8px 100%, 0 calc(100% - 8px));
}

.info-cta:hover {
  background: var(--accent);
  color: #0C1E33;
}

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

#info-1 .info-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 36px;
  align-items: center;
}

#info-1 .info-visual {
  min-height: 220px;
  background-image: url("/images/decorative/decor_1.jpg");
  background-size: cover;
  background-position: center;
  clip-path: polygon(8% 0, 100% 0, 92% 100%, 0 100%);
  border: 1px solid var(--border);
}

#info-2 {
  background: transparent;
}

#info-2 .info-inner {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

#info-2 .split-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: start;
}

#info-2 .feature-list {
  list-style: none;
  padding: 0;
  display: grid;
  gap: 10px;
}

#info-2 .feature-list li {
  background: var(--surface);
  border-left: 3px solid var(--primary);
  padding: 12px 14px;
  color: var(--muted);
  font-size: 14px;
  transform: skewX(-2deg);
}

#info-2 .decor-wrap {
  justify-self: end;
}

#info-3 {
  background: linear-gradient(120deg, var(--secondary), var(--bg) 55%);
  padding: 64px 20px;
}

#info-3 .info-inner {
  max-width: 720px;
  text-align: center;
}

#info-3 h2 {
  transform: rotate(0.5deg);
}

#info-3 .ticker {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 22px;
}

#info-3 .ticker span {
  border: 1px dashed var(--border);
  padding: 8px 14px;
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent);
  font-family: var(--font-display);
}

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

#info-4 .odds-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 32px;
  align-items: center;
}

#info-4 .odds-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

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

#info-4 .odds-table th {
  background: var(--surface);
  color: var(--primary);
  font-family: var(--font-display);
}

#info-4 .odds-table td {
  color: var(--muted);
}

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

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

#info-5 .criteria-grid article {
  border: 1px solid var(--border);
  padding: 18px 16px;
  background: rgba(12, 30, 51, 0.45);
  transform: rotate(-0.4deg);
}

#info-5 .criteria-grid article:nth-child(2) {
  transform: rotate(0.5deg);
  margin-top: 12px;
}

#info-5 .criteria-grid article:nth-child(3) {
  transform: rotate(-0.2deg);
}

#info-5 .criteria-grid h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--accent);
  margin-bottom: 8px;
}

#info-5 .criteria-grid p {
  font-size: 13px;
  margin: 0;
}

#info-6 {
  background:
    linear-gradient(rgba(12, 30, 51, 0.82), rgba(12, 30, 51, 0.9)),
    url("/images/decorative/decor_2.webp") center/cover;
  min-height: 360px;
}

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

#info-6 .live-panel {
  background: rgba(22, 44, 70, 0.85);
  border: 1px solid var(--border);
  padding: 24px;
  backdrop-filter: blur(4px);
}

#info-6 .pulse {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--primary);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 10px;
  font-family: var(--font-display);
}

#info-6 .pulse::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--primary);
  animation: pulseDot 1.4s ease infinite;
}

@keyframes pulseDot {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.35;
    transform: scale(0.7);
  }
}

#info-7 {
  background: var(--bg);
}

#info-7 .support-rail {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 28px;
  align-items: start;
}

#info-7 .support-rail .decor-wrap img {
  width: 100%;
  max-width: 200px;
  max-height: 280px;
  object-fit: cover;
  border: 1px solid var(--border);
  transform: rotate(-2deg);
}

#info-7 .channel-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

#info-7 .channel-list span {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 8px 14px;
  font-size: 12px;
  color: var(--text);
  font-family: var(--font-display);
  letter-spacing: 0.04em;
}

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

#info-8 .bonus-stack {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  align-items: center;
  max-width: 720px;
}

#info-8 .steps {
  counter-reset: step;
  list-style: none;
  padding: 0;
  margin: 16px 0 0;
}

#info-8 .steps li {
  counter-increment: step;
  position: relative;
  padding: 12px 12px 12px 48px;
  border-bottom: 1px solid var(--border);
  color: var(--muted);
  font-size: 14px;
}

#info-8 .steps li::before {
  content: counter(step);
  position: absolute;
  left: 0;
  top: 10px;
  width: 32px;
  height: 32px;
  background: var(--primary);
  color: #0C1E33;
  font-weight: 800;
  font-family: var(--font-display);
  display: flex;
  align-items: center;
  justify-content: center;
  clip-path: polygon(0 0, calc(100% - 6px) 0, 100% 6px, 100% 100%, 6px 100%, 0 calc(100% - 6px));
}

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

#info-9 .review-cols {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 18px;
}

#info-9 .review-cols > div {
  border-top: 3px solid var(--primary);
  padding-top: 14px;
}

#info-9 .review-cols h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  margin-bottom: 8px;
  color: var(--accent);
}

#info-9 .mosaic {
  margin-top: 24px;
  height: 160px;
  background-image: url("/images/decorative/decor_4.jpg");
  background-size: cover;
  background-position: center;
  clip-path: polygon(0 12%, 100% 0, 100% 88%, 0 100%);
  border: 1px solid var(--border);
  max-width: 100%;
}

#info-10 {
  background: var(--bg);
  padding-bottom: 72px;
}

#info-10 .rugby-frame {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  max-width: 760px;
}

#info-10 .quote {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--text);
  border-left: 4px solid var(--accent);
  padding-left: 16px;
  margin: 18px 0;
  transform: rotate(-0.3deg);
}

#info-10 .decor-wrap img {
  transform: rotate(1.5deg);
  border: 1px solid var(--border);
  max-width: 100%;
}

@media (max-width: 800px) {
  .hero-card {
    padding: 24px;
  }

  #info-1 .info-inner,
  #info-2 .split-row,
  #info-4 .odds-layout,
  #info-5 .criteria-grid,
  #info-6 .info-inner,
  #info-7 .support-rail,
  #info-8 .bonus-stack,
  #info-9 .review-cols,
  #info-10 .rugby-frame {
    grid-template-columns: 1fr;
  }

  #info-5 .criteria-grid article:nth-child(2) {
    margin-top: 0;
  }

  .offers-section {
    background-attachment: scroll;
  }

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

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

  #info-1 .info-visual,
  #info-9 .mosaic,
  #info-6 {
    max-width: 100%;
    overflow: hidden;
  }

  #info-7 .support-rail .decor-wrap img {
    max-width: 100%;
    max-height: 200px;
  }

  .decor-img {
    max-width: 100%;
    max-height: 200px;
  }
}

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

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

  .info-block,
  .offers-section,
  .hero {
    overflow-x: hidden;
    max-width: 100%;
  }

  .decor-img {
    max-width: 100%;
    max-height: 160px;
  }
}
