@charset "UTF-8";

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

.poker-hero__content {
  max-width: 36rem;
}

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

.poker-hero__list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.poker-hero__list li {
  position: relative;
  padding-left: 1.3rem;
  margin-bottom: 0.4rem;
  color: var(--color-text-muted);
  font-size: var(--text-sm);
}

.poker-hero__list li::before {
  content: "•";
  position: absolute;
  left: 0.3rem;
  top: 0;
  color: var(--color-primary);
}

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

.poker-reasons .card h2 {
  margin-bottom: var(--space-4);
}

.poker-bullets {
  list-style: none;
  margin: 0;
  padding: 0;
}

.poker-bullets li {
  position: relative;
  padding-left: 1.4rem;
  margin-bottom: 0.35rem;
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}

.poker-bullets li::before {
  content: "";
  position: absolute;
  left: 0.25rem;
  top: 0.6rem;
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 20%, #ffffff, transparent 60%), var(--color-primary);
}

.poker-steps {
  counter-reset: poker-step;
  margin: 0;
  padding-left: 0;
}

.poker-steps li {
  counter-increment: poker-step;
  list-style: none;
  display: flex;
  gap: var(--space-3);
  align-items: flex-start;
  margin-bottom: var(--space-2);
  color: var(--color-text-muted);
  font-size: var(--text-sm);
}

.poker-steps li::before {
  content: counter(poker-step);
  flex-shrink: 0;
  width: 1.7rem;
  height: 1.7rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--color-primary-soft);
  border: 1px solid rgba(217, 164, 65, 0.55);
  color: var(--color-primary);
  font-size: var(--text-xs);
}

.poker-reserve-cta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
}

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

.poker-faq__item {
  width: 100%;
  border-radius: var(--radius-md);
  padding: var(--space-3) var(--space-4);
  background-color: rgba(10, 12, 16, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.05);
  text-align: left;
  cursor: pointer;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  row-gap: var(--space-2);
  column-gap: var(--space-3);
}

.poker-faq__question {
  font-size: var(--text-sm);
  font-weight: 500;
}

.poker-faq__icon {
  width: 1.8rem;
  height: 1.8rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(217, 164, 65, 0.12);
  color: var(--color-primary);
  font-size: var(--text-sm);
}

.poker-faq__answer {
  grid-column: 1 / -1;
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height var(--transition-slow), opacity var(--transition-base);
}

.poker-faq__item[aria-expanded="true"] .poker-faq__answer {
  max-height: 200px;
  opacity: 1;
}

.poker-faq__item[aria-expanded="true"] .poker-faq__icon {
  transform: rotate(45deg);
}

.poker-notice {
  border-radius: var(--radius-lg);
  padding: var(--space-4);
  background: linear-gradient(135deg, rgba(217, 164, 65, 0.06), rgba(15, 17, 21, 0.95));
  border: 1px solid rgba(217, 164, 65, 0.45);
}

.poker-notice h3 {
  font-size: var(--text-lg);
  margin-bottom: var(--space-2);
}

.poker-links {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
}

@media (max-width: 767px) {
  .poker-hero__actions,
  .poker-reserve-cta,
  .poker-links {
    flex-direction: column;
    align-items: stretch;
  }
}
