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

.hero--poker {
  background: radial-gradient(circle at 10% 0%, rgba(255, 22, 57, 0.32), transparent 55%),
              linear-gradient(145deg, #050608 0%, #111318 45%, #050608 100%);
  position: relative;
}

.hero--poker .hero__inner {
  backdrop-filter: blur(14px);
  background: radial-gradient(circle at 0 0, rgba(255, 22, 57, 0.24), transparent 60%),
              rgba(5, 6, 8, 0.86);
  border-radius: var(--radius-xl);
  padding: var(--space-8) var(--space-6);
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: var(--shadow-hard), var(--shadow-glow-red);
}

.hero--poker .hero__headline {
  text-shadow: 0 0 26px rgba(255, 22, 57, 0.7);
}

.hero--poker .hero__overlay {
  position: absolute;
  inset: 0;
  background-image: url("/assets/images/brutal-poker-hero.webp");
  background-size: cover;
  background-position: center;
  opacity: 0.25;
  mix-blend-mode: screen;
  pointer-events: none;
}

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

.poker-section-grid--reverse {
  grid-auto-flow: dense;
}

.poker-section-grid--reverse .poker-section-image {
  order: 2;
}

.poker-section-grid--reverse .poker-section-text {
  order: 1;
}

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

.poker-section-secondary {
  background: radial-gradient(circle at 0 0, rgba(255, 22, 57, 0.16), transparent 55%),
              linear-gradient(140deg, #101118, #050608);
  border-radius: var(--radius-lg);
  padding: var(--space-5) var(--space-5);
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: var(--shadow-soft);
}

.poker-subheading {
  font-size: var(--font-size-xl);
  margin-bottom: var(--space-3);
}

.poker-bullets li {
  position: relative;
  padding-left: 1.4rem;
  margin-bottom: var(--space-2);
  color: var(--color-text-muted);
}

.poker-bullets li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 10px;
  height: 2px;
  background: var(--color-primary);
  transform: skewX(-24deg);
  box-shadow: 0 0 14px rgba(255, 22, 57, 0.8);
}

.poker-figure {
  border-radius: var(--radius-xl);
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-hard);
}

.poker-figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform var(--transition-slow), filter var(--transition-slow);
  filter: saturate(1.05) contrast(1.1);
}

.poker-figure::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 0 0, rgba(255, 22, 57, 0.25), transparent 50%),
              linear-gradient(145deg, rgba(0, 0, 0, 0.3), transparent 60%, rgba(0, 0, 0, 0.8));
  mix-blend-mode: soft-light;
}

.poker-figure--shadow {
  box-shadow: var(--shadow-hard), var(--shadow-glow-red);
}

.poker-figure--showcase {
  margin-top: var(--space-3);
}

.poker-figure:hover img {
  transform: scale(1.06);
  filter: saturate(1.15) contrast(1.15);
}

.poker-host-grid {
  align-items: stretch;
}

.poker-cta {
  background: radial-gradient(circle at 10% 0, rgba(255, 22, 57, 0.24), transparent 55%),
              linear-gradient(170deg, #050608, #14151b 55%, #050608 100%);
}

.poker-cta-card {
  background: radial-gradient(circle at 0 0, rgba(255, 22, 57, 0.28), transparent 60%),
              linear-gradient(150deg, #15161b, #050608);
  border-image: var(--border-metallic) 1;
}

.poker-cta-card__content h2 {
  max-width: 26rem;
}

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

.poker-cta-card__aside {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.poker-cta-form {
  max-width: 32rem;
}

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

@media (max-width: 960px) {
  .hero--poker .hero__inner {
    padding: var(--space-6) var(--space-4);
  }

  .poker-section-secondary {
    margin-top: var(--space-4);
  }

  .poker-cta-card__content h2 {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .poker-section-grid--reverse .poker-section-image,
  .poker-section-grid--reverse .poker-section-text {
    order: initial;
  }

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

@media (max-width: 640px) {
  .hero--poker .hero__inner {
    padding: var(--space-5) var(--space-4);
  }

  .poker-section-secondary {
    padding: var(--space-4);
  }

  .poker-cta-card {
    padding: var(--space-5) var(--space-4);
  }
}
