.page-poker {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #FFF6D6; /* Text Main */
  background-color: #0A0A0A; /* Background */
}

.page-poker__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-bottom: 60px;
  padding-top: 10px; /* Small top padding, body handles --header-offset */
  overflow: hidden;
}

.page-poker__hero-image-wrapper {
  width: 100%;
  max-height: 700px; /* Limit height for aesthetic */
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 40px;
}

.page-poker__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.page-poker__hero-content {
  text-align: center;
  max-width: 900px;
  padding: 0 20px;
}

.page-poker__main-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: bold;
  color: #F2C14E; /* Primary color for emphasis */
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-poker__hero-description {
  font-size: 1.1rem;
  margin-bottom: 30px;
}

.page-poker__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.page-poker__cta-buttons--center {
  margin-top: 30px;
  margin-bottom: 20px;
}

.page-poker__btn-primary,
.page-poker__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1rem;
  transition: background-color 0.3s ease, transform 0.2s ease;
  box-sizing: border-box;
  max-width: 100%;
  white-space: normal;
  word-wrap: break-word;
  text-align: center;
}

.page-poker__btn-primary {
  background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%); /* Button gradient */
  color: #111111; /* Dark text for contrast */
  border: none;
}

.page-poker__btn-primary:hover {
  transform: translateY(-2px);
  opacity: 0.9;
}

.page-poker__btn-secondary {
  background: #111111; /* Card BG */
  color: #FFD36B; /* Glow */
  border: 2px solid #FFD36B; /* Glow */
}

.page-poker__btn-secondary:hover {
  transform: translateY(-2px);
  background: #FFD36B; /* Glow */
  color: #111111; /* Dark text for contrast */
}

.page-poker__section {
  padding: 60px 20px;
  margin-bottom: 20px;
  border-radius: 10px;
}

.page-poker__dark-section {
  background-color: #111111; /* Card BG */
  color: #FFF6D6; /* Text Main */
}

.page-poker__container {
  max-width: 1200px;
  margin: 0 auto;
}

.page-poker__section-title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: #F2C14E; /* Primary */
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
}

.page-poker__section-subtitle {
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  color: #FFD36B; /* Secondary */
  text-align: center;
  margin-bottom: 30px;
  font-weight: bold;
}

.page-poker__text-block {
  font-size: 1.05rem;
  margin-bottom: 20px;
  line-height: 1.7;
}

.page-poker__list {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}

.page-poker__list-item {
  position: relative;
  padding-left: 30px;
  margin-bottom: 15px;
  font-size: 1.05rem;
}

.page-poker__list-item::before {
  content: '✓';
  color: #FFD36B; /* Glow */
  position: absolute;
  left: 0;
  font-weight: bold;
  font-size: 1.2rem;
}

.page-poker__list--strategy .page-poker__list-item::before {
  content: '▶';
}

.page-poker__list--promos .page-poker__list-item::before {
  content: '★';
}

.page-poker__numbered-list {
  list-style: decimal;
  padding-left: 25px;
  margin-bottom: 20px;
}

.page-poker__numbered-list .page-poker__list-item {
  padding-left: 0;
  font-size: 1.05rem;
}

.page-poker__numbered-list .page-poker__list-item::before {
  content: none;
}

.page-poker__image-full-width {
  width: 100%;
  height: auto;
  display: block;
  margin: 30px 0;
  border-radius: 8px;
  object-fit: cover;
}

.page-poker__image-center {
  display: block;
  margin: 30px auto;
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  object-fit: cover;
}

/* FAQ Section */
.page-poker__faq {
  background-color: #0A0A0A; /* Background */
}

.page-poker__faq-list {
  margin-top: 40px;
}

.page-poker__faq-item {
  background-color: #111111; /* Card BG */
  border: 1px solid #3A2A12; /* Border */
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-poker__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  font-size: 1.15rem;
  font-weight: bold;
  color: #FFF6D6; /* Text Main */
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.page-poker__faq-question:hover {
  background-color: #1a1a1a;
}

.page-poker__faq-toggle {
  font-size: 1.5rem;
  line-height: 1;
  transition: transform 0.3s ease;
  color: #FFD36B; /* Glow */
}

.page-poker__faq-item.active .page-poker__faq-toggle {
  transform: rotate(0deg);
}

.page-poker__faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 20px;
  transition: max-height 0.3s ease, padding 0.3s ease;
  color: #FFF6D6; /* Text Main */
  font-size: 1rem;
}

.page-poker__faq-item.active .page-poker__faq-answer {
  max-height: 1000px !important; /* Sufficiently large */
  padding: 15px 20px;
}

.page-poker__faq-answer p {
  margin: 0;
  padding-bottom: 10px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .page-poker__hero-section {
    padding-bottom: 40px;
    padding-top: 10px !important; /* Ensure small top padding on mobile */
  }

  .page-poker__main-title {
    font-size: clamp(2rem, 8vw, 2.8rem);
  }

  .page-poker__hero-description,
  .page-poker__text-block,
  .page-poker__list-item,
  .page-poker__faq-answer p {
    font-size: 1rem;
  }

  .page-poker__section-title {
    font-size: clamp(1.8rem, 7vw, 2.4rem);
  }

  .page-poker__section-subtitle {
    font-size: clamp(1.6rem, 6vw, 2rem);
  }

  .page-poker__cta-buttons {
    flex-direction: column;
    gap: 15px;
    padding: 0 15px;
  }

  .page-poker__btn-primary,
  .page-poker__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    padding: 12px 20px;
    white-space: normal !important;
    word-wrap: break-word !important;
    text-align: center;
  }

  .page-poker__section,
  .page-poker__container,
  .page-poker__faq-item {
    padding-left: 15px;
    padding-right: 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .page-poker img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block;
  }

  .page-poker__hero-image-wrapper {
    max-height: 300px;
  }

  .page-poker__faq-question {
    font-size: 1rem;
    padding: 15px;
  }
}