body.bg-poker-table {
  position: relative;
}

.poker-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
  gap: var(--space-8);
  align-items: stretch;
}

.poker-hero-copy {
  align-self: center;
}

.poker-hero-meta {
  margin-top: var(--space-4);
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.poker-hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
}

.poker-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
}

.poker-hero-note {
  font-size: var(--font-size-xs);
  color: var(--color-text-soft);
}

.poker-hero-figure {
  height: 100%;
}

.poker-hero-image {
  border-radius: var(--radius-lg);
}

.poker-hero-figcaption {
  margin-top: var(--space-3);
  font-size: var(--font-size-xs);
  color: var(--color-text-soft);
}

.poker-hero-stat-chip {
  position: absolute;
  right: 1.5rem;
  bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding: 0.75rem 1.1rem;
  border-radius: var(--radius-full);
  background: rgba(15, 23, 42, 0.9);
  border: 1px solid rgba(148, 163, 184, 0.55);
  box-shadow: var(--shadow-soft);
}

.poker-hero-stat-chip p {
  margin: 0;
  font-size: var(--font-size-xs);
  color: var(--color-text-muted);
}

.poker-hero-stat-chip p span {
  display: block;
  color: var(--color-text-soft);
}

.poker-formats-grid {
  gap: var(--space-6);
}

.poker-format-heading {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-3);
  margin-bottom: var(--space-3);
}

.poker-bullet-list {
  list-style: none;
}

.poker-bullet-list li {
  position: relative;
  padding-left: 1.1rem;
  margin-bottom: var(--space-2);
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
}

.poker-bullet-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--gradient-tournament);
}

.poker-registration-grid {
  align-items: center;
  gap: var(--space-8);
}

.poker-steps {
  list-style: none;
  counter-reset: poker-step;
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.poker-steps li h3 {
  font-size: var(--font-size-lg);
  margin-bottom: var(--space-2);
}

.poker-steps li p {
  margin-bottom: 0;
}

.poker-registration-cta {
  margin-top: var(--space-5);
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.poker-registration-image,
.poker-private-image {
  border-radius: var(--radius-lg);
}

.poker-schedule-layout {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-6);
}

.poker-schedule-column h3 {
  font-size: var(--font-size-xl);
}

.poker-schedule-sidebar {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  align-self: flex-start;
}

.poker-schedule-badge {
  padding: var(--space-4);
  border-radius: var(--radius-lg);
  background: rgba(15, 23, 42, 0.8);
  border: 1px solid rgba(148, 163, 184, 0.4);
}

.poker-buyin-grid {
  align-items: flex-start;
  gap: var(--space-8);
}

.poker-buyin-highlight {
  align-self: stretch;
}

.poker-payout-table {
  width: 100%;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: rgba(15, 23, 42, 0.9);
}

.poker-payout-table th,
.poker-payout-table td {
  padding: 0.6rem 0.8rem;
  font-size: var(--font-size-sm);
}

.poker-payout-table thead {
  background: rgba(30, 64, 175, 0.6);
}

.poker-payout-table tbody tr:nth-child(even) {
  background: rgba(15, 23, 42, 0.8);
}

.poker-payout-table tbody tr:nth-child(odd) {
  background: rgba(15, 23, 42, 0.7);
}

.poker-fairplay-grid {
  align-items: flex-start;
  gap: var(--space-8);
}

.poker-private-grid {
  align-items: center;
  gap: var(--space-8);
}

.poker-progress-grid {
  gap: var(--space-6);
}

.poker-winners-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.poker-strategy {
  align-self: center;
}

.poker-cta-section {
  position: relative;
}

.poker-cta-glow {
  box-shadow: 0 0 30px rgba(34, 197, 94, 0.9), var(--shadow-strong);
}

.poker-cta-footnote {
  margin-top: var(--space-4);
  font-size: var(--font-size-sm);
  color: var(--color-text-soft);
}

@media (max-width: 1024px) {
  .poker-hero-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .poker-hero-visual {
    order: -1;
  }

  .poker-schedule-layout {
    grid-template-columns: minmax(0, 1fr);
  }

  .poker-schedule-sidebar {
    align-self: stretch;
  }
}

@media (max-width: 768px) {
  .poker-hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .poker-hero-stat-chip {
    position: static;
    margin-top: var(--space-4);
  }

  .poker-registration-grid,
  .poker-buyin-grid,
  .poker-fairplay-grid,
  .poker-private-grid,
  .poker-showcase-grid {
    gap: var(--space-6);
  }
}

@media (max-width: 480px) {
  .poker-hero-stat-chip {
    padding-inline: 0.8rem;
  }

  .poker-payout-table th,
  .poker-payout-table td {
    padding-inline: 0.5rem;
  }
}
