.hero-strip {
  width: 100%;
  height: 120px;
  overflow: hidden;
  background-image: url("/images/decorative/decor_1.jpg");
  background-size: cover;
  background-position: center;
  position: relative;
}

.hero-strip::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, var(--bg) 100%);
}

.hero-section {
  padding: 40px 20px 56px;
  text-align: center;
  position: relative;
}

.hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 48px;
  background: linear-gradient(180deg, var(--primary), transparent);
  opacity: 0.5;
}

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

.hero-inner h1 {
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  color: var(--text);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
  font-weight: 400;
}

.hero-inner p {
  font-size: 17px;
  color: var(--muted);
  max-width: 600px;
  margin: 0 auto;
}

.hero-precision-tag {
  display: inline-block;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 12px;
  font-weight: 600;
}

.offers-section {
  position: relative;
  padding: 56px 20px;
  background-image:
    linear-gradient(180deg, rgba(255, 247, 237, 0.94) 0%, rgba(255, 247, 237, 0.88) 100%),
    url("/images/offers_bg/offers_bg.svg");
  background-size: cover;
  background-position: center;
}

.offers-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(234, 88, 12, 0.06) 0%, transparent 60%);
  pointer-events: none;
}

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

.offers-inner h2 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  margin-bottom: 8px;
  text-align: center;
}

.offers-sub {
  color: var(--muted);
  font-size: 15px;
  margin-bottom: 32px;
  text-align: center;
}

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

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

.offer-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(15, 13, 10, 0.2);
}

.offer-card-logo {
  width: 280px;
  height: 90px;
  margin: 0 auto;
  background: #fff;
  padding: 16px;
  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-card-body {
  padding: 18px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.offer-card-name {
  font-size: 1.1rem;
  margin-bottom: 10px;
  color: #fff;
}

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

.offer-bonus {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: #fbbf24;
  line-height: 1.35;
  word-wrap: break-word;
  overflow-wrap: break-word;
  hyphens: auto;
}

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

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

.offer-cta {
  margin-top: auto;
  padding: 11px 16px;
  background: #2563eb;
  color: #fff;
  border: none;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  text-align: center;
  transition: background 0.45s ease;
}

.offer-cta:hover {
  background: #1d4ed8;
}

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

.info-section:nth-child(odd) {
  background: var(--surface);
}

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

.info-inner h2 {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  margin-bottom: 16px;
  color: var(--text);
  font-weight: 400;
}

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

.info-cta-link {
  display: inline-block;
  margin-top: 18px;
  padding: 11px 22px;
  background: var(--nav-dark-front);
  color: #fff;
  font-weight: 600;
  font-size: 14px;
  border-radius: 4px;
  letter-spacing: 0.02em;
  transition: background 0.45s ease, transform 0.45s ease;
}

.info-cta-link:hover {
  background: var(--primary);
  color: #fff;
  transform: translateY(-1px);
}

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

.foot-steps {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.foot-step {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 14px 16px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 6px;
  transition: border-color 0.45s ease;
}

.foot-step:hover {
  border-color: rgba(234, 88, 12, 0.3);
}

.foot-step-num {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--primary);
  line-height: 1;
  min-width: 32px;
}

.decor-img-wrap {
  max-width: 500px;
  max-height: 320px;
  overflow: hidden;
  border-radius: 6px;
  border: 1px solid var(--border);
  box-shadow: 0 8px 32px rgba(15, 13, 10, 0.08);
}

.decor-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  max-height: 320px;
}

.layout-live-band {
  text-align: center;
}

.live-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin: 28px 0;
}

.live-stat {
  padding: 20px 12px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 6px;
}

.live-stat strong {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.6rem;
  color: var(--primary);
  margin-bottom: 4px;
}

.live-stat span {
  font-size: 12px;
  color: var(--muted);
}

.layout-guide-timeline {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 40px;
}

.timeline-rail {
  border-left: 2px solid var(--primary);
  padding-left: 24px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.timeline-item {
  position: relative;
}

.timeline-item::before {
  content: "";
  position: absolute;
  left: -31px;
  top: 6px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--primary);
  border: 2px solid var(--surface);
}

.layout-mobile-trio {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 24px 0;
}

.mobile-feature {
  padding: 24px 18px;
  background: var(--bg);
  border-radius: 6px;
  border: 1px solid var(--border);
  text-align: center;
}

.mobile-feature-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 12px;
  border-radius: 50%;
  background: rgba(14, 165, 233, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  color: var(--secondary);
}

.mobile-feature h3 {
  font-size: 14px;
  margin-bottom: 8px;
  color: var(--text);
}

.mobile-feature p {
  font-size: 13px;
  margin: 0;
}

.mobile-visual {
  height: 200px;
  border-radius: 6px;
  background-size: cover;
  background-position: center;
  margin-top: 20px;
  max-width: 500px;
}

.layout-debutant-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.debutant-card {
  padding: 20px;
  background: var(--bg);
  border-left: 3px solid var(--accent);
  border-radius: 0 6px 6px 0;
}

.debutant-card h3 {
  font-size: 14px;
  margin-bottom: 8px;
  color: var(--text);
}

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

.layout-bookmaker-table {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 32px;
}

.criteria-table {
  width: 100%;
  border-collapse: collapse;
  margin: 16px 0;
  font-size: 14px;
}

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

.criteria-table th {
  background: var(--bg);
  font-weight: 600;
  color: var(--text);
}

.criteria-table td {
  color: var(--muted);
}

.bookmaker-checklist {
  padding: 24px;
  background: var(--nav-dark-front);
  color: rgba(255, 255, 255, 0.85);
  border-radius: 6px;
}

.bookmaker-checklist h3 {
  font-family: var(--font-serif);
  font-size: 1rem;
  margin-bottom: 14px;
  color: #fff;
}

.bookmaker-checklist ul {
  list-style: none;
}

.bookmaker-checklist li {
  font-size: 13px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.7);
}

.bookmaker-checklist li::before {
  content: "✓";
  color: var(--primary);
  margin-right: 8px;
}

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

.pull-quote {
  padding: 28px;
  background: var(--nav-dark-front);
  color: #fff;
  border-radius: 6px;
  font-family: var(--font-serif);
  font-size: 1.1rem;
  line-height: 1.5;
  position: relative;
}

.pull-quote::before {
  content: "\201C";
  font-size: 3rem;
  color: var(--primary);
  position: absolute;
  top: 8px;
  left: 16px;
  opacity: 0.5;
  line-height: 1;
}

.football-markets {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.market-tag {
  padding: 6px 14px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 20px;
  font-size: 12px;
  color: var(--muted);
}

.layout-responsible-tools {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 24px 0;
}

.tool-card {
  padding: 20px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 6px;
  text-align: center;
}

.tool-card strong {
  display: block;
  font-size: 14px;
  color: var(--text);
  margin-bottom: 6px;
}

.tool-card span {
  font-size: 12px;
  color: var(--muted);
}

.layout-prevention-panel {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  padding: 36px;
  background: var(--nav-dark-front);
  color: rgba(255, 255, 255, 0.85);
  border-radius: 8px;
}

.layout-prevention-panel h2 {
  color: #fff;
}

.layout-prevention-panel p {
  color: rgba(255, 255, 255, 0.7);
}

.prevention-helpline {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  color: var(--primary);
  margin: 16px 0;
}

.layout-basket-mosaic {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 32px;
  align-items: start;
}

.basket-cards {
  display: grid;
  gap: 12px;
}

.basket-card {
  display: flex;
  gap: 16px;
  padding: 16px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 6px;
}

.basket-card-num {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  color: var(--secondary);
  min-width: 28px;
}

.basket-card h3 {
  font-size: 14px;
  margin-bottom: 4px;
  color: var(--text);
}

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

.basket-visual {
  max-width: 500px;
  max-height: 320px;
  overflow: hidden;
  border-radius: 6px;
}

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

@media (max-width: 768px) {
  .hero-strip {
    height: 60px;
  }

  .offer-card-logo {
    width: 240px;
    height: 77px;
  }

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

  .layout-foot-split,
  .layout-guide-timeline,
  .layout-bookmaker-table,
  .layout-football-quote,
  .layout-basket-mosaic {
    grid-template-columns: 1fr;
  }

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

  .layout-mobile-trio,
  .layout-debutant-cards,
  .layout-responsible-tools {
    grid-template-columns: 1fr;
  }

  .decor-img-wrap,
  .basket-visual,
  .mobile-visual {
    max-width: 100%;
    overflow: hidden;
  }
}

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

  .decor-img-wrap,
  .basket-visual,
  .mobile-visual {
    max-width: 100%;
    max-height: 240px;
  }

  .decor-img-wrap img,
  .basket-visual img {
    max-width: 100%;
    height: auto;
    object-fit: cover;
  }
}

@media (min-width: 769px) and (max-width: 900px) {
  .hero-strip {
    height: 80px;
  }
}
