.poker-hero {
  padding-top: var(--space-32);
}

.poker-hero-inner {
  position: relative;
}

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

.poker-hero-kicker {
  align-self: flex-start;
}

.poker-hero-title {
  max-width: 18ch;
}

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

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

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

.poker-hero-visual {
  position: relative;
}

.poker-hero-plate {
  position: relative;
  border-radius: 46% 54% 44% 56% / 60% 50% 50% 40%;
  background: radial-gradient(circle at 10% 0%, #ffe0f2 0, transparent 55%), radial-gradient(circle at 90% 100%, #e2f3ff 0, transparent 60%), linear-gradient(135deg, #ffffff 0%, #f3ebff 50%, #ffffff 100%);
  padding: var(--space-10);
  box-shadow: var(--shadow-lg);
}

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

.poker-hero-float {
  position: absolute;
  border-radius: 40% 60% 50% 50%;
  filter: blur(12px);
  opacity: 0.7;
  mix-blend-mode: soft-light;
  animation: var(--animation-float);
}

.poker-hero-float--pink {
  width: 120px;
  height: 120px;
  top: -40px;
  left: -20px;
  background: linear-gradient(135deg, rgba(255, 128, 200, 0.7), rgba(201, 168, 255, 0.7));
}

.poker-hero-float--blue {
  width: 160px;
  height: 160px;
  bottom: -50px;
  right: -10px;
  background: linear-gradient(135deg, rgba(122, 199, 255, 0.7), rgba(201, 168, 255, 0.7));
}

.poker-hero-sparkle--1 {
  top: 16%;
  right: 18%;
}

.poker-hero-sparkle--2 {
  bottom: 10%;
  left: 18%;
}

.poker-hero-sparkle--3 {
  top: 50%;
  left: 50%;
}

.poker-how-grid,
.poker-atmosphere-grid,
.poker-community-grid,
.poker-faq-grid {
  gap: var(--space-16);
}

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

.poker-figure {
  height: 100%;
}

.poker-figure-caption {
  margin-top: var(--space-3);
  font-size: var(--font-size-sm);
}

.poker-info-card {
  height: 100%;
}

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

.poker-themed-inner {
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(0, 2.2fr);
  gap: var(--space-12);
  align-items: center;
}

.poker-themed-text {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.poker-themed-cta-box {
  padding: var(--space-6);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.95);
  box-shadow: var(--shadow-md);
}

.poker-steps {
  counter-reset: step;
  display: grid;
  gap: var(--space-3);
  margin: var(--space-4) 0;
}

.poker-steps li {
  position: relative;
  padding-left: 2.2rem;
  font-size: var(--font-size-sm);
  color: var(--color-text-soft);
}

.poker-steps li::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  left: 0;
  top: 0.1rem;
  width: 1.6rem;
  height: 1.6rem;
  border-radius: var(--radius-pill);
  background: var(--gradient-primary);
  color: #ffffff;
  font-size: var(--font-size-xs);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
}

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

.poker-contact-card {
  height: 100%;
}

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

.poker-themed {
  padding-top: var(--space-24);
  padding-bottom: var(--space-24);
}

.poker-faq-cta {
  padding-top: var(--space-24);
  padding-bottom: var(--space-32);
}

@media (max-width: 960px) {
  .poker-hero-inner .card-inner {
    display: flex;
    flex-direction: column;
    gap: var(--space-10);
  }

  .poker-hero-title,
  .poker-hero-subtitle {
    max-width: 100%;
  }

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

@media (min-width: 961px) {
  .poker-hero-inner .card-inner {
    display: grid;
    grid-template-columns: minmax(0, 3fr) minmax(0, 2.5fr);
    gap: var(--space-12);
    align-items: center;
  }
}
