.page-poker {
  color: #333333; /* Dark text for light body background */
  font-family: Arial, sans-serif;
  line-height: 1.6;
  padding-top: var(--header-offset, 120px); /* Ensures content is not hidden by fixed header */
}

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

.page-poker__section-title {
  font-size: 2.5em;
  color: #000000;
  text-align: center;
  margin-bottom: 40px;
  padding-top: 20px;
}

.page-poker__text-content {
  font-size: 1.1em;
  margin-bottom: 20px;
  text-align: center;
}

.page-poker__btn {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
  margin: 10px;
  cursor: pointer;
}

.page-poker__btn--register, .page-poker__btn--register-step, .page-poker__btn--join-today {
  background-color: #000000;
  color: #FFFFFF;
}

.page-poker__btn--register:hover, .page-poker__btn--register-step:hover, .page-poker__btn--join-today:hover {
  background-color: #333333;
}

.page-poker__btn--login, .page-poker__btn--play-now, .page-poker__btn--join-tournament, .page-poker__btn--claim-bonus, .page-poker__btn--play-browser, .page-poker__btn--play-step {
  background-color: #FCBC45;
  color: #000000;
}

.page-poker__btn--login:hover, .page-poker__btn--play-now:hover, .page-poker__btn--join-tournament:hover, .page-poker__btn--claim-bonus:hover, .page-poker__btn--play-browser:hover, .page-poker__btn--play-step:hover {
  background-color: #e0a53b;
}

.page-poker__btn--view-promo, .page-poker__btn--learn-more, .page-poker__btn--download-app, .page-poker__btn--deposit-step {
  background-color: #FFFFFF;
  color: #000000;
  border: 2px solid #000000;
}

.page-poker__btn--view-promo:hover, .page-poker__btn--learn-more:hover, .page-poker__btn--download-app:hover, .page-poker__btn--deposit-step:hover {
  background-color: #f0f0f0;
}

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

.page-poker__hero-container {
  position: relative;
  width: 100%;
  height: 600px; /* Fixed height for desktop hero */
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-poker__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.page-poker__hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  background: rgba(0, 0, 0, 0.6); /* Overlay for readability */
  padding: 40px;
  border-radius: 10px;
  max-width: 800px;
}

.page-poker__main-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #FCBC45;
  line-height: 1.2;
}

.page-poker__tagline {
  font-size: 1.3em;
  margin-bottom: 30px;
  color: #FFFFFF;
}

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

/* About Section */
.page-poker__about-section {
  padding: 60px 0;
  background-color: #f8f8f8;
  text-align: center;
}

.page-poker__image-full-width {
  width: 100%;
  height: auto;
  display: block;
  margin-top: 40px;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  min-width: 200px;
  min-height: 200px;
}

/* Game Varieties Section */
.page-poker__game-varieties-section {
  padding: 60px 0;
  background-color: #FFFFFF;
}

.page-poker__game-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-poker__game-card {
  background-color: #f8f8f8;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  text-align: center;
  padding-bottom: 20px;
}

.page-poker__game-card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  min-width: 200px;
  min-height: 200px;
}

.page-poker__game-card-title {
  font-size: 1.5em;
  color: #000000;
  margin: 20px 0 10px;
}

.page-poker__game-card-description {
  font-size: 0.95em;
  color: #555555;
  padding: 0 20px;
  margin-bottom: 20px;
}

/* Tournaments Section */
.page-poker__tournaments-section {
  padding: 60px 0;
  background-color: #f0f0f0;
  text-align: center;
}

.page-poker__image-centered {
  display: block;
  margin: 40px auto;
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  min-width: 200px;
  min-height: 200px;
}

.page-poker__call-to-action {
  margin-top: 30px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

/* Bonuses Section */
.page-poker__bonuses-section {
  padding: 60px 0;
  background-color: #FFFFFF;
  text-align: center;
}

.page-poker__bonus-list {
  list-style: none;
  padding: 0;
  margin: 40px auto;
  max-width: 700px;
}

.page-poker__bonus-item {
  background-color: #f8f8f8;
  padding: 15px 20px;
  margin-bottom: 10px;
  border-radius: 5px;
  font-size: 1.1em;
  color: #000000;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

/* Security Section */
.page-poker__security-section {
  padding: 60px 0;
  background-color: #f0f0f0;
  text-align: center;
}

/* Mobile Section */
.page-poker__mobile-section {
  padding: 60px 0;
  background-color: #FFFFFF;
  text-align: center;
}

.page-poker__mobile-app-buttons {
  margin-top: 30px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

/* Get Started Section */
.page-poker__get-started-section {
  padding: 60px 0;
  background-color: #f8f8f8;
}

.page-poker__steps-list {
  list-style: none;
  padding: 0;
  margin: 40px auto;
  max-width: 900px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.page-poker__step-item {
  background-color: #FFFFFF;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  padding: 30px;
  text-align: center;
  flex: 1 1 calc(33% - 40px); /* Approx 3 items per row */
  max-width: 350px;
  min-width: 280px;
}

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

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

/* FAQ Section */
.page-poker__faq-section {
  padding: 60px 0;
  background-color: #FFFFFF;
}

.page-poker__faq-item {
  background-color: #f8f8f8;
  border-radius: 8px;
  padding: 25px;
  margin-bottom: 20px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.page-poker__faq-question {
  font-size: 1.3em;
  color: #000000;
  margin-bottom: 10px;
  cursor: pointer;
}

.page-poker__faq-answer {
  font-size: 1em;
  color: #555555;
  display: none; /* Hidden by default, toggled by JS */
}

/* Call to Action Section */
.page-poker__cta-section {
  padding: 60px 0;
  background-color: #000000;
  color: #FFFFFF;
  text-align: center;
}

.page-poker__cta-section .page-poker__section-title {
  color: #FCBC45;
}

.page-poker__cta-section .page-poker__text-content {
  color: #f0f0f0;
  margin-bottom: 30px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .page-poker__hero-container {
    height: 450px;
  }

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

  .page-poker__tagline {
    font-size: 1.1em;
  }

  .page-poker__hero-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .page-poker__btn {
    width: 80%;
    margin: 0 auto;
  }

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

  .page-poker__game-grid {
    grid-template-columns: 1fr;
  }

  .page-poker__steps-list {
    flex-direction: column;
    align-items: center;
  }

  .page-poker__step-item {
    flex: 1 1 90%;
    max-width: 90%;
  }

  /* Ensure all content images scale correctly and are not too small */
  .page-poker img {
    max-width: 100%;
    height: auto;
    min-width: 200px; /* Enforce minimum display size for content images */
    min-height: 200px;
  }

  .page-poker__game-card-image {
    height: 180px;
  }
}

@media (max-width: 480px) {
  .page-poker__hero-container {
    height: 400px;
  }

  .page-poker__main-title {
    font-size: 2em;
  }

  .page-poker__tagline {
    font-size: 1em;
  }

  .page-poker__hero-content {
    padding: 20px;
  }

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

  .page-poker__text-content {
    font-size: 0.95em;
  }

  .page-poker__btn {
    padding: 10px 20px;
    font-size: 0.9em;
  }
}