.hero {
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--surface);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(34, 211, 238, 0.07) 0%, transparent 70%);
}

.hero::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
}

.hero-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 48px 20px;
  max-width: var(--visual-max);
}

.hero h1 {
  font-size: clamp(3rem, 8vw, 7rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.05;
  background: linear-gradient(135deg, var(--text) 30%, var(--primary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  display: none;
  font-size: 14px;
  color: var(--muted);
  margin-top: 16px;
  letter-spacing: 0.06em;
}

@media (max-width: 768px) {
  .hero-sub {
    display: block;
  }
}

.offers-section {
  position: relative;
  padding: 64px 20px;
  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(5, 6, 10, 0.82);
}

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

.offers-heading {
  text-align: center;
  margin-bottom: 40px;
}

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

.offers-heading p {
  font-size: 13px;
  color: var(--muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.offers-grid {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

.offer-card {
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  width: 100%;
  max-width: 340px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
}

.offer-card-header {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.offer-logo {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  flex-shrink: 0;
  background: #fff;
  border-radius: 8px;
  padding: 4px;
}

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

.offer-card-name {
  font-family: var(--fashion-serif);
  font-size: 1.3rem;
  color: #fff;
  font-weight: 600;
}

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

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

.offer-bonus {
  font-size: 13px;
  color: #333;
  line-height: 1.5;
  font-weight: 500;
  word-break: break-word;
  overflow-wrap: break-word;
}

.offer-terms {
  font-size: 11px;
  color: #888;
  margin-top: 4px;
}

.offer-desc {
  font-size: 12px;
  color: #666;
  line-height: 1.5;
  margin-bottom: 16px;
}

.offer-cta {
  display: block;
  text-align: center;
  background: #0066cc;
  color: #fff;
  padding: 12px 20px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  margin-top: auto;
  transition: background 0.2s;
}

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

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

.info-section:nth-child(even) {
  background: rgba(14, 16, 32, 0.5);
}

.info-inner {
  max-width: var(--visual-max);
  margin: 0 auto;
}

.info-inner h2 {
  font-size: clamp(1.4rem, 3vw, 2rem);
  margin-bottom: 20px;
}

.info-inner p {
  color: var(--muted);
  margin-bottom: 16px;
}

.info-cta {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 24px;
  border: 1px solid var(--primary);
  color: var(--primary);
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 4px;
  transition: background 0.2s, color 0.2s;
}

.info-cta:hover {
  background: var(--primary);
  color: var(--bg);
}

.layout-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--editorial-gap);
  align-items: center;
}

.layout-split.reverse {
  direction: rtl;
}

.layout-split.reverse > * {
  direction: ltr;
}

.layout-visual {
  overflow: hidden;
  max-width: 100%;
}

.layout-visual img {
  max-width: 100%;
  max-height: 320px;
  object-fit: cover;
  border-radius: var(--aesthetic-radius);
  border: 1px solid var(--border);
}

.layout-stack {
  max-width: 680px;
}

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

.info-card {
  background: rgba(237, 233, 254, 0.04);
  border: 1px solid var(--border);
  padding: 20px;
  border-radius: var(--aesthetic-radius);
}

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

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

.layout-asymmetric {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: var(--editorial-gap);
}

.layout-asymmetric .aside-rail {
  border-left: 1px solid var(--border);
  padding-left: 24px;
  overflow: hidden;
  max-width: 100%;
}

.layout-asymmetric .aside-rail img {
  max-width: 100%;
  max-height: 280px;
  object-fit: cover;
  border-radius: var(--aesthetic-radius);
  margin-bottom: 16px;
}

.layout-quote {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: var(--editorial-gap);
  align-items: start;
}

.pull-quote {
  font-family: var(--fashion-serif);
  font-size: clamp(1.2rem, 2.5vw, 1.8rem);
  color: var(--accent);
  line-height: 1.4;
  padding: 24px;
  border-left: 3px solid var(--accent);
}

.layout-list-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--editorial-gap);
}

.feature-list {
  list-style: none;
  margin-top: 16px;
}

.feature-list li {
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  color: var(--muted);
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.feature-list li::before {
  content: "—";
  color: var(--secondary);
}

.layout-mosaic {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: var(--editorial-gap);
}

.mosaic-visual {
  position: relative;
  overflow: hidden;
  max-width: 100%;
}

.mosaic-visual img {
  max-width: 100%;
  max-height: 320px;
  object-fit: cover;
  border-radius: var(--aesthetic-radius);
}

.stat-band {
  display: flex;
  gap: 32px;
  margin-top: 24px;
  padding: 20px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.stat-item {
  text-align: center;
  flex: 1;
}

.stat-item strong {
  display: block;
  font-family: var(--fashion-serif);
  font-size: 1.8rem;
  color: var(--primary);
}

.stat-item span {
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.layout-editorial {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 40px;
}

.editorial-caption {
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
}

.layout-zigzag {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.zigzag-row {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 24px;
  align-items: start;
}

.zigzag-num {
  font-family: var(--fashion-serif);
  font-size: 3rem;
  color: rgba(34, 211, 238, 0.2);
  line-height: 1;
}

.layout-horizontal {
  display: flex;
  gap: var(--editorial-gap);
  align-items: stretch;
}

.horizontal-img {
  flex-shrink: 0;
  width: 280px;
  overflow: hidden;
  max-width: 100%;
}

.horizontal-img img {
  width: 100%;
  max-width: 100%;
  max-height: 320px;
  object-fit: cover;
  border-radius: var(--aesthetic-radius);
}

.horizontal-text {
  flex: 1;
}

.layout-minimal {
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}

.layout-minimal .divider {
  width: 60px;
  height: 1px;
  background: var(--primary);
  margin: 24px auto;
}

.game-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
  justify-content: center;
}

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

@media (max-width: 768px) {
  .layout-split,
  .layout-asymmetric,
  .layout-quote,
  .layout-list-grid,
  .layout-mosaic,
  .layout-editorial,
  .layout-horizontal {
    grid-template-columns: 1fr;
    flex-direction: column;
  }

  .layout-split.reverse {
    direction: ltr;
  }

  .layout-asymmetric .aside-rail {
    border-left: none;
    padding-left: 0;
    border-top: 1px solid var(--border);
    padding-top: 24px;
  }

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

  .horizontal-img {
    width: 100%;
  }

  .stat-band {
    flex-direction: column;
    gap: 16px;
  }

  .layout-visual img,
  .mosaic-visual img,
  .horizontal-img img,
  .layout-asymmetric .aside-rail img {
    max-width: 100%;
  }

  .layout-asymmetric .aside-rail {
    overflow: hidden;
    max-width: 100%;
  }

  .offer-logo {
    width: 56px;
    height: 56px;
  }

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

@media (max-width: 375px) {
  .layout-visual img,
  .mosaic-visual img,
  .horizontal-img img,
  .layout-asymmetric .aside-rail img {
    max-height: 220px;
  }
}
