.hero {
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 72px 24px;
  position: relative;
  background:
    radial-gradient(circle at 30% 50%, rgba(236, 72, 153, 0.15) 0%, transparent 70%),
    linear-gradient(180deg, var(--bg) 0%, var(--surface) 100%);
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 40% at 70% 20%, rgba(167, 139, 250, 0.12) 0%, transparent 60%);
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 8%;
  right: 8%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(167, 139, 250, 0.55), rgba(236, 72, 153, 0.3), transparent);
  box-shadow: 0 0 14px rgba(167, 139, 250, 0.45);
}

.hero-inner {
  max-width: 720px;
  position: relative;
  z-index: 1;
  animation: hero-rise 1.1s ease both;
}

.hero h1 {
  font-size: clamp(2rem, 4.5vw, 3.1rem);
  margin-bottom: 16px;
  letter-spacing: 0.02em;
}

.hero p {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.65;
  max-width: 540px;
  margin: 0 auto;
}

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

.offers-section {
  padding: 80px 24px;
  position: relative;
  background-color: var(--surface);
  background-image:
    linear-gradient(180deg, rgba(11, 6, 20, 0.82) 0%, rgba(21, 12, 42, 0.9) 100%),
    url("/images/offers_bg/offers_bg.webp");
  background-size: cover;
  background-position: center;
}

.offers-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 20%, rgba(167, 139, 250, 0.12), transparent 55%);
  pointer-events: none;
}

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

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

.offers-header h2 {
  font-size: 1.85rem;
  color: var(--text);
}

.offers-header p {
  color: var(--muted);
  margin-top: 12px;
  font-size: 15px;
}

.offers-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}

.offer-card {
  background: linear-gradient(145deg, #1a472a 0%, #0d2818 100%);
  border-radius: 0;
  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.25);
  max-width: 360px;
  width: 100%;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.offer-card-logo {
  width: 200px;
  height: 64px;
  margin: 24px auto 0;
  background: rgba(255, 255, 255, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

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

.offer-card-body {
  padding: 20px 24px 24px;
  color: #ffffff;
}

.offer-bonus-group {
  margin-bottom: 12px;
}

.offer-bonus {
  font-size: 1.05rem;
  font-weight: 700;
  color: #c8e6c9;
  display: block;
  word-break: break-word;
  line-height: 1.35;
}

.offer-terms {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.55);
  display: block;
  margin-top: 4px;
}

.offer-cta {
  display: inline-block;
  background: #ffffff;
  color: #0d2818;
  padding: 12px 24px;
  font-size: 13px;
  font-weight: 700;
  transition: background 0.3s ease;
}

.offer-cta:hover {
  background: #e8f5e9;
  color: #0d2818;
}

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

.info-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 20%;
  right: 20%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(167, 139, 250, 0.4), transparent);
  box-shadow: 0 0 8px rgba(167, 139, 250, 0.25);
}

.info-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.info-section h2 {
  font-size: clamp(1.4rem, 2.5vw, 1.85rem);
  margin-bottom: 16px;
}

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

.info-cta {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 22px;
  border: 1px solid rgba(167, 139, 250, 0.5);
  color: var(--primary);
  font-weight: 600;
  font-size: 14px;
  transition: background 0.4s ease, color 0.4s ease, border-color 0.4s ease;
}

.info-cta:hover {
  background: rgba(167, 139, 250, 0.15);
  color: var(--text);
  border-color: var(--primary);
}

#info-1 {
  background: linear-gradient(135deg, rgba(21, 12, 42, 0.5) 0%, transparent 100%);
}

#info-1 .layout-split {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: center;
}

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

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

#info-2 .layout-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 24px;
}

#info-2 .step-card {
  padding: 20px;
  border-left: 2px solid rgba(167, 139, 250, 0.55);
  background: rgba(11, 6, 20, 0.4);
}

#info-2 .step-card strong {
  display: block;
  color: var(--primary);
  font-family: var(--font-serif);
  margin-bottom: 8px;
  font-size: 1.05rem;
}

#info-2 .step-card p {
  margin: 0;
  font-size: 14px;
}

#info-3 .layout-center {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}

#info-3 .decor-band {
  margin-top: 28px;
  height: 180px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  background-image: url("/images/decorative/decor_2.webp");
  background-size: cover;
  background-position: center;
  border: 1px solid var(--border);
  box-shadow: 0 0 30px rgba(167, 139, 250, 0.15);
}

#info-4 {
  background:
    radial-gradient(circle at 90% 20%, rgba(236, 72, 153, 0.08), transparent 45%),
    var(--bg);
}

#info-4 .layout-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: start;
}

#info-4 ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

#info-4 li {
  padding: 14px 16px;
  background: var(--surface);
  border-bottom: 1px solid rgba(167, 139, 250, 0.25);
  color: var(--muted);
  font-size: 14px;
}

#info-5 .layout-mosaic {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: stretch;
}

#info-5 .mosaic-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

#info-5 .mosaic-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--surface);
  padding: 24px;
  border: 1px solid var(--border);
}

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

#info-6 .layout-rail {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 28px;
  align-items: start;
}

#info-6 .rail-accent {
  width: 4px;
  min-height: 100%;
  background: linear-gradient(180deg, var(--primary), var(--accent), rgba(167, 139, 250, 0.2));
  box-shadow: 0 0 12px rgba(167, 139, 250, 0.4);
  justify-self: center;
}

#info-6 .slot-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

#info-6 .slot-tags span {
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--primary);
  border: 1px solid rgba(167, 139, 250, 0.35);
  padding: 6px 12px;
}

#info-7 .layout-wide {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

#info-7 .bg-strip {
  height: 200px;
  width: 100%;
  max-width: 100%;
  background-image:
    linear-gradient(90deg, rgba(11, 6, 20, 0.55), rgba(21, 12, 42, 0.35)),
    url("/images/decorative/decor_4.webp");
  background-size: cover;
  background-position: center;
  border-top: 1px solid rgba(167, 139, 250, 0.3);
  border-bottom: 1px solid rgba(236, 72, 153, 0.25);
  overflow: hidden;
}

#info-7 .two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

#info-8 {
  background:
    linear-gradient(180deg, transparent, rgba(21, 12, 42, 0.6)),
    var(--bg);
}

#info-8 .layout-quote {
  max-width: 720px;
  margin: 0 auto;
  padding: 36px 32px;
  border: 1px solid var(--border);
  background: rgba(21, 12, 42, 0.5);
  position: relative;
}

#info-8 .layout-quote::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 40px;
  width: 80px;
  height: 2px;
  background: var(--primary);
  box-shadow: 0 0 10px rgba(167, 139, 250, 0.6);
}

#info-8 .pull {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: var(--text);
  margin: 20px 0;
  line-height: 1.5;
}

#info-9 .layout-aside {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 36px;
  align-items: center;
}

#info-9 .aside-panel {
  padding: 20px;
  background: var(--surface);
  border: 1px solid var(--border);
}

#info-9 .aside-panel h3 {
  font-size: 1rem;
  color: var(--primary);
  margin-bottom: 10px;
}

#info-9 .aside-panel ul {
  list-style: disc;
  padding-left: 18px;
  color: var(--muted);
  font-size: 14px;
}

#info-9 .aside-panel li {
  margin-bottom: 6px;
}

#info-10 {
  background: var(--surface);
  padding-bottom: 96px;
}

#info-10 .layout-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 24px;
}

#info-10 .mini-card {
  padding: 22px;
  background: rgba(11, 6, 20, 0.55);
  border-top: 2px solid rgba(167, 139, 250, 0.5);
  transition: transform 0.5s ease, border-color 0.5s ease;
}

#info-10 .mini-card:hover {
  transform: translateY(-4px);
  border-color: var(--accent);
}

#info-10 .mini-card h3 {
  font-size: 1.05rem;
  margin-bottom: 8px;
  color: var(--text);
}

#info-10 .mini-card p {
  margin: 0;
  font-size: 14px;
}

@media (max-width: 900px) {
  .hero {
    min-height: auto;
    padding: 48px 24px;
  }

  #info-1 .layout-split,
  #info-2 .layout-steps,
  #info-4 .layout-list,
  #info-5 .layout-mosaic,
  #info-7 .two-col,
  #info-9 .layout-aside,
  #info-10 .layout-cards {
    grid-template-columns: 1fr;
  }

  #info-6 .layout-rail {
    grid-template-columns: 1fr;
  }

  #info-6 .rail-accent {
    width: 100%;
    height: 3px;
    min-height: 0;
  }

  .offer-card-logo {
    width: 180px;
    height: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
  }

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

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

  .decor-wrap,
  #info-3 .decor-band,
  #info-7 .bg-strip {
    max-width: 100%;
    overflow: hidden;
  }
}

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

  .offers-section {
    padding: 56px 16px;
  }

  .offer-card-logo {
    width: 160px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
  }

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

  .offer-bonus {
    font-size: 0.92rem;
    overflow-wrap: anywhere;
    word-break: break-word;
  }

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

  .decor-wrap,
  #info-3 .decor-band,
  #info-5 .mosaic-visual,
  #info-7 .bg-strip {
    max-width: 100%;
    width: 100%;
    overflow: hidden;
  }

  #info-3 .decor-band {
    height: 140px;
  }

  #info-7 .bg-strip {
    height: 160px;
  }

  .info-section {
    padding: 48px 16px;
  }
}
