.page-poker {
  color: #333333; /* Dark text for light body background */
  padding-top: var(--header-offset, 120px); /* Ensure content clears 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-subtitle {
  font-size: 1.2em;
  color: #555555;
  text-align: center;
  margin-bottom: 50px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-poker__hero-section {
  position: relative;
  overflow: hidden;
  background-color: #FFFFFF;
  padding-bottom: 60px; /* Adjust as needed */
}

.page-poker__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  filter: brightness(0.6); /* Slightly darken image for text readability */
}

.page-poker__hero-container {
  position: relative;
  max-width: 100%;
}

.page-poker__hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #FFFFFF;
  z-index: 2;
  max-width: 90%;
}

.page-poker__hero-title {
  font-size: 3.5em;
  font-weight: bold;
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.page-poker__hero-description {
  font-size: 1.5em;
  margin-bottom: 30px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
}

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

.page-poker__btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.2s ease;
  border: none;
  cursor: pointer;
}

.page-poker__btn--register {
  background-color: #FFFFFF;
  color: #000000;
}

.page-poker__btn--register:hover {
  background-color: #f0f0f0;
  transform: translateY(-2px);
}

.page-poker__btn--login,
.page-poker__btn--play,
.page-poker__btn--view-promo,
.page-poker__btn--step,
.page-poker__btn--cta {
  background-color: #FCBC45;
  color: #000000;
}

.page-poker__btn--login:hover,
.page-poker__btn--play:hover,
.page-poker__btn--view-promo:hover,
.page-poker__btn--step:hover,
.page-poker__btn--cta:hover {
  background-color: #e0a53a;
  transform: translateY(-2px);
}

.page-poker__features-section,
.page-poker__games-section,
.page-poker__bonuses-section,
.page-poker__get-started-section,
.page-poker__faq-section {
  padding: 80px 0;
  background-color: #FFFFFF;
}

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

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

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

.page-poker__feature-icon,
.page-poker__game-image,
.page-poker__bonus-image {
  width: 100%;
  height: auto;
  max-height: 250px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  min-width: 200px;
  min-height: 200px;
}

.page-poker__feature-icon img,
.page-poker__game-image img,
.page-poker__bonus-image img {
  min-width: 200px;
  min-height: 200px;
  width: 100%;
  height: auto;
}

.page-poker__card-title,
.page-poker__game-title,
.page-poker__bonus-title,
.page-poker__step-title {
  font-size: 1.8em;
  color: #000000;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-poker__card-description,
.page-poker__game-description,
.page-poker__bonus-description,
.page-poker__step-description {
  font-size: 1em;
  color: #555555;
  line-height: 1.6;
}

.page-poker__game-card .page-poker__game-content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

.page-poker__game-card .page-poker__btn--play {
  margin-top: 20px;
}

.page-poker__cta-section {
  background-color: #000000;
  color: #FFFFFF;
  padding: 100px 0;
  text-align: center;
}

.page-poker__cta-content {
  max-width: 900px;
  margin: 0 auto;
}

.page-poker__cta-title {
  font-size: 3em;
  font-weight: bold;
  margin-bottom: 20px;
}

.page-poker__cta-description {
  font-size: 1.4em;
  margin-bottom: 40px;
  line-height: 1.5;
}

.page-poker__btn--cta {
  padding: 18px 40px;
  font-size: 1.2em;
  border-radius: 50px;
}

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

.page-poker__faq-item {
  background-color: #f9f9f9;
  border-radius: 8px;
  margin-bottom: 20px;
  padding: 25px;
  text-align: left;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
}

.page-poker__faq-question {
  font-size: 1.5em;
  color: #000000;
  margin-bottom: 10px;
  font-weight: bold;
}

.page-poker__faq-answer {
  font-size: 1em;
  color: #555555;
  line-height: 1.6;
}

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

@media (max-width: 768px) {
  .page-poker__hero-title {
    font-size: 2.5em;
  }
  .page-poker__hero-description {
    font-size: 1.1em;
  }
  .page-poker__hero-actions {
    flex-direction: column;
    gap: 15px;
  }
  .page-poker__btn {
    width: 80%;
    margin: 0 auto;
  }
  .page-poker__features-grid,
  .page-poker__games-grid,
  .page-poker__bonuses-grid,
  .page-poker__steps-grid {
    grid-template-columns: 1fr;
  }
  .page-poker__feature-card,
  .page-poker__game-card,
  .page-poker__bonus-card,
  .page-poker__step-card {
    padding: 25px;
  }
  .page-poker__section-title {
    font-size: 1.8em;
  }
  .page-poker__section-subtitle {
    font-size: 1em;
  }
  .page-poker__cta-title {
    font-size: 2.5em;
  }
  .page-poker__cta-description {
    font-size: 1.2em;
  }
  .page-poker__faq-question {
    font-size: 1.3em;
  }

  /* Mobile content area image constraint */
  .page-poker img {
    max-width: 100%;
    height: auto;
  }
  .page-poker__hero-section {
    padding-top: 0; /* Header offset handled by main */
    padding-bottom: 40px;
  }
}

@media (max-width: 480px) {
  .page-poker__hero-title {
    font-size: 2em;
  }
  .page-poker__hero-description {
    font-size: 0.9em;
  }
  .page-poker__btn {
    padding: 12px 20px;
    font-size: 1em;
  }
  .page-poker__section-title {
    font-size: 1.5em;
  }
  .page-poker__cta-title {
    font-size: 2em;
  }
  .page-poker__cta-description {
    font-size: 1em;
  }
  .page-poker__btn--cta {
    padding: 15px 30px;
    font-size: 1.1em;
  }
}