.page-poker {
  font-family: Arial, sans-serif;
  color: #333333; /* Dark text for light body background */
  line-height: 1.6;
  padding-top: var(--header-offset, 120px); /* Ensure space for fixed header */
  background-color: #FFFFFF; /* Explicitly set background for page content */
}

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

.page-poker__container--center-text {
  text-align: center;
}

.page-poker__section {
  padding: 60px 0;
}

.page-poker__section-title {
  font-size: 2.8em;
  color: #000000;
  text-align: center;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.page-poker__section-intro {
  font-size: 1.1em;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px auto;
  color: #555555;
}

/* Hero Section */
.page-poker__hero-section {
  background-color: #000000;
  color: #FFFFFF;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.page-poker__hero-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  gap: 40px;
}

.page-poker__hero-content {
  flex: 1;
  min-width: 300px;
  text-align: left;
  z-index: 1;
}

.page-poker__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  line-height: 1.2;
  color: #FCBC45; /* Login button color for emphasis */
}

.page-poker__hero-description {
  font-size: 1.3em;
  margin-bottom: 30px;
  color: #f0f0f0;
}

.page-poker__hero-cta-group {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.page-poker__cta-button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.2s ease;
  text-align: center;
  min-width: 180px;
}

.page-poker__cta-button--register {
  background-color: #FFFFFF;
  color: #000000;
  border: 2px solid #FFFFFF;
}

.page-poker__cta-button--register:hover {
  background-color: #e0e0e0;
  transform: translateY(-2px);
}

.page-poker__cta-button--claim {
  background-color: #FCBC45;
  color: #000000;
  border: 2px solid #FCBC45;
}

.page-poker__cta-button--claim:hover {
  background-color: #e6a83a;
  transform: translateY(-2px);
}

.page-poker__cta-button--login {
  background-color: #FCBC45;
  color: #000000;
  border: 2px solid #FCBC45;
}

.page-poker__cta-button--login:hover {
  background-color: #e6a83a;
  transform: translateY(-2px);
}

.page-poker__cta-button--play-game, .page-poker__cta-button--view-tournaments, .page-poker__cta-button--join-highstakes, .page-poker__cta-button--read-more, .page-poker__cta-button--register-step, .page-poker__cta-button--claim-step, .page-poker__cta-button--play-step, .page-poker__cta-button--learn-more {
  background-color: #000000;
  color: #FFFFFF;
  border: 2px solid #000000;
}

.page-poker__cta-button--play-game:hover, .page-poker__cta-button--view-tournaments:hover, .page-poker__cta-button--join-highstakes:hover, .page-poker__cta-button--read-more:hover, .page-poker__cta-button--register-step:hover, .page-poker__cta-button--claim-step:hover, .page-poker__cta-button--play-step:hover, .page-poker__cta-button--learn-more:hover {
  background-color: #333333;
  transform: translateY(-2px);
}

.page-poker__cta-button--large {
  padding: 18px 35px;
  font-size: 1.2em;
  min-width: 220px;
}

.page-poker__hero-image-wrapper {
  flex: 1;
  min-width: 300px;
  text-align: right;
  z-index: 1;
}

.page-poker__hero-image {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

/* Feature Grid */
.page-poker__feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.page-poker__feature-card {
  background-color: #f9f9f9;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  text-align: center;
}

.page-poker__feature-title {
  font-size: 1.6em;
  color: #000000;
  margin-bottom: 15px;
}

.page-poker__feature-description {
  font-size: 1em;
  color: #555555;
}

/* Game Variants */
.page-poker__variants-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.page-poker__variant-card {
  background-color: #f9f9f9;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-poker__variant-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.page-poker__variant-title {
  font-size: 1.8em;
  color: #000000;
  margin-bottom: 10px;
}

.page-poker__variant-description {
  font-size: 0.95em;
  color: #555555;
  margin-bottom: 20px;
  flex-grow: 1;
}

/* Get Started Steps */
.page-poker__steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.page-poker__step-card {
  background-color: #f9f9f9;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  text-align: center;
}

.page-poker__step-number {
  font-size: 3em;
  font-weight: bold;
  color: #FCBC45;
  margin-bottom: 15px;
}

.page-poker__step-title {
  font-size: 1.6em;
  color: #000000;
  margin-bottom: 15px;
}

.page-poker__step-description {
  font-size: 1em;
  color: #555555;
  margin-bottom: 20px;
}

/* Tournaments */
.page-poker__tournament-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.page-poker__tournament-card {
  background-color: #f9f9f9;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-poker__tournament-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.page-poker__tournament-title {
  font-size: 1.8em;
  color: #000000;
  margin-bottom: 10px;
}

.page-poker__tournament-description {
  font-size: 0.95em;
  color: #555555;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-poker__tournament-footer-text {
  text-align: center;
  margin-top: 40px;
  font-size: 1.1em;
  color: #555555;
}

.page-poker__tournament-footer-text a {
  color: #000000;
  text-decoration: none;
  font-weight: bold;
}

.page-poker__tournament-footer-text a:hover {
  text-decoration: underline;
}

/* Strategies */
.page-poker__strategy-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.page-poker__strategy-card {
  background-color: #f9f9f9;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  text-align: center;
}

.page-poker__strategy-title {
  font-size: 1.6em;
  color: #000000;
  margin-bottom: 15px;
}

.page-poker__strategy-description {
  font-size: 1em;
  color: #555555;
  margin-bottom: 20px;
}

/* Jili Bonus Details */
.page-poker__bonus-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 40px auto;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.page-poker__bonus-cta-group {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
}

/* FAQ */
.page-poker__faq-list {
  margin-top: 50px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-poker__faq-item {
  background-color: #f9f9f9;
  border-radius: 8px;
  margin-bottom: 15px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
  overflow: hidden;
}

.page-poker__faq-question {
  font-size: 1.4em;
  color: #000000;
  padding: 20px 25px;
  cursor: pointer;
  position: relative;
  margin: 0;
  background-color: #eee;
  border-bottom: 1px solid #ddd;
}

.page-poker__faq-question::after {
  content: '+';
  position: absolute;
  right: 25px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.2em;
  transition: transform 0.3s ease;
}

.page-poker__faq-question.active::after {
  content: '-';
  transform: translateY(-50%) rotate(180deg);
}

.page-poker__faq-answer {
  font-size: 1em;
  color: #555555;
  padding: 0 25px 20px 25px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out, padding 0.3s ease-out;
}

.page-poker__faq-answer.active {
  max-height: 200px; /* Adjust as needed */
  padding: 10px 25px 20px 25px;
}

.page-poker__faq-answer a {
  color: #000000;
  text-decoration: none;
  font-weight: bold;
}

.page-poker__faq-answer a:hover {
  text-decoration: underline;
}

/* Final CTA */
.page-poker__section--cta-final {
  background-color: #000000;
  color: #FFFFFF;
}

.page-poker__section--cta-final .page-poker__section-title {
  color: #FCBC45;
}

.page-poker__section--cta-final .page-poker__section-intro {
  color: #f0f0f0;
}

/* Copyright */
.page-poker__copyright {
  background-color: #000000;
  color: #FFFFFF;
  text-align: center;
  padding: 30px 20px;
  font-size: 0.9em;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.page-poker__copyright-text {
  margin: 0;
  color: #a0a0a0;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-poker__hero-title {
    font-size: 3em;
  }

  .page-poker__hero-description {
    font-size: 1.2em;
  }
}

@media (max-width: 768px) {
  .page-poker__section-title {
    font-size: 2em;
  }

  .page-poker__section-intro {
    font-size: 1em;
    margin-bottom: 30px;
  }

  .page-poker__hero-container {
    flex-direction: column;
    text-align: center;
  }

  .page-poker__hero-content {
    text-align: center;
  }

  .page-poker__hero-title {
    font-size: 2.5em;
  }

  .page-poker__hero-description {
    font-size: 1.1em;
  }

  .page-poker__hero-cta-group {
    flex-direction: column;
    align-items: center;
  }

  .page-poker__cta-button {
    width: 100%;
    max-width: 300px;
  }

  .page-poker__hero-image-wrapper {
    text-align: center;
  }

  /* Ensure all images within .page-poker are responsive and not smaller than 200px */
  .page-poker img {
    max-width: 100% !important;
    height: auto !important;
    min-width: 200px; /* Enforce minimum size */
    min-height: 200px; /* Enforce minimum size */
  }

  .page-poker__feature-grid, .page-poker__variants-grid, .page-poker__steps-grid, .page-poker__tournament-grid, .page-poker__strategy-grid {
    grid-template-columns: 1fr;
  }

  .page-poker__faq-question {
    font-size: 1.2em;
    padding: 15px 20px;
  }

  .page-poker__faq-question::after {
    right: 20px;
  }

  .page-poker__faq-answer {
    padding: 0 20px 15px 20px;
  }

  .page-poker__cta-button--large {
    min-width: unset;
  }
}

@media (max-width: 480px) {
  .page-poker__hero-title {
    font-size: 2em;
  }

  .page-poker__hero-description {
    font-size: 1em;
  }

  .page-poker__section-title {
    font-size: 1.8em;
  }
}