.hero {
  position: relative;
  height: 60vh;
  min-height: 400px;
  background-image:
    linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.7) 100%),
    url('/images/decorative/decor_1.jpg');
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
}

.hero-content {
  padding: 48px 24px;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.hero h1 {
  font-size: clamp(28px, 5vw, 48px);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text);
  margin-bottom: 12px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8);
}

.hero p {
  font-size: 16px;
  color: var(--muted);
  max-width: 560px;
}

.offers-section {
  position: relative;
  padding: 64px 24px;
  background:
    linear-gradient(180deg, rgba(25, 11, 46, 0.95) 0%, rgba(43, 16, 85, 0.9) 100%),
    url('/images/offers_bg/offers_bg.jpg') center/cover no-repeat;
}

.offers-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(0deg, transparent, transparent 3px, rgba(57, 255, 20, 0.02) 3px, rgba(57, 255, 20, 0.02) 4px);
  pointer-events: none;
}

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

.offers-section h2 {
  font-size: 24px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 32px;
  text-align: center;
}

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

.offer-card {
  background: #1a1a2e;
  border: 2px solid #3d3d5c;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: border-color 0.2s ease;
}

.offer-card:hover {
  border-color: #ff6b35;
}

.offer-logo-wrap {
  width: 200px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #0f0f1a;
  text-decoration: none;
}

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

.offer-name {
  font-size: 20px;
  font-weight: bold;
  color: #ffffff;
}

.offer-bonus-group {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.offer-bonus {
  font-size: 15px;
  color: #4ecdc4;
  word-break: break-word;
  overflow-wrap: break-word;
  line-height: 1.4;
}

.offer-terms {
  font-size: 11px;
  color: #888899;
}

.offer-desc {
  font-size: 12px;
  color: #9999aa;
  line-height: 1.5;
}

.offer-cta {
  display: inline-block;
  padding: 12px 20px;
  background: #ff6b35;
  color: #ffffff;
  text-decoration: none;
  text-align: center;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border: none;
  cursor: pointer;
  font-family: inherit;
  margin-top: auto;
  box-sizing: border-box;
}

.offer-cta:hover {
  background: #ff8555;
}

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

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

.info-section h2 {
  font-size: 22px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 20px;
  color: var(--accent);
}

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

.info-cta-link {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 24px;
  background: var(--primary);
  color: var(--surface);
  text-decoration: none;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border: 1px solid var(--primary);
}

.info-cta-link:hover {
  background: var(--accent);
  border-color: var(--accent);
}

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

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

.info-1 .info-visual {
  border: 1px solid var(--border);
  padding: 8px;
  background: var(--bg);
}

.info-1 .info-visual img {
  max-width: 100%;
  max-height: 320px;
  object-fit: cover;
  display: block;
}

.info-2 {
  background: linear-gradient(90deg, var(--bg) 50%, rgba(25, 11, 46, 0.8) 50%);
}

.info-2 .info-inner {
  display: grid;
  grid-template-columns: 240px 1fr 220px;
  gap: 32px;
  align-items: start;
}

.info-2 .odds-panel {
  background: rgba(57, 255, 20, 0.05);
  border: 1px solid rgba(57, 255, 20, 0.2);
  padding: 24px;
}

.info-2 .odds-panel ul {
  list-style: none;
  margin-top: 16px;
}

.info-2 .odds-panel li {
  padding: 8px 0;
  border-bottom: 1px dotted var(--border);
  color: var(--muted);
  font-size: 13px;
}

.info-3 {
  background: var(--bg);
}

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

.info-3 .market-card {
  padding: 20px;
  background: var(--surface);
  border: 1px solid var(--border);
  text-align: center;
}

.info-3 .market-card h3 {
  font-size: 14px;
  color: var(--secondary);
  margin-bottom: 8px;
  text-transform: uppercase;
}

.info-3 .market-card p {
  font-size: 12px;
  margin: 0;
}

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

.info-4 .info-inner {
  display: flex;
  gap: 32px;
  align-items: flex-start;
}

.info-4 .sport-list {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.info-4 .sport-item {
  padding: 14px 16px;
  background: var(--bg);
  border-left: 3px solid var(--primary);
  font-size: 13px;
  color: var(--text);
}

.info-4 .info-side-img {
  flex-shrink: 0;
  max-width: 320px;
}

.info-4 .info-side-img img {
  max-width: 100%;
  max-height: 320px;
  object-fit: cover;
}

.info-5 {
  background: var(--bg);
}

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

.info-5 .prematch-item {
  padding: 16px;
  background: rgba(112, 214, 255, 0.08);
  border: 1px solid rgba(112, 214, 255, 0.2);
  font-size: 12px;
  color: var(--muted);
  text-align: center;
}

.info-6 {
  background: linear-gradient(135deg, var(--surface) 0%, var(--bg) 100%);
}

.info-6 .info-inner {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 40px;
  align-items: center;
}

.info-6 .inplay-visual {
  position: relative;
  overflow: hidden;
  max-height: 320px;
}

.info-6 .inplay-visual img {
  width: 100%;
  max-height: 320px;
  object-fit: cover;
}

.info-6 .inplay-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--primary);
  color: var(--surface);
  padding: 4px 10px;
  font-size: 10px;
  text-transform: uppercase;
}

.info-7 {
  background: var(--surface);
}

.info-7 .multi-steps {
  display: flex;
  gap: 0;
  margin-top: 24px;
  counter-reset: step;
}

.info-7 .multi-step {
  flex: 1;
  padding: 20px 16px;
  background: var(--bg);
  border: 1px solid var(--border);
  position: relative;
}

.info-7 .multi-step::before {
  counter-increment: step;
  content: counter(step);
  display: block;
  font-size: 24px;
  color: var(--accent);
  margin-bottom: 8px;
}

.info-7 .multi-step h3 {
  font-size: 13px;
  color: var(--text);
  margin-bottom: 8px;
  text-transform: uppercase;
}

.info-7 .multi-step p {
  font-size: 12px;
  margin: 0;
}

.info-8 {
  background: var(--bg);
}

.info-8 .live-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 20px;
}

.info-8 .live-feature {
  padding: 24px;
  border: 1px dashed var(--border);
  background: rgba(255, 214, 112, 0.05);
}

.info-8 .live-feature h3 {
  font-size: 14px;
  color: var(--accent);
  margin-bottom: 10px;
}

.info-9 {
  background: var(--surface);
}

.info-9 .payment-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 20px;
}

.info-9 .payment-chip {
  padding: 12px 20px;
  background: var(--bg);
  border: 1px solid var(--border);
  font-size: 13px;
  color: var(--text);
}

.info-9 .payment-note {
  margin-top: 20px;
  padding: 16px;
  background: rgba(255, 112, 166, 0.08);
  border-left: 3px solid var(--primary);
  font-size: 13px;
}

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

.info-10 .start-checklist {
  list-style: none;
  margin-top: 20px;
}

.info-10 .start-checklist li {
  padding: 12px 16px 12px 36px;
  margin-bottom: 8px;
  background: var(--surface);
  border: 1px solid var(--border);
  font-size: 13px;
  color: var(--muted);
  position: relative;
}

.info-10 .start-checklist li::before {
  content: ">";
  position: absolute;
  left: 14px;
  color: var(--hud-green);
}

.info-10 .start-visual {
  margin-top: 24px;
  max-width: 500px;
}

.info-10 .start-visual img {
  max-width: 100%;
  max-height: 320px;
  object-fit: cover;
}

@media (max-width: 768px) {
  .hero {
    height: 40vh;
    min-height: 280px;
    align-items: center;
    justify-content: center;
    text-align: center;
  }

  .hero-content {
    padding: 24px;
  }

  .hero p {
    margin: 0 auto;
  }

  .info-1 .info-inner,
  .info-2 .info-inner,
  .info-4 .info-inner,
  .info-6 .info-inner {
    grid-template-columns: 1fr;
    flex-direction: column;
  }

  .info-3 .market-cards {
    grid-template-columns: 1fr;
  }

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

  .info-7 .multi-steps {
    flex-direction: column;
  }

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

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

  .offer-logo-wrap {
    width: 200px;
    height: 80px;
    overflow: hidden;
  }

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

  .info-visual,
  .info-side-img,
  .inplay-visual,
  .start-visual {
    max-width: 100%;
    overflow: hidden;
  }

  .info-visual img,
  .info-side-img img,
  .inplay-visual img,
  .start-visual img {
    max-width: 100%;
    width: 100%;
    height: auto;
    max-height: 220px;
    object-fit: cover;
  }
}
