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

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

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

.page-poker__hero-container {
  position: relative;
  z-index: 1;
  max-width: 900px;
  padding: 40px 20px;
  background: rgba(0, 0, 0, 0.6); /* Semi-transparent overlay for text readability */
  border-radius: 10px;
}

.page-poker__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #FCBC45;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

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

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

.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;
  min-width: 200px; /* Ensure buttons are large enough */
  text-align: center;
}

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

.page-poker__button--register:hover {
  background-color: #f0f0f0;
  color: #000000;
}

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

.page-poker__button--explore:hover {
  background-color: #FCBC45;
  color: #000000;
}

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

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

.page-poker__section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: #FCBC45;
  margin: 15px auto 0;
}

.page-poker__intro-text {
  font-size: 1.1em;
  text-align: center;
  margin-bottom: 50px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #333333;
}

.page-poker__why-play-section, .page-poker__get-started-section, .page-poker__strategy-section, .page-poker__responsible-gaming-section, .page-poker__faq-section, .page-poker__cta-section {
  padding: 80px 0;
}

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

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

.page-poker__feature-card, .page-poker__step-card, .page-poker__strategy-card {
  background-color: #FFFFFF;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  padding: 30px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.3s ease;
}

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

.page-poker__feature-image, .page-poker__strategy-image {
  width: 100%; /* Ensure images fill card width */
  height: auto;
  max-width: 400px; /* Example max-width, adjust as needed */
  min-width: 200px; /* Minimum display size for images */
  min-height: 200px; /* Minimum display size for images */
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

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

.page-poker__feature-text, .page-poker__step-text, .page-poker__strategy-card-text {
  font-size: 1em;
  color: #555555;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-poker__button--small {
  padding: 10px 20px;
  font-size: 0.9em;
  min-width: auto;
}

.page-poker__button--text {
  background: none;
  border: none;
  color: #FCBC45;
  text-decoration: underline;
  padding: 0;
  min-width: auto;
}

.page-poker__button--text:hover {
  color: #e0a53b;
  background: none;
}

.page-poker__strategy-cta {
  text-align: center;
  margin-top: 60px;
}

.page-poker__responsible-gaming-section {
  background-color: #f2f2f2;
  text-align: center;
}

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

.page-poker__button--outline:hover {
  background-color: #000000;
  color: #FFFFFF;
}

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

.page-poker__faq-item {
  background-color: #FFFFFF;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  margin-bottom: 15px;
  padding: 20px 25px;
}

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

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

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

.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__intro-text {
  color: #e0e0e0;
}

.page-poker__button--primary {
  background-color: #FCBC45;
  color: #000000;
  border: 2px solid #FCBC45;
  font-size: 1.2em;
  padding: 18px 35px;
}

.page-poker__button--primary:hover {
  background-color: #e0a53b;
  color: #000000;
}

/* Responsive adjustments */
@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: 2em;
  }
}

@media (max-width: 768px) {
  .page-poker__hero-section {
    min-height: 450px;
  }

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

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

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

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

  .page-poker__container {
    padding: 30px 15px;
  }

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

  .page-poker__intro-text {
    font-size: 0.95em;
  }

  .page-poker__features-grid, .page-poker__steps-grid, .page-poker__strategy-grid {
    grid-template-columns: 1fr;
  }

  .page-poker__feature-image, .page-poker__strategy-image {
    max-width: 100%;
    height: auto;
    min-width: 200px;
    min-height: 200px;
  }

  .page-poker__feature-card, .page-poker__step-card, .page-poker__strategy-card {
    padding: 20px;
  }

  .page-poker__feature-title, .page-poker__step-title, .page-poker__strategy-card-title {
    font-size: 1.5em;
  }

  .page-poker__faq-question {
    font-size: 1.1em;
  }

  .page-poker__faq-answer {
    font-size: 0.95em;
  }

  /* Ensure all images within .page-poker are responsive and do not overflow */
  .page-poker img {
    max-width: 100%;
    height: auto;
  }
}