.page-poker {
  color: #333333; /* Dark text for light body background */
  background-color: #FFFFFF;
  line-height: 1.6;
  font-family: Arial, sans-serif;
  padding-top: var(--header-offset, 120px); /* Ensure content is below 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: 20px;
  font-weight: bold;
}

.page-poker__section-intro {
  font-size: 1.1em;
  text-align: center;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

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

.page-poker__button--register {
  background-color: #000000;
  color: #FFFFFF;
  border: 2px solid #000000;
  margin-right: 15px;
}

.page-poker__button--register:hover {
  background-color: #333333;
  color: #FCBC45;
}

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

.page-poker__button--login:hover {
  background-color: #e0a53b;
  color: #FFFFFF;
}

.page-poker__button--play, .page-poker__button--join, .page-poker__button--learn-vip, .page-poker__button--register-guide, .page-poker__button--play-now {
  background-color: #FCBC45;
  color: #000000;
  border: 2px solid #FCBC45;
  margin-top: 20px;
}

.page-poker__button--play:hover, .page-poker__button--join:hover, .page-poker__button--learn-vip:hover, .page-poker__button--register-guide:hover, .page-poker__button--play-now:hover {
  background-color: #e0a53b;
  color: #FFFFFF;
}

/* Hero Section */
.page-poker__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 80px 20px 40px;
  background-color: #f5f5f5;
}

.page-poker__hero-content {
  max-width: 900px;
  margin-bottom: 40px;
}

.page-poker__hero-title {
  font-size: 3.5em;
  color: #000000;
  margin-bottom: 20px;
}

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

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

.page-poker__hero-image-container {
  width: 100%;
  max-width: 1000px; /* Constrain hero image width */
  margin-top: 40px;
}

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

/* About Section */
.page-poker__about-section {
  padding: 80px 0;
  background-color: #FFFFFF;
}

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

.page-poker__feature-card {
  background-color: #f9f9f9;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.page-poker__feature-card:hover {
  transform: translateY(-5px);
}

.page-poker__feature-icon {
  width: 200px;
  height: auto;
  margin-bottom: 20px;
  border-radius: 5px;
}

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

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

/* Games Section */
.page-poker__games-section {
  padding: 80px 0;
  background-color: #f5f5f5;
}

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

.page-poker__game-card {
  background-color: #FFFFFF;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  text-align: center;
  transition: transform 0.3s ease;
}

.page-poker__game-card:hover {
  transform: translateY(-5px);
}

.page-poker__game-image {
  width: 100%;
  height: 250px; /* Fixed height for consistency */
  object-fit: cover;
}

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

.page-poker__game-description {
  font-size: 1em;
  color: #555555;
  padding: 0 20px 20px;
}

/* Tournaments Section */
.page-poker__tournaments-section {
  padding: 80px 0;
  background-color: #FFFFFF;
}

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

.page-poker__tournament-card {
  background-color: #f9f9f9;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  text-align: center;
}

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

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

/* VIP Section */
.page-poker__vip-section {
  padding: 80px 0;
  background-color: #f5f5f5;
}

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

.page-poker__vip-item {
  text-align: center;
  background-color: #FFFFFF;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.page-poker__vip-icon {
  width: 200px;
  height: auto;
  margin-bottom: 20px;
  border-radius: 5px;
}

.page-poker__vip-item-title {
  font-size: 1.5em;
  color: #000000;
  margin-bottom: 10px;
}

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

.page-poker__vip-cta {
  text-align: center;
  margin-top: 50px;
}

/* Guide Section */
.page-poker__guide-section {
  padding: 80px 0;
  background-color: #FFFFFF;
}

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

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

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

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

.page-poker__step-image {
  width: 200px; /* Enforce min 200px */
  height: auto;
  border-radius: 5px;
}

.page-poker__guide-cta {
  text-align: center;
  margin-top: 50px;
}

/* Bottom CTA */
.page-poker__cta-bottom {
  padding: 80px 0;
  background-color: #000000;
  color: #FFFFFF;
  text-align: center;
}

.page-poker__cta-bottom .page-poker__section-title {
  color: #FFFFFF;
}

.page-poker__cta-bottom .page-poker__section-intro {
  color: #f0f0f0;
}

.page-poker__cta-bottom .page-poker__button--play-now {
  background-color: #FCBC45;
  color: #000000;
  border: 2px solid #FCBC45;
}

.page-poker__cta-bottom .page-poker__button--play-now:hover {
  background-color: #e0a53b;
  color: #FFFFFF;
}

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

@media (max-width: 768px) {
  .page-poker__hero-section {
    padding-top: var(--header-offset, 120px); /* Ensure mobile content is below fixed header */
    flex-direction: column;
  }
  .page-poker__hero-title {
    font-size: 2.5em;
  }
  .page-poker__hero-description {
    font-size: 1.1em;
  }
  .page-poker__button {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-poker__button--register {
    margin-right: 0;
    margin-bottom: 15px;
  }
  .page-poker__cta-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .page-poker__section-title {
    font-size: 1.8em;
  }
  .page-poker__section-intro {
    font-size: 0.95em;
  }
  .page-poker__features-grid, .page-poker__game-cards-grid, .page-poker__tournament-cards-grid, .page-poker__vip-benefits-grid, .page-poker__steps-grid {
    grid-template-columns: 1fr;
  }
  .page-poker__hero-image-container, .page-poker__hero-image {
    max-width: 100%;
    width: 100%;
    height: auto;
  }
  /* Ensure all images within .page-poker are responsive and not too small */
  .page-poker img {
    max-width: 100%;
    height: auto;
    min-width: 200px; /* Enforce minimum size for content images */
    min-height: 200px;
    object-fit: cover; /* Ensure images cover their area well */
  }
  .page-poker__feature-icon, .page-poker__vip-icon, .page-poker__step-image {
    width: 100%; /* Make card images fill their container */
    max-width: 300px; /* Max-width for smaller card images */
    margin-left: auto;
    margin-right: auto;
  }
  .page-poker__game-image {
    height: 200px;
  }
  .page-poker__container {
    padding: 0 15px;
  }
}