.poker-hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: stretch;
  color: var(--color-text);
  overflow: hidden;
}

.poker-hero__background {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.poker-hero__background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.poker-hero__inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  padding-top: var(--space-40);
  padding-bottom: var(--space-40);
}

.poker-hero__content {
  max-width: 640px;
}

.poker-hero__subtitle {
  font-size: var(--font-size-lg);
  color: var(--color-text-soft);
  margin-bottom: var(--space-6);
}

.poker-hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  margin-bottom: var(--space-8);
}

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

.poker-intro {
  gap: var(--space-16);
  align-items: center;
}

.poker-intro__image-wrap {
  height: 100%;
}

.poker-intro__image-wrap img {
  border-radius: var(--radius-lg);
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.poker-intro__pills {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  margin-top: var(--space-6);
}

.poker-hosts {
  gap: var(--space-10);
  align-items: flex-start;
}

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

.poker-list li {
  position: relative;
  padding-left: 1.4rem;
  color: var(--color-text-muted);
}

.poker-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 9px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-accent));
  box-shadow: var(--shadow-glow-red);
}

.poker-flow__steps {
  display: grid;
  gap: var(--space-4);
}

.poker-flow__steps li {
  padding-bottom: var(--space-3);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.poker-flow__steps li:last-child {
  border-bottom: none;
}

.poker-equipment {
  gap: var(--space-12);
  align-items: center;
}

.poker-equipment__image img {
  border-radius: var(--radius-lg);
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.poker-section-header {
  max-width: 720px;
  margin: 0 auto var(--space-16);
  text-align: center;
}

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

.poker-formats {
  align-items: stretch;
}

.poker-safety {
  background: radial-gradient(circle at top, rgba(255, 31, 61, 0.22), transparent 60%), var(--color-surface-dark);
}

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

.poker-safety__note {
  margin-top: var(--space-6);
  font-size: var(--font-size-sm);
  color: var(--color-text-soft);
}

.poker-gallery img {
  border-radius: var(--radius-lg);
  width: 100%;
  height: auto;
  object-fit: cover;
}

.poker-crosslinks {
  align-items: stretch;
}

.poker-contact {
  gap: var(--space-12);
  align-items: flex-start;
}

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

.poker-contact__form-header {
  margin-bottom: var(--space-6);
}

.poker-contact__fields {
  display: grid;
  gap: var(--space-4);
}

.poker-contact__inline {
  gap: var(--space-4);
}

.poker-contact__consent {
  margin-top: var(--space-2);
}

.poker-contact__checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  font-size: var(--font-size-xs);
  color: var(--color-text-soft);
}

.poker-contact__checkbox-label input[type="checkbox"] {
  margin-top: 2px;
}

.poker-contact__submit {
  margin-top: var(--space-6);
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

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

@media (max-width: 1024px) {
  .poker-hero__inner {
    padding-top: var(--space-32);
    padding-bottom: var(--space-32);
  }

  .poker-section-header {
    margin-bottom: var(--space-12);
  }
}

@media (max-width: 768px) {
  .poker-hero {
    min-height: 0;
  }

  .poker-hero__inner {
    padding-top: var(--space-28);
    padding-bottom: var(--space-28);
  }

  .poker-hero__content {
    max-width: 100%;
  }

  .poker-hero__actions {
    flex-direction: column;
  }

  .poker-intro,
  .poker-hosts,
  .poker-equipment,
  .poker-contact {
    gap: var(--space-8);
  }

  .poker-contact__links {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .poker-hero__subtitle {
    font-size: var(--font-size-md);
  }

  .poker-section-header {
    margin-bottom: var(--space-10);
  }
}
