.hero {
  position: relative;
  background: var(--bg);
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}

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

.hero h1 {
  font-family: var(--font-mono);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  color: var(--text);
  margin-bottom: 16px;
  max-width: 600px;
  line-height: 1.15;
}

.hero p {
  font-size: 15px;
  color: var(--muted);
  max-width: 520px;
  line-height: 1.6;
}

.hero-deco {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 35%;
  max-width: 350px;
  opacity: 0.5;
  object-fit: contain;
  pointer-events: none;
}

.offers-section {
  position: relative;
  padding: 48px 16px;
  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(255, 249, 246, 0.92);
}

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

.offers-section h2 {
  font-family: var(--font-mono);
  font-size: 22px;
  margin-bottom: 8px;
  color: var(--text);
}

.offers-intro {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 28px;
  max-width: 600px;
}

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

.offer-card {
  background: #1a1a2e;
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: transform 0.2s;
}

.offer-card:hover {
  transform: translateY(-2px);
}

.offer-card-logo {
  width: 180px;
  height: 80px;
  margin: 20px auto 0;
  background: #16213e;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  flex-shrink: 0;
}

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

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

.offer-bonus {
  font-family: var(--font-mono);
  font-size: 14px;
  font-weight: 700;
  color: #f0c040;
  margin-bottom: 4px;
  word-break: break-word;
  overflow-wrap: break-word;
  line-height: 1.35;
}

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

.offer-desc {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 14px;
  line-height: 1.4;
  flex: 1;
}

.offer-cta {
  display: block;
  text-align: center;
  padding: 10px;
  background: #e94560;
  color: #fff;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
}

.offer-cta:hover {
  background: #c73a52;
  color: #fff;
}

.info-section {
  padding: 40px 16px;
  border-bottom: 1px solid var(--border);
}

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

.info-section h2 {
  font-family: var(--font-mono);
  font-size: 18px;
  margin-bottom: 12px;
  color: var(--text);
}

.info-section p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.65;
}

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

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

.stat-box {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 12px;
  text-align: center;
  border-radius: 4px;
}

.stat-box strong {
  display: block;
  font-family: var(--font-mono);
  font-size: 18px;
  color: var(--primary);
}

.stat-box span {
  font-size: 10px;
  color: var(--muted);
  text-transform: uppercase;
}

.info-1-deco {
  max-width: 200px;
  max-height: 200px;
  object-fit: contain;
  border-radius: 4px;
}

.info-2-layout {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 28px;
}

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

.info-2-item {
  padding: 12px;
  background: var(--bg);
  border-left: 3px solid var(--accent);
  font-size: 12px;
  font-family: var(--font-mono);
}

.info-3-layout {
  display: flex;
  gap: 32px;
  align-items: stretch;
}

.info-3-visual {
  flex: 0 0 280px;
  background-image: url('/images/decorative/decor_3.jpg');
  background-size: cover;
  background-position: center;
  border-radius: 8px;
  min-height: 200px;
  max-width: 500px;
  max-height: 320px;
}

.info-3-text {
  flex: 1;
}

.info-3-list {
  list-style: none;
  margin-top: 12px;
}

.info-3-list li {
  padding: 8px 0;
  border-bottom: 1px dashed var(--border);
  font-size: 12px;
  color: var(--muted);
  font-family: var(--font-mono);
}

.info-4-layout {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.info-4-col {
  padding: 20px;
  background: var(--surface);
  border-radius: 8px;
  border: 1px solid var(--border);
}

.info-4-col h3 {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--primary);
  margin-bottom: 8px;
}

.info-5-layout {
  position: relative;
  padding-left: 24px;
  border-left: 4px solid var(--secondary);
}

.info-5-channels {
  display: flex;
  gap: 16px;
  margin-top: 16px;
  flex-wrap: wrap;
}

.info-5-channel {
  padding: 8px 14px;
  background: var(--surface);
  border: 1px solid var(--border);
  font-size: 11px;
  font-family: var(--font-mono);
  border-radius: 4px;
}

.info-6-layout {
  background: linear-gradient(135deg, rgba(112, 130, 56, 0.08) 0%, var(--surface) 100%);
  border-radius: 8px;
  padding: 28px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
}

.info-6-deco {
  max-width: 180px;
  max-height: 180px;
  object-fit: contain;
  opacity: 0.7;
}

.info-7-layout {
  columns: 2;
  column-gap: 32px;
}

.info-7-layout h2 {
  column-span: all;
}

.info-7-layout p {
  break-inside: avoid;
  margin-bottom: 12px;
}

.info-8-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
}

.info-8-text {
  padding: 28px;
  background: var(--surface);
}

.info-8-visual {
  background-image: url('/images/decorative/decor_5.jpg');
  background-size: cover;
  background-position: center;
  min-height: 220px;
}

.info-9-layout {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.info-9-tips {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.info-9-tip {
  padding: 16px;
  background: var(--surface);
  border-top: 3px solid var(--primary);
  font-size: 12px;
  color: var(--muted);
}

.info-9-tip strong {
  display: block;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text);
  margin-bottom: 6px;
  text-transform: uppercase;
}

.info-10-layout {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 28px;
  align-items: start;
}

.info-10-deco-wrap {
  overflow: hidden;
  max-width: 240px;
}

.info-10-deco {
  max-width: 240px;
  max-height: 200px;
  object-fit: contain;
  border-radius: 8px;
}

.info-10-steps {
  counter-reset: step;
  list-style: none;
  margin-top: 12px;
}

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

.info-10-steps li::before {
  content: counter(step);
  position: absolute;
  left: 0;
  top: 10px;
  width: 24px;
  height: 24px;
  background: var(--accent);
  color: #fff;
  font-family: var(--font-mono);
  font-size: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

@media (max-width: 768px) {
  .hero-inner {
    padding: 32px 16px;
    text-align: center;
  }

  .hero h1,
  .hero p {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-deco {
    display: none;
  }

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

  .info-1-deco {
    display: none;
  }

  .info-1-stats {
    grid-template-columns: 1fr;
  }

  .info-2-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .info-3-layout {
    flex-direction: column;
  }

  .info-3-visual {
    flex: none;
    width: 100%;
    max-width: 100%;
  }

  .info-4-layout {
    grid-template-columns: 1fr;
  }

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

  .info-6-deco {
    display: none;
  }

  .info-7-layout {
    columns: 1;
  }

  .info-8-layout {
    grid-template-columns: 1fr;
  }

  .info-9-tips {
    grid-template-columns: 1fr;
  }

  .info-10-layout {
    grid-template-columns: 1fr;
  }

  .info-10-deco-wrap {
    max-width: 100%;
  }

  .info-10-deco {
    max-width: 100%;
    width: 100%;
    object-fit: contain;
  }

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

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

@media (max-width: 375px) {
  .hero {
    overflow: hidden;
  }

  .info-3-visual,
  .info-8-visual {
    max-width: 100%;
    width: 100%;
  }

  .info-1-deco,
  .info-6-deco,
  .info-10-deco-wrap {
    max-width: 100%;
    overflow: hidden;
  }

  .info-10-deco {
    max-width: 100%;
    max-height: 160px;
    object-fit: contain;
  }
}
