.luxury-hero {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  background: var(--primary);
}

.hero-diagonal {
  position: relative;
  min-height: 440px;
  display: grid;
  grid-template-columns: 1fr 1fr;
}

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

.hero-left h1 {
  font-size: clamp(26px, 4.5vw, 44px);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  line-height: 1.2;
  color: var(--text);
  max-width: 480px;
}

.hero-right {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero-parallax-bg {
  width: 100%;
  height: 100%;
  background-image: url("/images/decorative/decor_1.webp");
  background-size: cover;
  background-position: center;
  filter: brightness(0.55) contrast(1.1);
  transition: transform 0.1s linear;
  will-change: transform;
}

.hero-right::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 40%, rgba(0, 8, 20, 0.6) 100%);
}

.hero-subtitle-strip {
  background: var(--bg);
  padding: 20px 24px;
  text-align: center;
  border-bottom: 1px solid var(--border);
}

.hero-subtitle-strip p {
  font-size: 14px;
  letter-spacing: 0.06em;
  color: var(--muted);
  max-width: 720px;
  margin: 0 auto;
}

.offers-section {
  position: relative;
  padding: 72px 24px;
  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(0, 8, 20, 0.88);
}

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

.offers-inner h2 {
  font-size: 28px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  text-align: center;
  color: var(--accent);
  margin-bottom: 40px;
}

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

.offer-card {
  background: #1a2332;
  border: 3px solid #D4AF37;
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.offer-logo {
  width: 200px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-bottom: 4px;
}

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

.offer-bonus {
  font-size: 16px;
  font-weight: 800;
  color: #fff;
  line-height: 1.35;
  word-break: break-word;
  overflow-wrap: break-word;
}

.offer-terms {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

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

.offer-cta {
  display: block;
  text-align: center;
  padding: 12px 16px;
  background: #D4AF37;
  color: #1C1917;
  font-weight: 800;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  text-decoration: none;
  border: 2px solid #fff;
  margin-top: auto;
  cursor: pointer;
}

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

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

.info-section::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(200px, 40%);
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
}

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

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

.info-section p {
  font-size: 15px;
  color: var(--text);
  margin-bottom: 14px;
  line-height: 1.75;
}

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

.tip-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.tip-card {
  padding: 16px;
  background: rgba(0, 53, 102, 0.15);
  border: 1px solid var(--border);
  font-size: 13px;
  color: var(--muted);
}

.tip-card strong {
  display: block;
  color: var(--secondary);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 6px;
}

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

.layout-centered .gold-quote {
  font-size: 18px;
  font-style: italic;
  color: var(--secondary);
  margin-bottom: 24px;
  padding: 0 24px;
}

.decor-side {
  max-width: 420px;
  margin: 0 auto 24px;
  overflow: hidden;
  border: 1px solid var(--border);
}

.decor-side img {
  width: 100%;
  max-width: 500px;
  max-height: 320px;
  object-fit: cover;
  display: block;
}

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

.game-tile {
  padding: 20px 12px;
  text-align: center;
  background: var(--surface);
  border: 1px solid var(--border);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
}

.layout-poker {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 36px;
  align-items: start;
}

.poker-visual {
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.4);
}

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

.poker-steps {
  list-style: none;
  counter-reset: poker;
}

.poker-steps li {
  counter-increment: poker;
  padding: 12px 0 12px 40px;
  position: relative;
  border-bottom: 1px dotted var(--border);
  font-size: 14px;
  color: var(--muted);
}

.poker-steps li::before {
  content: counter(poker);
  position: absolute;
  left: 0;
  top: 12px;
  width: 24px;
  height: 24px;
  border: 1px solid var(--accent);
  border-radius: 50%;
  font-size: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
}

.stat-band {
  display: flex;
  gap: 24px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.stat-item {
  flex: 1;
  min-width: 140px;
  padding: 20px;
  background: rgba(255, 195, 0, 0.06);
  border: 1px solid rgba(255, 214, 10, 0.2);
  text-align: center;
}

.stat-item span {
  display: block;
  font-size: 24px;
  color: var(--accent);
  letter-spacing: 0.06em;
  margin-bottom: 4px;
}

.stat-item small {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
}

.bonus-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
  font-size: 13px;
}

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

.bonus-table th {
  background: rgba(0, 53, 102, 0.25);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 11px;
  color: var(--secondary);
}

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

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

.pay-icon {
  padding: 16px 24px;
  background: var(--surface);
  border: 1px solid var(--border);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text);
}

.timeline {
  position: relative;
  padding-left: 32px;
  margin-top: 20px;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 8px;
  top: 0;
  bottom: 0;
  width: 1px;
  background: var(--accent);
}

.timeline-item {
  position: relative;
  margin-bottom: 20px;
  padding-bottom: 16px;
}

.timeline-item::before {
  content: "";
  position: absolute;
  left: -28px;
  top: 6px;
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
}

.timeline-item h3 {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--secondary);
  margin-bottom: 6px;
}

.timeline-item p {
  font-size: 14px;
  color: var(--muted);
}

.wager-blocks {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 20px;
}

.wager-block {
  padding: 20px;
  background: linear-gradient(160deg, rgba(0, 53, 102, 0.2), transparent);
  border: 1px solid var(--border);
}

.wager-block h3 {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 8px;
}

.wager-block p {
  font-size: 13px;
  color: var(--muted);
}

.payout-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 20px;
}

.payout-card {
  padding: 24px;
  border: 1px solid var(--border);
  background: var(--surface);
}

.payout-card h3 {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--secondary);
  margin-bottom: 10px;
}

.payout-card p {
  font-size: 14px;
  color: var(--muted);
}

.info-1 { background: rgba(0, 29, 61, 0.3); }
.info-2 { background: transparent; }
.info-3 { background: rgba(0, 53, 102, 0.08); }
.info-4 { background: transparent; }
.info-5 { background: rgba(0, 29, 61, 0.25); }
.info-6 { background: transparent; }
.info-7 { background: rgba(0, 53, 102, 0.1); }
.info-8 { background: transparent; }
.info-9 { background: rgba(0, 29, 61, 0.2); }
.info-10 { background: transparent; }

.premium-dark-surface {
  --design-keywords: luxury dark gold premium exclusive;
}

@media (max-width: 768px) {
  .hero-diagonal {
    display: block;
    min-height: auto;
  }

  .hero-left {
    clip-path: none;
    padding: 48px 24px 32px;
    min-height: 280px;
  }

  .hero-right {
    position: relative;
    height: 200px;
  }

  .layout-split,
  .layout-poker,
  .game-grid,
  .wager-blocks,
  .payout-cards {
    grid-template-columns: 1fr;
  }

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

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

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

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

  .offer-bonus {
    font-size: 14px;
  }
}

@media (max-width: 375px) {
  .luxury-hero,
  .hero-diagonal,
  .hero-right {
    max-width: 100%;
    overflow: hidden;
  }

  .decor-side,
  .poker-visual {
    max-width: 100%;
    overflow: hidden;
  }

  .decor-side img,
  .poker-visual img {
    max-width: 100%;
    width: 100%;
    height: auto;
    max-height: 220px;
    object-fit: contain;
  }
}
