.poker-hero {
  position: relative;
  padding-top: var(--space-20);
  padding-bottom: var(--space-20);
}

.poker-hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: -2;
}

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

.poker-hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(0, 2.5fr);
  gap: var(--space-8);
}

.poker-hero-copy {
  max-width: 640px;
}

.poker-eyebrow {
  font-size: var(--font-size-xs);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: var(--space-2);
}

.poker-hero-text {
  font-size: var(--font-size-lg);
}

.poker-hero-actions {
  margin-top: var(--space-4);
}

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

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

.poker-hero-list li {
  display: flex;
  justify-content: space-between;
  gap: var(--space-4);
  align-items: flex-start;
}

.poker-hero-list-title {
  font-weight: 600;
  margin-bottom: var(--space-1);
}

.poker-hero-list-text {
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
}

.poker-status {
  font-size: var(--font-size-xs);
  white-space: nowrap;
  color: var(--color-text-soft);
}

.poker-hero-link {
  display: inline-flex;
  align-items: center;
  margin-top: var(--space-4);
  font-size: var(--font-size-sm);
}

.poker-section-grid {
  align-items: center;
}

.poker-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  padding-left: 0;
}

.poker-list li {
  position: relative;
  padding-left: 1.25rem;
  font-size: var(--font-size-sm);
}

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

.poker-feature-card {
  align-self: stretch;
}

.poker-tournaments {
  position: relative;
}

.poker-tournaments-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  opacity: 0.7;
}

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

.poker-tournaments::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top, rgba(0, 0, 0, 0.55), transparent 60%),
              linear-gradient(to bottom, rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.95));
  z-index: -1;
}

.poker-tournaments-grid {
  align-items: flex-start;
}

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

.poker-def-list dt {
  font-weight: 600;
  margin-bottom: var(--space-1);
}

.poker-def-list dd {
  margin: 0;
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
}

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

.poker-inline-field {
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
}

.poker-inline-field label {
  font-size: var(--font-size-xs);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}

.poker-form-note {
  font-size: var(--font-size-xs);
  color: var(--color-text-muted);
}

.poker-image-wrapper {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-strong);
}

.poker-services-grid {
  gap: var(--space-6);
}

.poker-testimonials-cta {
  background: radial-gradient(circle at top left, rgba(228, 178, 96, 0.08), transparent 55%),
              var(--color-bg-soft);
}

.poker-security {
  background-color: var(--color-bg-elevated);
}

.poker-contact-cta {
  background: radial-gradient(circle at top right, rgba(228, 178, 96, 0.12), transparent 55%),
              var(--color-bg-soft);
}

.poker-contact-card {
  max-width: 960px;
  margin: 0 auto;
}

.poker-contact-layout {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-6);
  align-items: center;
  justify-content: space-between;
}

.poker-contact-actions {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  min-width: min(360px, 100%);
}

.poker-contact-info-link {
  font-size: var(--font-size-sm);
}

@media (max-width: 1024px) {
  .poker-hero-layout {
    grid-template-columns: 1fr;
  }

  .poker-hero-copy {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .poker-hero {
    padding-top: var(--space-16);
    padding-bottom: var(--space-16);
  }

  .poker-hero-list li {
    flex-direction: column;
    align-items: flex-start;
  }

  .poker-contact-layout {
    flex-direction: column;
    align-items: flex-start;
  }

  .poker-contact-actions {
    width: 100%;
  }
}
