/* style/game-types-poker.css */
.page-game-types-poker {
  font-family: 'Arial', sans-serif;
  color: #333;
  line-height: 1.6;
  background-color: #f8f8f8;
}

.page-game-types-poker__hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 60px 20px;
  background: linear-gradient(135deg, #1A2E4E 0%, #3A4E6E 100%); /* Dark blue gradient */
  color: #ffffff;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-game-types-poker__hero-content {
  max-width: 900px;
  z-index: 1;
}

.page-game-types-poker__main-title {
  font-size: 2.8em;
  margin-bottom: 20px;
  color: #FFD700; /* Gold for emphasis */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  font-weight: bold;
}

.page-game-types-poker__subtitle {
  font-size: 1.3em;
  margin-bottom: 30px;
  color: #e0e0e0;
}

.page-game-types-poker__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.15;
  overflow: hidden;
}

.page-game-types-poker__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%);
}

.page-game-types-poker__section {
  max-width: 1000px;
  margin: 40px auto;
  padding: 20px;
  background-color: #ffffff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
}

.page-game-types-poker__section--alt {
  background-color: #f0f4f7; /* Slightly lighter background for contrast */
}

.page-game-types-poker__section-title {
  font-size: 2.2em;
  color: #1A2E4E; /* Dark blue */
  margin-bottom: 25px;
  text-align: center;
  border-bottom: 3px solid #FFD700; /* Gold underline */
  padding-bottom: 10px;
}

.page-game-types-poker__sub-section-title {
  font-size: 1.6em;
  color: #1A2E4E;
  margin-top: 30px;
  margin-bottom: 15px;
  border-left: 5px solid #FFD700;
  padding-left: 10px;
}

.page-game-types-poker__text-content {
  font-size: 1.1em;
  margin-bottom: 15px;
  color: #444;
}

.page-game-types-poker__text-content strong {
  color: #1A2E4E;
}

.page-game-types-poker__list {
  list-style-type: disc;
  margin-left: 25px;
  margin-bottom: 15px;
  color: #555;
}

.page-game-types-poker__list--ordered {
  list-style-type: decimal;
}

.page-game-types-poker__list li {
  margin-bottom: 8px;
  font-size: 1.05em;
}

.page-game-types-poker__list li strong {
  color: #1A2E4E;
}

.page-game-types-poker__game-variant {
  margin-bottom: 40px;
  padding: 20px;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  background-color: #ffffff;
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.05);
}

.page-game-types-poker__variant-title {
  font-size: 1.8em;
  color: #1A2E4E;
  margin-bottom: 15px;
  text-align: left;
  border-bottom: 2px solid #FFD700;
  padding-bottom: 5px;
}

.page-game-types-poker__sub-variant-title {
  font-size: 1.3em;
  color: #3A4E6E;
  margin-top: 20px;
  margin-bottom: 10px;
}

.page-game-types-poker__variant-image {
  width: 100%;
  max-width: 600px;
  height: auto;
  border-radius: 8px;
  margin: 20px auto;
  display: block;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.page-game-types-poker__hand-rankings {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  margin-top: 30px;
}

.page-game-types-poker__hand-rankings-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.page-game-types-poker__section--cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  background: linear-gradient(90deg, #1A2E4E, #3A4E6E);
  color: #ffffff;
  padding: 50px 20px;
  text-align: center;
}

.page-game-types-poker__cta-content {
  max-width: 800px;
}

.page-game-types-poker__section--cta .page-game-types-poker__section-title {
  color: #FFD700;
  border-bottom-color: #e0e0e0;
}

.page-game-types-poker__section--cta .page-game-types-poker__text-content {
  color: #e0e0e0;
}

.page-game-types-poker__cta-image-wrapper {
  max-width: 400px;
}

.page-game-types-poker__cta-image {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-game-types-poker__cta-button {
  display: inline-block;
  background-color: #FFD700; /* Gold */
  color: #1A2E4E; /* Dark blue */
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.2em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  margin-top: 20px;
  border: none;
  cursor: pointer;
}

.page-game-types-poker__cta-button:hover {
  background-color: #e0b000; /* Darker gold */
  transform: translateY(-3px);
}

.page-game-types-poker__cta-button--small {
  font-size: 1em;
  padding: 10px 20px;
  margin-top: 15px;
}

.page-game-types-poker__cta-button--large {
  font-size: 1.4em;
  padding: 18px 35px;
}

.page-game-types-poker__faq {
  margin-top: 30px;
}

.page-game-types-poker__faq-item {
  background-color: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 15px;
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.05);
}

.page-game-types-poker__faq-question {
  font-size: 1.3em;
  color: #1A2E4E;
  margin-bottom: 10px;
}

.page-game-types-poker__faq-answer {
  font-size: 1.05em;
  color: #555;
}

.page-game-types-poker__text-link {
  color: #FFD700; /* Gold link */
  text-decoration: underline;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-game-types-poker__text-link:hover {
  color: #e0b000;
}

.page-game-types-poker__center-text {
  text-align: center;
  margin-top: 30px;
}

.page-game-types-poker__section--conclusion {
  background-color: #1A2E4E;
  color: #ffffff;
  text-align: center;
  padding: 50px 20px;
}

.page-game-types-poker__section--conclusion .page-game-types-poker__section-title {
  color: #FFD700;
  border-bottom-color: #e0e0e0;
}

.page-game-types-poker__section--conclusion .page-game-types-poker__text-content {
  color: #e0e0e0;
  font-size: 1.15em;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .page-game-types-poker__main-title {
    font-size: 2.2em;
  }

  .page-game-types-poker__subtitle {
    font-size: 1.1em;
  }

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

  .page-game-types-poker__sub-section-title,
  .page-game-types-poker__variant-title {
    font-size: 1.5em;
  }

  .page-game-types-poker__text-content,
  .page-game-types-poker__list li,
  .page-game-types-poker__faq-answer {
    font-size: 1em;
  }

  .page-game-types-poker__hero,
  .page-game-types-poker__section--cta {
    padding: 40px 15px;
  }

  .page-game-types-poker__section {
    margin: 20px auto;
    padding: 15px;
  }

  .page-game-types-poker__hand-rankings {
    flex-direction: column;
  }

  .page-game-types-poker__cta-button {
    padding: 12px 25px;
    font-size: 1.1em;
  }
  .page-game-types-poker__cta-button--large {
    font-size: 1.2em;
    padding: 15px 30px;
  }
}

@media (max-width: 480px) {
  .page-game-types-poker__main-title {
    font-size: 1.8em;
  }

  .page-game-types-poker__subtitle {
    font-size: 0.9em;
  }

  .page-game-types-poker__section-title {
    font-size: 1.5em;
  }

  .page-game-types-poker__sub-section-title,
  .page-game-types-poker__variant-title {
    font-size: 1.3em;
  }

  .page-game-types-poker__cta-button {
    font-size: 1em;
    padding: 10px 20px;
  }
  .page-game-types-poker__cta-button--large {
    font-size: 1.1em;
    padding: 12px 25px;
  }
}