.hero {
  position: relative;
  min-height: 420px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
}

.hero__left {
  background: var(--primary);
  clip-path: polygon(0 0, 100% 0, 0 100%);
  display: flex;
  align-items: center;
  padding: 64px 48px 64px 24px;
  position: relative;
  z-index: 2;
}

.hero__left h1 {
  font-size: clamp(32px, 5vw, 52px);
  line-height: 1.1;
  color: var(--text);
  text-shadow: 4px 4px 0 var(--bg), 0 0 20px rgba(250, 204, 21, 0.5);
  font-family: "Courier New", monospace;
  letter-spacing: -0.02em;
}

.hero__right {
  background: url("/images/decorative/decor_10.webp") center/cover no-repeat;
  clip-path: polygon(100% 0, 100% 100%, 0 100%);
  position: relative;
}

.hero__right::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(220, 38, 38, 0.4) 0%, rgba(9, 1, 2, 0.6) 100%);
}

.hero__subtitle {
  background: var(--surface);
  padding: 16px 24px;
  text-align: center;
  font-size: 15px;
  color: var(--muted);
  border-bottom: 2px solid var(--neon-pink);
  font-weight: 600;
  font-style: normal;
}

@media (max-width: 768px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero__left {
    clip-path: none;
    padding: 48px 24px;
  }

  .hero__right {
    display: none;
  }

  .offer-card__logo {
    width: 180px;
    height: 72px;
  }

  .offer-card__logo img {
    object-fit: contain;
    object-position: center;
  }

  .info-1-img,
  .info-2-visual img,
  .info-4-img-wrap img {
    max-width: 100%;
    width: 100%;
    height: auto;
  }

  .info-section__inner,
  .info-1-grid,
  .offers-section__inner {
    overflow-x: hidden;
    max-width: 100%;
  }
}

.offers-section {
  padding: 64px 24px;
  position: relative;
  background:
    linear-gradient(180deg, rgba(22, 3, 5, 0.95) 0%, rgba(9, 1, 2, 0.98) 100%),
    repeating-linear-gradient(
      45deg,
      rgba(220, 38, 38, 0.05) 0px,
      rgba(220, 38, 38, 0.05) 2px,
      transparent 2px,
      transparent 12px
    );
}

.offers-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(250, 204, 21, 0.08) 0%, transparent 60%);
  pointer-events: none;
}

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

.offers-section h2 {
  font-size: 32px;
  text-align: center;
  margin-bottom: 40px;
  color: var(--accent);
  text-shadow: 0 0 16px rgba(250, 204, 21, 0.4);
  font-family: "Courier New", monospace;
}

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

.offer-card {
  background: #fff;
  border: 3px solid var(--neon-pink);
  box-shadow: 6px 6px 0 var(--neon-cyan);
  border-radius: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s, box-shadow 0.2s;
}

.offer-card:hover {
  transform: translate(-3px, -3px);
  box-shadow: 9px 9px 0 var(--neon-cyan);
}

.offer-card__logo {
  width: 200px;
  height: 80px;
  margin: 24px auto 0;
  padding: 0;
  background: #f8f8f8;
  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;
  max-height: none;
}

.offer-card__body {
  padding: 20px 24px 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.offer-card__name {
  font-size: 20px;
  color: #1a1a1a;
  margin-bottom: 8px;
  font-weight: 800;
}

.offer-card__bonus-wrap {
  margin-bottom: 12px;
}

.offer-card__bonus {
  font-size: 15px;
  color: #DC2626;
  font-weight: 800;
  display: block;
  word-break: break-word;
  overflow-wrap: break-word;
  line-height: 1.35;
}

.offer-card__terms {
  font-size: 11px;
  color: #888;
  font-weight: 600;
  font-style: normal;
  display: block;
  margin-top: 4px;
}

.offer-card__desc {
  font-size: 13px;
  color: #666;
  margin-bottom: 16px;
  font-weight: 600;
  font-style: normal;
  line-height: 1.5;
}

.offer-card__cta {
  margin-top: auto;
  display: inline-block;
  padding: 12px 20px;
  background: #DC2626;
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  text-align: center;
  border: none;
  cursor: pointer;
  text-decoration: none;
  font-style: italic;
}

.offer-card__cta:hover {
  background: #b91c1c;
  text-decoration: none;
}

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

.info-section__inner {
  max-width: 1200px;
  margin: 0 auto;
}

.info-section h2 {
  font-size: 26px;
  margin-bottom: 20px;
  color: var(--accent);
  font-family: "Courier New", monospace;
}

.info-section p {
  font-size: 15px;
  color: var(--text);
  margin-bottom: 14px;
  font-weight: 600;
  font-style: normal;
  line-height: 1.7;
}

.info-cta {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 24px;
  background: var(--primary);
  color: var(--text);
  font-weight: 800;
  font-size: 14px;
  box-shadow: var(--shadow-offset) var(--shadow-offset) 0 var(--accent);
  text-decoration: none;
}

.info-cta:hover {
  transform: translate(-2px, -2px);
  text-decoration: none;
}

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

.info-1-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: center;
}

.info-1-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.info-1-card {
  padding: 20px;
  background: var(--bg);
  border: 2px solid var(--neon-cyan);
  box-shadow: var(--shadow-offset) var(--shadow-offset) 0 var(--neon-pink);
}

.info-1-card h3 {
  font-size: 14px;
  color: var(--secondary);
  margin-bottom: 8px;
}

.info-1-card p {
  font-size: 13px;
  margin: 0;
}

.info-1-img {
  max-width: 500px;
  max-height: 320px;
  border: 2px solid var(--neon-pink);
  box-shadow: var(--shadow-offset) var(--shadow-offset) 0 var(--neon-cyan);
}

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

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

.info-2-zigzag {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

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

.info-2-row:nth-child(even) {
  grid-template-columns: 1fr 80px;
}

.info-2-row:nth-child(even) .info-2-num {
  order: 2;
}

.info-2-num {
  width: 64px;
  height: 64px;
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: var(--accent);
  box-shadow: 3px 3px 0 var(--neon-cyan);
  font-family: "Courier New", monospace;
}

.info-2-visual {
  margin-top: 24px;
  text-align: center;
}

.info-2-visual img {
  max-width: 500px;
  max-height: 320px;
  margin: 0 auto;
  border: 2px solid var(--accent);
}

#info-3 {
  background: var(--bg);
  border-top: 2px solid var(--border);
  border-bottom: 2px solid var(--border);
}

.info-3-band {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin: 24px 0;
}

.info-3-pill {
  padding: 12px 24px;
  background: var(--primary);
  color: var(--text);
  font-size: 14px;
  font-weight: 800;
  box-shadow: 3px 3px 0 var(--accent);
}

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

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

.info-4-mini {
  padding: 20px;
  background: var(--bg);
  border-left: 4px solid var(--secondary);
  text-align: center;
}

.info-4-mini h3 {
  font-size: 16px;
  color: var(--secondary);
  margin-bottom: 8px;
}

.info-4-mini p {
  font-size: 13px;
  margin: 0;
}

.info-4-img-wrap {
  margin-top: 28px;
  display: flex;
  justify-content: center;
}

.info-4-img-wrap img {
  max-width: 500px;
  max-height: 320px;
  border: 2px solid var(--neon-pink);
}

@media (max-width: 768px) {
  .info-4-grid {
    grid-template-columns: 1fr;
  }
}

#info-5 {
  background:
    linear-gradient(rgba(9, 1, 2, 0.88), rgba(9, 1, 2, 0.92)),
    url("/images/decorative/decor_4.webp") center/cover no-repeat;
  min-height: 320px;
}

.info-5-content {
  max-width: 700px;
}

.info-5-list {
  list-style: none;
  margin-top: 20px;
}

.info-5-list li {
  padding: 10px 0 10px 28px;
  position: relative;
  font-size: 15px;
  font-weight: 600;
  font-style: normal;
  color: var(--text);
}

.info-5-list li::before {
  content: "▸";
  position: absolute;
  left: 0;
  color: var(--accent);
}

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

.info-6-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 24px;
  font-size: 14px;
  font-weight: 600;
  font-style: normal;
}

.info-6-table th,
.info-6-table td {
  padding: 14px 16px;
  border: 1px solid var(--border);
  text-align: left;
}

.info-6-table th {
  background: var(--primary);
  color: var(--text);
}

.info-6-table td {
  background: var(--surface);
  color: var(--text);
}

#info-7 {
  background: linear-gradient(180deg, var(--surface) 0%, var(--bg) 100%);
}

.info-7-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 24px;
}

.info-7-quote {
  padding: 24px;
  border-left: 4px solid var(--accent);
  background: rgba(250, 204, 21, 0.06);
  font-size: 16px;
  color: var(--muted);
  font-style: italic;
  margin-bottom: 24px;
}

@media (max-width: 768px) {
  .info-7-columns {
    grid-template-columns: 1fr;
  }
}

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

.info-8-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 28px;
}

.info-8-step {
  text-align: center;
  padding: 20px 12px;
  background: var(--bg);
  border: 2px solid var(--neon-pink);
  position: relative;
}

.info-8-step-num {
  font-size: 32px;
  color: var(--primary);
  font-family: "Courier New", monospace;
  margin-bottom: 8px;
}

.info-8-step p {
  font-size: 13px;
  margin: 0;
}

.info-8-img {
  margin-top: 28px;
  text-align: center;
}

.info-8-img img {
  max-width: 500px;
  max-height: 320px;
  margin: 0 auto;
  border: 2px solid var(--neon-cyan);
}

@media (max-width: 900px) {
  .info-8-steps {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

.info-9-split {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 32px;
  align-items: center;
}

.info-9-features {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 20px;
}

.info-9-feature {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 16px;
  background: var(--surface);
  border: 1px solid var(--border);
}

.info-9-feature-icon {
  font-size: 24px;
  color: var(--accent);
  flex-shrink: 0;
}

.info-9-feature p {
  margin: 0;
  font-size: 14px;
}

.info-9-img img {
  max-width: 280px;
  max-height: 320px;
  border: 2px solid var(--secondary);
  box-shadow: var(--shadow-offset) var(--shadow-offset) 0 var(--primary);
}

@media (max-width: 768px) {
  .info-9-split {
    grid-template-columns: 1fr;
  }

  .info-9-img {
    text-align: center;
  }

  .info-9-img img {
    max-width: 100%;
  }
}

#info-10 {
  background:
    linear-gradient(135deg, var(--surface) 0%, var(--bg) 100%);
  border-top: 3px solid var(--primary);
}

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

.info-10-block {
  padding: 24px;
  background: var(--bg);
  border: 2px solid var(--border);
  transition: border-color 0.2s, transform 0.2s;
}

.info-10-block:hover {
  border-color: var(--neon-cyan);
  transform: translateY(-2px);
}

.info-10-block h3 {
  font-size: 16px;
  color: var(--secondary);
  margin-bottom: 10px;
}

.info-10-block p {
  font-size: 13px;
  margin: 0;
}

.info-10-img {
  margin-top: 28px;
  text-align: right;
}

.info-10-img img {
  max-width: 500px;
  max-height: 320px;
  display: inline-block;
  border: 2px solid var(--accent);
}

@media (max-width: 768px) {
  .info-10-blocks {
    grid-template-columns: 1fr;
  }
}

.arcade-glow {
  text-shadow: 0 0 8px var(--neon-pink), 0 0 16px var(--neon-cyan);
}

.retro-vibrant-bg {
  background: linear-gradient(135deg, rgba(220, 38, 38, 0.15) 0%, rgba(249, 115, 22, 0.1) 50%, rgba(250, 204, 21, 0.08) 100%);
}
