body {
  background-color: var(--color-background);
}

.hero--poker .hero__background {
  background-position: center center;
}

.hero--poker .hero__content-inner {
  max-width: 40rem;
}

.hero--poker .hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  margin-bottom: var(--space-4);
}

.hero--poker .hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  align-items: center;
  font-size: var(--font-size-xs);
  color: rgba(226, 232, 240, 0.9);
}

.hero--poker .hero__meta-text {
  opacity: 0.9;
}

.section--poker-atmosphere,
.section--offline-poker,
.section--schedule,
.section--for-everyone,
.section--gastro,
.section--community,
.section--booking-cta {
  background-color: transparent;
}

.section--offline-poker {
  background: linear-gradient(to bottom, #f7f8fb, #ffffff);
}

.section--community {
  background-color: #ffffff;
}

.section--booking-cta {
  background: radial-gradient(circle at top left, var(--color-primary-soft), transparent 55%);
}

.section-header p {
  margin-left: auto;
  margin-right: auto;
}

.poker-figure {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  background-color: var(--color-surface);
}

.poker-figure img {
  width: 100%;
  height: auto;
}

.poker-figure figcaption {
  padding: var(--space-3) var(--space-4);
  font-size: var(--font-size-sm);
  color: var(--gray-600);
}

.poker-list {
  margin-top: var(--space-4);
  display: grid;
  gap: var(--space-2);
  padding-left: 0;
}

.poker-list--compact {
  margin-top: var(--space-3);
  gap: var(--space-1);
}

.poker-list--bulleted li {
  position: relative;
  padding-left: 1.25rem;
}

.poker-list--bulleted li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5rem;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
}

.poker-cta-inline {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  margin-top: var(--space-4);
}

.poker-highlights {
  margin-top: var(--space-6);
}

.card--subtle {
  background-color: var(--color-surface);
  box-shadow: var(--shadow-sm);
}

.poker-columns {
  display: grid;
  gap: var(--space-6);
  margin-top: var(--space-4);
}

.poker-columns h3 {
  margin-bottom: var(--space-2);
}

.poker-steps {
  list-style: none;
  padding-left: 0;
  display: grid;
  gap: var(--space-4);
  margin-top: var(--space-4);
  margin-bottom: var(--space-4);
}

.poker-steps li {
  border-left: 2px solid var(--color-primary-soft);
  padding-left: var(--space-4);
}

.poker-steps__label {
  display: inline-block;
  font-size: var(--font-size-sm);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray-600);
  margin-bottom: var(--space-1);
}

.poker-steps--inline {
  grid-template-columns: repeat(1, minmax(0, 1fr));
}

.poker-steps__cta {
  margin-top: var(--space-2);
  width: 100%;
}

.poker-community-card {
  align-self: stretch;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.poker-community-card__cta {
  margin-top: var(--space-4);
  align-self: flex-start;
}

.card--booking {
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
  padding: var(--space-8);
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, #ffffff, #e3e9f6);
  box-shadow: var(--shadow-md);
}

.card--booking-text p {
  margin-top: var(--space-2);
}

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

@media (min-width: 768px) {
  .card--booking {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  .card--booking-text {
    max-width: 60%;
  }

  .poker-steps--inline {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .poker-steps__cta {
    width: auto;
  }
}

@media (min-width: 900px) {
  .poker-columns {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.align-start {
  align-items: flex-start;
}

.align-center {
  align-items: center;
}
