.page-poker {
  color: #333333; /* Dark text for light body background */
}

.page-poker__hero-section {
  position: relative;
  padding-top: var(--header-offset, 120px); /* Ensure content is below fixed header */
  background-color: #007bff; /* Primary brand color for hero background */
  overflow: hidden;
}

.page-poker__hero-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  text-align: center;
}

.page-poker__hero-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
  max-width: 1000px; /* Adjust max-width for image display */
  margin-bottom: 30px;
}

.page-poker__hero-content {
  position: relative;
  z-index: 1;
  color: #ffffff;
  max-width: 800px;
}

.page-poker__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  line-height: 1.2;
  color: #ffc107; /* Gold accent for title */
}

.page-poker__hero-description {
  font-size: 1.3em;
  margin-bottom: 30px;
  line-height: 1.6;
  opacity: 0.9;
}

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

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

.page-poker__hero-button--primary {
  background-color: #ffc107; /* Gold for primary action */
  color: #007bff; /* Dark blue text */
  box-shadow: 0 4px 10px rgba(255, 193, 7, 0.4);
}

.page-poker__hero-button--primary:hover {
  background-color: #e0a800;
  transform: translateY(-2px);
}

.page-poker__hero-button--secondary {
  background-color: transparent;
  border: 2px solid #ffc107;
  color: #ffc107;
  box-shadow: 0 4px 10px rgba(0, 123, 255, 0.2);
}

.page-poker__hero-button--secondary:hover {
  background-color: rgba(255, 193, 7, 0.1);
  transform: translateY(-2px);
}

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

.page-poker__section-title {
  font-size: 2.8em;
  color: #007bff; /* Primary blue for titles */
  text-align: center;
  margin-bottom: 20px;
  padding-top: 40px;
}

.page-poker__section-title--light {
  color: #ffc107;
}

.page-poker__section-text {
  font-size: 1.1em;
  line-height: 1.7;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 50px;
}

.page-poker__section-text--light {
  color: #f8f9fa;
}

.page-poker__about-section {
  background-color: #f8f9fa;
  padding: 60px 0;
}

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

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

.page-poker__feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.page-poker__feature-icon {
  width: 200px; /* Enforce min 200px */
  height: auto;
  margin-bottom: 20px;
  display: block;
  margin-left: auto;
  margin-right: auto;
  border-radius: 8px;
}

.page-poker__feature-title {
  font-size: 1.8em;
  color: #007bff;
  margin-bottom: 15px;
}

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

.page-poker__games-section {
  padding: 60px 0;
  background-color: #007bff;
}

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

.page-poker__game-card {
  background-color: #0056b3; /* Darker blue for cards */
  border-radius: 10px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  color: #ffffff;
  transition: transform 0.3s ease, background-color 0.3s ease;
}

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

.page-poker__game-image {
  width: 400px; /* Enforce min 200px */
  height: 300px; /* Enforce min 200px */
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.page-poker__game-title {
  font-size: 2em;
  color: #ffc107;
  margin-bottom: 15px;
}

.page-poker__game-description {
  font-size: 1em;
  line-height: 1.6;
  color: #e0e0e0;
  margin-bottom: 25px;
}

.page-poker__game-button {
  display: inline-block;
  padding: 12px 25px;
  background-color: #ffc107;
  color: #007bff;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.page-poker__game-button:hover {
  background-color: #e0a800;
}

.page-poker__tournaments-section {
  padding: 60px 0;
  background-color: #f8f9fa;
}

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

.page-poker__highlight-item {
  text-align: center;
  padding: 25px;
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.page-poker__highlight-icon {
  width: 200px; /* Enforce min 200px */
  height: 133px; /* Enforce min 200px */
  object-fit: cover;
  margin-bottom: 20px;
  display: block;
  margin-left: auto;
  margin-right: auto;
  border-radius: 8px;
}

.page-poker__highlight-title {
  font-size: 1.6em;
  color: #007bff;
  margin-bottom: 10px;
}

.page-poker__highlight-description {
  font-size: 0.95em;
  line-height: 1.6;
  color: #555555;
}

.page-poker__button {
  display: block;
  width: fit-content;
  margin: 50px auto 0;
  padding: 15px 35px;
  border-radius: 8px;
  font-size: 1.1em;
  font-weight: bold;
  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.page-poker__button--promo {
  background-color: #007bff;
  color: #ffffff;
  box-shadow: 0 4px 10px rgba(0, 123, 255, 0.4);
}

.page-poker__button--promo:hover {
  background-color: #0056b3;
  transform: translateY(-2px);
}

.page-poker__strategy-guide-section {
  padding: 60px 0;
  background-color: #e9ecef; /* Light grey background */
}

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

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

.page-poker__guide-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.page-poker__guide-image {
  width: 400px; /* Enforce min 200px */
  height: 300px; /* Enforce min 200px */\  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.page-poker__guide-title {
  font-size: 1.8em;
  margin-bottom: 15px;
}

.page-poker__guide-title a {
  color: #007bff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-poker__guide-title a:hover {
  color: #0056b3;
  text-decoration: underline;
}

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

.page-poker__cta-section {
  background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
  padding: 80px 20px;
  text-align: center;
  color: #ffffff;
}

.page-poker__cta-title {
  font-size: 3em;
  color: #ffc107;
  margin-bottom: 20px;
}

.page-poker__cta-description {
  font-size: 1.2em;
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto 40px;
}

.page-poker__cta-button {
  display: inline-block;
  padding: 15px 35px;
  border-radius: 8px;
  font-size: 1.2em;
  font-weight: bold;
  text-decoration: none;
  margin: 0 10px;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.page-poker__cta-button--primary {
  background-color: #ffc107;
  color: #007bff;
  box-shadow: 0 4px 10px rgba(255, 193, 7, 0.4);
}

.page-poker__cta-button--primary:hover {
  background-color: #e0a800;
  transform: translateY(-2px);
}

.page-poker__cta-button--secondary {
  background-color: transparent;
  border: 2px solid #ffc107;
  color: #ffc107;
}

.page-poker__cta-button--secondary:hover {
  background-color: rgba(255, 193, 7, 0.1);
  transform: translateY(-2px);
}

.page-poker__faq-section {
  padding: 60px 0;
  background-color: #f8f9fa;
}

.page-poker__faq-items {
  margin-top: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

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

.page-poker__faq-question {
  font-size: 1.5em;
  color: #007bff;
  margin-bottom: 10px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.page-poker__faq-question::after {
  content: '+';
  font-size: 1.2em;
  transition: transform 0.3s ease;
}

.page-poker__faq-question.active::after {
  content: '-';
  transform: rotate(180deg);
}

.page-poker__faq-answer {
  font-size: 1em;
  line-height: 1.6;
  color: #555555;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, opacity 0.4s ease-out;
  opacity: 0;
}

.page-poker__faq-answer.active {
  max-height: 200px; /* Adjust as needed */
  opacity: 1;
  padding-top: 10px;
}

.page-poker__button--support {
  background-color: #ffc107;
  color: #007bff;
  box-shadow: 0 4px 10px rgba(255, 193, 7, 0.4);
}

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

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

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

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

  .page-poker__hero-image,
  .page-poker__feature-icon,
  .page-poker__game-image,
  .page-poker__highlight-icon,
  .page-poker__guide-image {
    max-width: 100%;
    height: auto;
  }

  .page-poker__game-image,
  .page-poker__guide-image {
    width: 100%;
    height: auto;
  }
}

@media (max-width: 768px) {
  .page-poker__hero-section {
    padding-top: var(--header-offset, 120px);
  }

  .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__hero-button,
  .page-poker__cta-button {
    width: 100%;
    margin: 0;
  }

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

  .page-poker__section-text {
    font-size: 1em;
  }

  .page-poker__feature-card,
  .page-poker__game-card,
  .page-poker__highlight-item,
  .page-poker__guide-card,
  .page-poker__faq-item {
    padding: 20px;
  }

  .page-poker__feature-icon,
  .page-poker__game-image,
  .page-poker__highlight-icon,
  .page-poker__guide-image {
    max-width: 100%;
    height: auto;
    min-width: 200px; /* Ensure images are not too small */
    min-height: 200px; /* Ensure images are not too small */
  }

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

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

  .page-poker__cta-button {
    margin-bottom: 15px; /* Add space between buttons */
  }

  .page-poker {
    overflow-x: hidden; /* Prevent horizontal scroll */
  }

  /* Enforce min 200px for all images within .page-poker */
  .page-poker img {
    min-width: 200px !important;
    min-height: 200px !important;
    width: 100%;
    height: auto;
  }
}

@media (max-width: 480px) {
  .page-poker__hero-title {
    font-size: 2em;
  }

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

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

  .page-poker__hero-section {
    padding: 30px 15px;
  }

  .page-poker__container {
    padding: 15px;
  }

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