.page-poker {
  color: #333333; /* Dark text for light body background */
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

.page-poker__hero-section {
  position: relative;
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-top: var(--header-offset, 120px); /* Ensures content is not hidden by fixed header */
}

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

.page-poker__hero-content {
  position: relative;
  z-index: 1;
  background: rgba(0, 0, 0, 0.7); /* Dark overlay for text readability */
  padding: 60px 40px;
  border-radius: 10px;
  max-width: 900px;
  color: #FFFFFF;
}

.page-poker__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #FCBC45; /* Login button color for emphasis */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

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

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

.page-poker__button {
  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__button--register {
  background-color: #FFFFFF; /* Register button color */
  color: #000000;
}

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

.page-poker__button--play,
.page-poker__button--learn,
.page-poker__button--view-schedule,
.page-poker__button--register-tourney,
.page-poker__button--guide,
.page-poker__button--practice,
.page-poker__button--view-promos,
.page-poker__button--claim-bonus,
.page-poker__button--join-now,
.page-poker__button--login-play,
.page-poker__button--learn-more,
.page-poker__button--final-cta {
  background-color: #FCBC45; /* Login button color */
  color: #000000;
}

.page-poker__button--play:hover,
.page-poker__button--learn:hover,
.page-poker__button--view-schedule:hover,
.page-poker__button--register-tourney:hover,
.page-poker__button--guide:hover,
.page-poker__button--practice:hover,
.page-poker__button--view-promos:hover,
.page-poker__button--claim-bonus:hover,
.page-poker__button--join-now:hover,
.page-poker__button--login-play:hover,
.page-poker__button--learn-more:hover,
.page-poker__button--final-cta:hover {
  background-color: #e6a73c;
  transform: translateY(-2px);
}

.page-poker__section-title {
  font-size: 2.8em;
  color: #000000;
  text-align: center;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 15px;
}

.page-poker__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #FCBC45;
  border-radius: 2px;
}

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

.page-poker__features-section,
.page-poker__games-section,
.page-poker__tournaments-section,
.page-poker__strategy-section,
.page-poker__bonuses-section,
.page-poker__get-started-section,
.page-poker__responsible-gaming-section,
.page-poker__faq-section,
.page-poker__cta-section {
  padding: 80px 20px;
  background-color: #FFFFFF;
}

.page-poker__features-section {
  background-color: #f9f9f9;
}

.page-poker__features-container,
.page-poker__games-container,
.page-poker__tournaments-container,
.page-poker__strategy-container,
.page-poker__bonuses-container,
.page-poker__get-started-container,
.page-poker__responsible-gaming-container,
.page-poker__faq-container,
.page-poker__cta-container {
  max-width: 1200px;
  margin: 0 auto;
}

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

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

.page-poker__feature-card:hover,
.page-poker__type-card:hover,
.page-poker__strategy-card:hover,
.page-poker__bonus-card:hover,
.page-poker__step-card:hover {
  transform: translateY(-10px);
}

.page-poker__feature-icon,
.page-poker__bonus-icon,
.page-poker__step-icon {
  width: 100%;
  max-width: 400px;
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
  display: block;
  margin-left: auto;
  margin-right: auto;
  min-width: 200px;
  min-height: 200px;
}

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

.page-poker__card-description {
  font-size: 1em;
  color: #666666;
}

.page-poker__game-card {
  background-color: #FFFFFF;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  margin-bottom: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  overflow: hidden;
}

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

.page-poker__game-title {
  font-size: 2em;
  color: #000000;
  margin: 25px 20px 15px 20px;
}

.page-poker__game-description {
  font-size: 1.1em;
  color: #666666;
  padding: 0 30px 25px 30px;
}

.page-poker__button--learn {
  margin-bottom: 30px;
}

.page-poker__tournament-cta,
.page-poker__bonuses-cta,
.page-poker__strategy-cta,
.page-poker__get-started-cta {
  text-align: center;
  margin-top: 50px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.page-poker__strategy-list {
  text-align: left;
  list-style: none;
  padding-left: 0;
  margin-top: 20px;
}

.page-poker__strategy-list li {
  margin-bottom: 10px;
  color: #666666;
  position: relative;
  padding-left: 25px;
}

.page-poker__strategy-list li::before {
  content: '▶';
  color: #FCBC45;
  position: absolute;
  left: 0;
  font-size: 0.8em;
  top: 3px;
}

.page-poker__strategy-list li strong {
  color: #000000;
}

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

.page-poker__responsible-gaming-section {
  background-color: #f9f9f9;
}

.page-poker__responsible-list {
  list-style: none;
  padding: 0;
  text-align: center;
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.page-poker__responsible-list li {
  background-color: #FFFFFF;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
  font-size: 1.1em;
  color: #333333;
  font-weight: bold;
}

.page-poker__faq-section {
  background-color: #FFFFFF;
}

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

.page-poker__faq-question {
  font-size: 1.5em;
  color: #000000;
  margin-bottom: 10px;
  cursor: pointer;
  position: relative;
  padding-right: 30px;
}

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

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

.page-poker__faq-answer {
  font-size: 1.1em;
  color: #666666;
  display: none;
  margin-top: 15px;
  padding-top: 15px;
  border-top: 1px solid #eeeeee;
}

.page-poker__faq-answer.active {
  display: block;
}

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

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

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

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

/* Media Queries for Responsiveness */
@media (max-width: 1024px) {
  .page-poker__hero-title {
    font-size: 3em;
  }
  .page-poker__hero-description {
    font-size: 1.1em;
  }
  .page-poker__section-title {
    font-size: 2.2em;
  }
  .page-poker__section-intro {
    font-size: 1.1em;
  }
  .page-poker__feature-card,
  .page-poker__game-card,
  .page-poker__type-card,
  .page-poker__strategy-card,
  .page-poker__bonus-card,
  .page-poker__step-card {
    padding: 25px;
  }
  .page-poker__game-image {
    max-height: 350px;
  }
}

@media (max-width: 768px) {
  .page-poker__hero-content {
    padding: 40px 20px;
  }
  .page-poker__hero-title {
    font-size: 2.5em;
  }
  .page-poker__hero-description {
    font-size: 1em;
  }
  .page-poker__hero-actions {
    flex-direction: column;
    gap: 15px;
  }
  .page-poker__button {
    width: 100%;
    max-width: 280px;
    padding: 12px 20px;
    font-size: 1em;
  }
  .page-poker__section-title {
    font-size: 1.8em;
  }
  .page-poker__section-intro {
    font-size: 0.95em;
    margin-bottom: 30px;
  }
  .page-poker__features-section,
  .page-poker__games-section,
  .page-poker__tournaments-section,
  .page-poker__strategy-section,
  .page-poker__bonuses-section,
  .page-poker__get-started-section,
  .page-poker__responsible-gaming-section,
  .page-poker__faq-section,
  .page-poker__cta-section {
    padding: 60px 15px;
  }
  .page-poker__feature-grid,
  .page-poker__tournament-types,
  .page-poker__strategy-grid,
  .page-poker__bonus-grid,
  .page-poker__steps-grid {
    grid-template-columns: 1fr;
  }
  .page-poker__game-card {
    margin-bottom: 30px;
  }
  .page-poker__game-title {
    font-size: 1.5em;
  }
  .page-poker__game-description {
    font-size: 0.95em;
  }
  .page-poker__responsible-list {
    grid-template-columns: 1fr;
  }
  .page-poker__faq-question {
    font-size: 1.2em;
  }
  .page-poker__faq-answer {
    font-size: 0.95em;
  }
  /* Ensure images do not overflow on mobile */
  .page-poker__hero-image,
  .page-poker__feature-icon,
  .page-poker__bonus-icon,
  .page-poker__step-icon,
  .page-poker__game-image {
    max-width: 100%;
    height: auto;
  }
  .page-poker__hero-section {
    min-height: 400px;
  }
  .page-poker__tournament-cta,
  .page-poker__bonuses-cta,
  .page-poker__strategy-cta,
  .page-poker__get-started-cta {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .page-poker__hero-title {
    font-size: 2em;
  }
  .page-poker__hero-content {
    padding: 30px 15px;
  }
  .page-poker__section-title {
    font-size: 1.5em;
  }
  .page-poker__button {
    max-width: none;
  }
}