.hero {
  max-width: var(--max-w);
  margin: 24px auto 0;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 16px;
  align-items: end;
}

.hero-left {
  min-height: 340px;
  background: var(--primary);
  border-radius: 8px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  box-shadow: var(--shadow-12);
  transform: rotate(-1deg);
  position: relative;
  overflow: hidden;
}

.hero-left::after {
  content: "";
  position: absolute;
  inset: 10px;
  border: 1px dashed rgba(255, 241, 242, 0.25);
  border-radius: 4px;
  pointer-events: none;
}

.hero-left h1 {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  position: relative;
  z-index: 1;
}

.hero-right {
  min-height: 220px;
  background: var(--secondary);
  color: #120609;
  border-radius: 8px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-end;
  text-align: right;
  box-shadow: var(--shadow-8);
  transform: rotate(1.2deg);
  position: relative;
}

.hero-right p {
  font-size: 1.05rem;
  font-weight: 600;
  max-width: 28ch;
  line-height: 1.45;
}

.hero-right .hero-cta {
  margin-top: 16px;
  background: #120609;
  color: var(--secondary);
  padding: 10px 16px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 0.9rem;
  box-shadow: var(--shadow-4);
}

.hero-right .hero-cta:hover {
  color: var(--text);
  opacity: 0.95;
}

.offers-section {
  margin-top: 56px;
  padding: 56px 20px;
  position: relative;
  background-image:
    linear-gradient(180deg, rgba(18, 6, 9, 0.82) 0%, rgba(18, 6, 9, 0.88) 100%),
    url("/images/offers_bg/offers_bg.webp");
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.offers-section::before {
  content: "";
  position: absolute;
  top: 18px;
  left: 12%;
  width: 120px;
  height: 18px;
  background: var(--secondary);
  opacity: 0.55;
  transform: rotate(-2deg);
  box-shadow: var(--shadow-2);
}

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

.offers-heading {
  margin-bottom: 28px;
}

.offers-heading h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: 8px;
}

.offers-heading p {
  color: var(--muted);
  max-width: 52ch;
}

.offers-grid {
  display: grid;
  gap: 16px;
}

.offer-card {
  display: grid;
  grid-template-columns: 140px 1fr auto;
  gap: 18px;
  align-items: center;
  background: #ffffff;
  border-radius: 10px;
  padding: 16px 20px;
  border: 1px solid #e5e7eb;
  box-shadow: 4px 4px 0 rgba(0, 0, 0, 0.25);
}

.offer-card:nth-child(1) { transform: rotate(-1deg); }
.offer-card:nth-child(2) { transform: rotate(0.8deg); }
.offer-card:nth-child(3) { transform: rotate(-0.6deg); }
.offer-card:nth-child(4) { transform: rotate(1.2deg); }

.offer-logo {
  width: 120px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #f8fafc;
  border-radius: 6px;
  flex-shrink: 0;
}

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

.offer-name {
  font-size: 1.05rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 4px;
}

.offer-bonus {
  font-size: clamp(12px, 3.4vw, 15px);
  font-weight: 700;
  color: #1e293b;
  line-height: 1.35;
  overflow-wrap: anywhere;
  word-break: break-word;
  max-width: 100%;
  hyphens: auto;
}

.offer-terms {
  display: block;
  font-size: 11px;
  color: #64748b;
  font-weight: 500;
  margin-top: 4px;
}

.offer-desc {
  margin-top: 8px;
  font-size: 12px;
  color: #64748b;
  line-height: 1.4;
}

.offer-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  background: #6366f1;
  color: #ffffff !important;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
  box-shadow: 2px 2px 0 rgba(15, 23, 42, 0.2);
}

.offer-cta:hover {
  opacity: 0.92;
  color: #ffffff !important;
}

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

.info-section::before {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  border-radius: 8px;
  background: rgba(190, 18, 60, 0.08);
  box-shadow: var(--shadow-4);
  pointer-events: none;
}

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

.info-section h2 {
  font-size: clamp(1.35rem, 2.6vw, 1.85rem);
  font-weight: 700;
  margin-bottom: 14px;
}

.info-section p {
  color: var(--muted);
  margin-bottom: 12px;
  max-width: 70ch;
}

.topic-cta {
  display: inline-flex;
  margin-top: 16px;
  padding: 12px 18px;
  background: var(--primary);
  color: var(--text) !important;
  border-radius: 6px;
  font-weight: 700;
  box-shadow: var(--shadow-4);
  transform: rotate(-0.5deg);
}

.topic-cta:hover {
  color: var(--text) !important;
  opacity: 0.9;
}

#info-1::before { top: 20px; right: 8%; transform: rotate(8deg); }
#info-1 .info-inner {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 28px;
  align-items: start;
}

.pay-stack {
  display: grid;
  gap: 10px;
}

.pay-chip {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 14px 16px;
  box-shadow: var(--shadow-4);
  font-weight: 600;
}

.pay-chip:nth-child(1) { transform: rotate(-1.5deg); }
.pay-chip:nth-child(2) { transform: rotate(1deg); }
.pay-chip:nth-child(3) { transform: rotate(-0.5deg); }
.pay-chip:nth-child(4) { transform: rotate(1.8deg); }

#info-2 {
  background: rgba(31, 10, 14, 0.55);
}

#info-2::before { bottom: 10%; left: 4%; background: rgba(250, 204, 21, 0.08); }
#info-2 .info-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
}

#info-2 .live-quote {
  background: var(--primary);
  color: var(--text);
  padding: 20px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 1.05rem;
  max-width: 280px;
  box-shadow: var(--shadow-8);
  transform: rotate(1.5deg);
}

#info-3::before { top: 30%; right: 5%; }
#info-3 .split-band {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 18px;
}

#info-3 .band-panel {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 18px;
  box-shadow: var(--shadow-8);
  min-height: 160px;
  background-size: cover;
  background-position: center;
}

#info-3 .band-panel:first-child {
  transform: rotate(-1deg);
  background-image:
    linear-gradient(160deg, rgba(18, 6, 9, 0.88), rgba(190, 18, 60, 0.55)),
    url("/images/decorative/decor_2.webp");
}

#info-3 .band-panel:last-child {
  transform: rotate(1deg);
}

#info-3 .band-panel h3 {
  color: var(--secondary);
  margin-bottom: 8px;
  font-size: 1.05rem;
}

#info-4 {
  background:
    linear-gradient(120deg, rgba(190, 18, 60, 0.12), transparent 40%),
    rgba(18, 6, 9, 0.4);
}

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

#info-4 .step {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 18px;
  box-shadow: var(--shadow-8);
}

#info-4 .step:nth-child(1) { transform: rotate(-1.2deg); }
#info-4 .step:nth-child(2) { transform: rotate(0.6deg); }
#info-4 .step:nth-child(3) { transform: rotate(-0.4deg); }

#info-4 .step strong {
  display: block;
  color: var(--secondary);
  margin-bottom: 6px;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

#info-4 .decor-aside {
  margin-top: 24px;
}

#info-5::before { top: 15%; left: 6%; transform: rotate(-12deg); }
#info-5 .bonus-layout {
  display: grid;
  grid-template-columns: 1.4fr 0.6fr;
  gap: 20px;
}

#info-5 .bonus-rail {
  background: var(--secondary);
  color: #120609;
  border-radius: 8px;
  padding: 20px;
  box-shadow: var(--shadow-12);
  transform: rotate(1.8deg);
  font-weight: 700;
}

#info-5 .bonus-rail li {
  margin: 8px 0 8px 1rem;
  color: #120609;
}

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

#info-6::before { right: 10%; bottom: 20%; background: rgba(34, 197, 94, 0.08); }
#info-6 .roulette-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

#info-6 .roulette-tag {
  padding: 10px 14px;
  background: rgba(18, 6, 9, 0.7);
  border: 1px solid var(--border);
  border-radius: 4px;
  box-shadow: var(--shadow-2);
  font-size: 0.9rem;
  font-weight: 600;
}

#info-6 .roulette-tag:nth-child(odd) { transform: rotate(-1deg); }
#info-6 .roulette-tag:nth-child(even) { transform: rotate(1.2deg); }

#info-7::before { left: 3%; top: 25%; }
#info-7 .online-grid {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 24px;
  align-items: start;
  margin-top: 8px;
}

#info-8 {
  background:
    radial-gradient(circle at 90% 20%, rgba(250, 204, 21, 0.1), transparent 35%),
    rgba(31, 10, 14, 0.45);
}

#info-8::before { display: none; }
#info-8 .two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 12px;
}

#info-8 .col-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 20px;
  box-shadow: var(--shadow-8);
}

#info-8 .col-card:first-child { transform: rotate(-1deg); }
#info-8 .col-card:last-child { transform: rotate(1deg); }

#info-8 .col-card h3 {
  color: var(--accent);
  margin-bottom: 8px;
}

#info-9::before { right: 4%; top: 10%; }
#info-9 .review-metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 18px;
}

#info-9 .metric {
  text-align: center;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 16px 10px;
  box-shadow: var(--shadow-4);
}

#info-9 .metric:nth-child(1) { transform: rotate(-1.5deg); }
#info-9 .metric:nth-child(2) { transform: rotate(1deg); }
#info-9 .metric:nth-child(3) { transform: rotate(-0.8deg); }
#info-9 .metric:nth-child(4) { transform: rotate(1.4deg); }

#info-9 .metric strong {
  display: block;
  font-size: 1.4rem;
  color: var(--secondary);
  margin-bottom: 4px;
}

#info-9 .metric span {
  font-size: 0.82rem;
  color: var(--muted);
}

#info-10 {
  background: linear-gradient(180deg, rgba(34, 197, 94, 0.06), transparent 50%);
}

#info-10::before { left: 12%; bottom: 8%; transform: rotate(6deg); }
#info-10 .license-block {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  max-width: 720px;
}

#info-10 .license-note {
  border-left: 4px solid var(--accent);
  padding: 14px 18px;
  background: var(--surface);
  border-radius: 0 6px 6px 0;
  box-shadow: var(--shadow-4);
  transform: rotate(-0.3deg);
}

@keyframes paperFloat {
  0%, 100% { transform: translateY(0) rotate(-1deg); }
  50% { transform: translateY(-6px) rotate(-0.5deg); }
}

@keyframes sheetIn {
  from { opacity: 0; transform: translateY(18px) rotate(-1deg); }
  to { opacity: 1; transform: translateY(0) rotate(-1deg); }
}

@keyframes pulseSoft {
  0%, 100% { box-shadow: var(--shadow-8); }
  50% { box-shadow: var(--shadow-12); }
}

.hero-left {
  animation: sheetIn 0.7s ease both, paperFloat 6s ease-in-out 0.7s infinite;
}

.hero-right {
  animation: sheetIn 0.8s 0.12s ease both;
}

.offer-card {
  animation: pulseSoft 5s ease-in-out infinite;
}

.offer-card:nth-child(2) { animation-delay: 0.4s; }
.offer-card:nth-child(3) { animation-delay: 0.8s; }
.offer-card:nth-child(4) { animation-delay: 1.2s; }

@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
  }

  .hero-left,
  .hero-right {
    min-height: 200px;
    width: 100%;
    transform: none;
  }

  #info-1 .info-inner,
  #info-2 .info-inner,
  #info-3 .split-band,
  #info-4 .steps,
  #info-5 .bonus-layout,
  #info-7 .online-grid,
  #info-8 .two-col,
  #info-9 .review-metrics {
    grid-template-columns: 1fr;
  }

  #info-2 .live-quote {
    max-width: none;
  }

  .offer-card {
    grid-template-columns: 1fr;
    text-align: center;
    transform: none !important;
  }

  .offer-logo {
    width: 120px;
    height: 72px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
  }

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

  .offer-cta {
    width: 100%;
  }

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

  .decor-wrap {
    max-width: 100%;
    overflow: hidden;
  }

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

  .mosaic-band {
    max-width: 100%;
    overflow: hidden;
  }
}

@media (max-width: 375px) {
  .decor-img {
    max-width: 100%;
    max-height: 180px;
  }

  .offer-logo {
    width: 100px;
    height: 60px;
  }

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

  .offer-bonus {
    font-size: 13px;
  }
}
