main {
  padding-top: var(--space-12);
}
.hero-layout {
  align-items: center;
  gap: var(--space-10);
}
.hero-text-block {
  max-width: 36rem;
}
.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  margin-top: var(--space-4);
}
.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  margin-top: var(--space-4);
}
.hero-media {
  display: flex;
  justify-content: flex-end;
}
.hero-image-card {
  max-width: 480px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-strong);
  border: 1px solid rgba(250, 204, 21, 0.45);
}
.hero-image-card img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.section-header {
  max-width: 42rem;
  margin: 0 auto var(--space-10);
}
.section-split {
  align-items: center;
  gap: var(--space-10);
}
.section-split--reverse {
  direction: rtl;
}
.section-split--reverse > * {
  direction: ltr;
}
.section-split--center {
  align-items: stretch;
}
.image-panel {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(148, 163, 184, 0.4);
}
.image-panel img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.poker-highlights {
  align-items: stretch;
}
.card-media {
  margin-top: var(--space-4);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.card-media img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}
.poker-list {
  list-style: none;
  padding-left: 0;
  margin-top: var(--space-4);
}
.poker-list li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: var(--space-2);
  color: var(--color-text-muted);
  font-size: var(--font-size-sm);
}
.poker-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6rem;
  width: 0.6rem;
  height: 0.6rem;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 0, #fef3c7, #facc15 55%, #b91c1c 100%);
  box-shadow: 0 0 0 2px rgba(15, 23, 42, 0.9);
}
.poker-list--compact {
  margin-top: var(--space-3);
}
.poker-list--compact li {
  margin-bottom: var(--space-1);
}
.cta-inline {
  margin-top: var(--space-4);
}
.poker-gallery {
  margin-top: var(--space-4);
}
.poker-cta-card {
  height: 100%;
  padding: var(--space-6);
  border-radius: var(--radius-lg);
  background: radial-gradient(circle at top left, rgba(250, 204, 21, 0.08), transparent 55%),
              radial-gradient(circle at bottom right, rgba(185, 28, 28, 0.25), rgba(15, 23, 42, 0.98));
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(250, 204, 21, 0.45);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.poker-cta-card h3 {
  margin-bottom: var(--space-2);
}
.poker-cta-final {
  padding-bottom: var(--space-20);
}
@media (max-width: 960px) {
  .hero-layout {
    grid-template-columns: minmax(0, 1fr);
  }
  .hero-media {
    justify-content: center;
    margin-top: var(--space-6);
  }
}
@media (max-width: 768px) {
  main {
    padding-top: var(--space-8);
  }
  .section-header {
    margin-bottom: var(--space-6);
  }
  .section-split--reverse {
    direction: ltr;
  }
}
@media (max-width: 640px) {
  .hero-cta-group {
    flex-direction: column;
    align-items: stretch;
  }
  .hero-meta {
    flex-direction: column;
  }
  .poker-cta-card {
    padding: var(--space-5);
  }
}
