.poker-hero {
  position: relative;
  color: var(--color-text);
}

.poker-hero__media {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.poker-hero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.1) contrast(1.05);
  transform: scale(1.02);
}

.poker-hero__chips,
.poker-hero__cards {
  position: absolute;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(201, 156, 87, 0.4);
  box-shadow: var(--shadow-ambient);
  opacity: 0.32;
  pointer-events: none;
}

.poker-hero__chips {
  width: 220px;
  height: 220px;
  bottom: -60px;
  left: 6%;
  background: radial-gradient(circle at 30% 20%, rgba(201, 156, 87, 0.75), transparent 55%),
    radial-gradient(circle at 70% 80%, rgba(40, 53, 34, 0.8), transparent 60%);
}

.poker-hero__cards {
  width: 260px;
  height: 260px;
  top: 10%;
  right: 7%;
  background: linear-gradient(135deg, rgba(5, 6, 8, 0.35), rgba(5, 6, 8, 0.95)),
    radial-gradient(circle at 20% 0, rgba(255, 255, 255, 0.12), transparent 55%);
  transform: rotate(-10deg);
  backdrop-filter: blur(18px);
}

.poker-hero__content-wrapper {
  position: relative;
  z-index: 2;
  flex: 1;
  display: flex;
  align-items: center;
  padding: var(--space-12) 0 var(--space-10);
}

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

.poker-hero__title {
  margin-top: var(--space-4);
  margin-bottom: var(--space-4);
}

.poker-hero__lead {
  font-size: var(--font-size-md);
  color: var(--color-text-soft);
}

.poker-hero__note {
  max-width: 480px;
}

.poker-section-header__lead {
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

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

.poker-layout--reverse {
  direction: rtl;
}

.poker-layout--reverse > * {
  direction: ltr;
}

.poker-layout__content {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.poker-layout__media {
  align-self: stretch;
}

.poker-layout__image {
  border-radius: var(--radius-md);
}

.poker-feature-grid .poker-feature__image {
  border-radius: var(--radius-md);
}

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

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

.poker-bullet-list {
  padding-left: 1.1rem;
}

.poker-bullet-list li {
  position: relative;
  padding-left: 0.4rem;
  margin-bottom: 0.4rem;
  color: var(--color-text-soft);
}

.poker-bullet-list li::before {
  content: '\2022';
  position: absolute;
  left: -0.7rem;
  top: 0;
  color: var(--color-primary-strong);
}

.poker-program-grid > article {
  height: 100%;
}

.poker-program-grid .card-title {
  font-size: var(--font-size-lg);
}

.poker-schedule__inner {
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
}

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

.poker-schedule__cta-title {
  margin-bottom: var(--space-2);
}

.poker-quick-form {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  margin-top: var(--space-3);
}

.poker-testimonials > article {
  height: 100%;
}

.poker-security {
  margin-top: var(--space-10);
}

.poker-security__highlight {
  background: radial-gradient(circle at 0 0, rgba(201, 156, 87, 0.24), transparent 55%),
    linear-gradient(145deg, rgba(10, 11, 18, 0.96), rgba(5, 6, 8, 0.98));
}

.poker-final-cta__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
}

.poker-final-cta__content {
  max-width: 520px;
}

.poker-final-cta__actions {
  justify-content: flex-end;
}

@media (max-width: 1024px) {
  .poker-hero__chips,
  .poker-hero__cards {
    opacity: 0.18;
  }
}

@media (max-width: 768px) {
  .poker-hero__content-wrapper {
    padding-top: var(--space-10);
    padding-bottom: var(--space-8);
  }

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

  .poker-hero__chips,
  .poker-hero__cards {
    display: none;
  }

  .poker-layout--reverse {
    direction: ltr;
  }

  .poker-final-cta__inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .poker-final-cta__actions {
    justify-content: flex-start;
  }
}

@media (max-width: 480px) {
  .poker-hero__actions .button {
    width: 100%;
  }

  .poker-final-cta__actions .button {
    width: 100%;
  }
}
