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

.page-poker__hero-section {
  padding-top: var(--header-offset, 120px); /* Ensure space for fixed header */
  background-color: #f8f8f8;
  text-align: center;
  padding-bottom: 60px;
}

.page-poker__hero-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 40px 20px;
}

.page-poker__hero-title {
  font-size: 3.2em;
  color: #FF6B00;
  margin-bottom: 20px;
  line-height: 1.2;
  font-weight: bold;
}

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

.page-poker__hero-cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 40px;
}

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

.page-poker__button--primary {
  background-color: #FF6B00;
  color: #ffffff;
}

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

.page-poker__button--secondary {
  background-color: #00A86B;
  color: #ffffff;
}

.page-poker__button--secondary:hover {
  background-color: #008f5a;
  transform: translateY(-2px);
}

.page-poker__button--large {
  padding: 18px 35px;
  font-size: 1.3em;
}

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

.page-poker__hero-image-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

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

.page-poker__section {
  max-width: 1200px;
  margin: 60px auto;
  padding: 40px 20px;
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.page-poker__section-title {
  font-size: 2.5em;
  color: #FF6B00;
  text-align: center;
  margin-bottom: 30px;
  font-weight: bold;
}

.page-poker__section-text {
  font-size: 1.1em;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px auto;
  color: #444444;
}

.page-poker__grid {
  display: grid;
  gap: 30px;
  align-items: center;
}

.page-poker__grid--2-col {
  grid-template-columns: 1fr 1fr;
}

.page-poker__grid--3-col {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.page-poker__text-content {
  padding-right: 20px;
}

.page-poker__image-wrapper {
  text-align: center;
}

.page-poker__image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  min-width: 200px; /* Enforce min image size */
  min-height: 200px; /* Enforce min image size */
}

.page-poker__feature-list,
.page-poker__tournament-list,
.page-poker__security-list {
  list-style: none;
  padding: 0;
  margin-top: 20px;
}

.page-poker__feature-list li,
.page-poker__tournament-list li,
.page-poker__security-list li {
  background: #fff3e0; /* Light background for list items */
  margin-bottom: 10px;
  padding: 15px 20px;
  border-left: 5px solid #FF6B00;
  border-radius: 5px;
  font-size: 1.05em;
  color: #333333;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.page-poker__feature-list li strong {
  color: #FF6B00;
}

.page-poker__game-card {
  background-color: #fefefe;
  border: 1px solid #eee;
  border-radius: 10px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.07);
  transition: transform 0.3s ease;
}

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

.page-poker__game-title {
  font-size: 1.8em;
  color: #00A86B;
  margin-bottom: 15px;
}

.page-poker__game-description {
  font-size: 1em;
  color: #666666;
  margin-bottom: 25px;
}

.page-poker__image-wrapper--full-width {
  margin-top: 40px;
}

.page-poker__bonus-card {
  background-color: #fefefe;
  border: 1px solid #eee;
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.07);
}

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

.page-poker__bonus-description {
  font-size: 1.05em;
  color: #666666;
  margin-bottom: 25px;
}

.page-poker__link {
  color: #00A86B;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-poker__link:hover {
  color: #FF6B00;
  text-decoration: underline;
}

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

.page-poker__step-card {
  background-color: #fefefe;
  border: 1px solid #eee;
  border-radius: 10px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.07);
}

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

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

.page-poker__faq-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-top: 40px;
}

.page-poker__faq-item {
  background-color: #fefefe;
  border: 1px solid #eee;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

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

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

.page-poker__cta-section {
  text-align: center;
  padding: 60px 20px;
  background-color: #FF6B00;
  color: #ffffff;
  margin-top: 80px;
  border-radius: 12px;
}

.page-poker__cta-section .page-poker__section-title {
  color: #ffffff;
  font-size: 3em;
}

.page-poker__cta-section .page-poker__section-text {
  color: #ffffff;
  margin-bottom: 40px;
}

.page-poker__cta-section .page-poker__button {
  background-color: #00A86B;
  color: #ffffff;
}

.page-poker__cta-section .page-poker__button:hover {
  background-color: #008f5a;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .page-poker__hero-title {
    font-size: 2.2em;
  }

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

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

  .page-poker__button {
    width: 100%;
  }

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

  .page-poker__grid--2-col {
    grid-template-columns: 1fr;
  }

  .page-poker__text-content {
    padding-right: 0;
    padding-bottom: 20px;
  }

  .page-poker__image {
    max-width: 100%;
    height: auto;
    min-width: 200px; /* Ensure mobile images are not too small */
    min-height: 200px; /* Ensure mobile images are not too small */
  }

  .page-poker__feature-list li,
  .page-poker__tournament-list li,
  .page-poker__security-list li {
    font-size: 0.95em;
  }

  .page-poker__game-card,
  .page-poker__bonus-card,
  .page-poker__step-card {
    padding: 20px;
  }

  .page-poker__game-title,
  .page-poker__bonus-title,
  .page-poker__step-title {
    font-size: 1.5em;
  }

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

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

  .page-poker__cta-section .page-poker__button--large {
    font-size: 1.1em;
    padding: 15px 25px;
  }
}