.page-game-types-poker-games {
  font-family: 'Arial', sans-serif;
  color: #e5d1bb; /* Light text for dark background, contrast 7.3:1 with #1A2E44 */
  line-height: 1.6;
  background-color: #1A2E44; /* Primary dark background */
}

.page-game-types-poker-games__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-game-types-poker-games__section {
  padding: 60px 0;
  text-align: center;
}

.page-game-types-poker-games__section:nth-child(even) {
  background-color: #2A4058; /* Slightly lighter dark background for contrast, contrast 6.2:1 with #e5d1bb */
}

.page-game-types-poker-games h1,
.page-game-types-poker-games h2 {
  color: #FFD700; /* Accent color for main headings, contrast 10.9:1 with #1A2E44 */
  margin-bottom: 25px;
  font-weight: bold;
  text-transform: uppercase;
}

.page-game-types-poker-games h1 {
  font-size: 2.8em;
  line-height: 1.2;
}

.page-game-types-poker-games h2 {
  font-size: 2.2em;
  line-height: 1.3;
}

.page-game-types-poker-games h3 {
  color: #FFD700; /* Accent color for subheadings, contrast 10.9:1 with #1A2E44 */
  font-size: 1.6em;
  margin-top: 20px;
  margin-bottom: 15px;
}

.page-game-types-poker-games h4 {
  color: #e5d1bb; /* Light text for smaller headings, contrast 7.3:1 with #1A2E44 */
  font-size: 1.2em;
  margin-top: 15px;
  margin-bottom: 10px;
}

.page-game-types-poker-games p {
  margin-bottom: 20px;
  font-size: 1.1em;
  color: #e5d1bb;
}

.page-game-types-poker-games strong {
  color: #FFD700;
}

.page-game-types-poker-games__btn {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  cursor: pointer;
  font-size: 1.1em;
  border: none;
}

.page-game-types-poker-games__btn--primary {
  background-color: #FFD700; /* Accent color for primary buttons */
  color: #1A2E44; /* Dark text for accent background, contrast 10.9:1 */
}

.page-game-types-poker-games__btn--primary:hover {
  background-color: #e6c200;
  transform: translateY(-2px);
}

.page-game-types-poker-games__btn--secondary {
  background-color: transparent;
  color: #FFD700; /* Accent color for secondary button text, contrast 10.9:1 with #1A2E44 */
  border: 2px solid #FFD700;
}

.page-game-types-poker-games__btn--secondary:hover {
  background-color: #FFD700;
  color: #1A2E44;
  transform: translateY(-2px);
}

.page-game-types-poker-games__btn--small {
  padding: 8px 18px;
  font-size: 0.95em;
}

.page-game-types-poker-games__btn--inline {
  margin-top: 15px;
}

.page-game-types-poker-games__btn--large {
  padding: 15px 35px;
  font-size: 1.3em;
}

/* Hero Section */
.page-game-types-poker-games__hero-section {
  background: linear-gradient(135deg, #1A2E44 0%, #3a5d7c 100%); /* Gradient background */
  padding: 80px 0;
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 40px;
  flex-wrap: wrap-reverse; /* Image on right for larger screens, top for smaller */
}

.page-game-types-poker-games__hero-content {
  max-width: 600px;
  text-align: left;
}

.page-game-types-poker-games__hero-content h1 {
  font-size: 3.5em;
  margin-bottom: 20px;
}

.page-game-types-poker-games__hero-content p {
  font-size: 1.2em;
  margin-bottom: 30px;
}

.page-game-types-poker-games__cta-group {
  display: flex;
  gap: 20px;
  justify-content: flex-start;
  flex-wrap: wrap;
}

.page-game-types-poker-games__hero-image-wrapper {
  flex-shrink: 0;
  max-width: 500px;
}

.page-game-types-poker-games__hero-image {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Why Choose Section */
.page-game-types-poker-games__why-choose h2 {
  margin-bottom: 40px;
}

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

.page-game-types-poker-games__feature-item {
  background-color: #1A2E44;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

.page-game-types-poker-games__feature-item:hover {
  transform: translateY(-5px);
}

.page-game-types-poker-games__feature-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
}

.page-game-types-poker-games__feature-item h3 {
  font-size: 1.4em;
  margin-bottom: 10px;
}

.page-game-types-poker-games__feature-item p {
  font-size: 1em;
  color: #c7c7c7; /* Light grey for body text, contrast 5.1:1 with #1A2E44 */
}

/* Game Types Section */
.page-game-types-poker-games__game-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-game-types-poker-games__game-card {
  background-color: #1A2E44;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  text-align: center;
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-game-types-poker-games__game-card:hover {
  transform: translateY(-5px);
}

.page-game-types-poker-games__game-image {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

.page-game-types-poker-games__game-card h3 {
  font-size: 1.5em;
  margin-bottom: 10px;
  flex-grow: 0;
}

.page-game-types-poker-games__game-card p {
  font-size: 0.95em;
  color: #c7c7c7;
  flex-grow: 1;
  margin-bottom: 20px;
}

/* Guide Section */
.page-game-types-poker-games__steps-list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
  text-align: left;
}

.page-game-types-poker-games__steps-list li {
  background-color: #1A2E44;
  margin-bottom: 20px;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-game-types-poker-games__steps-list li h3 {
  color: #FFD700;
  font-size: 1.6em;
  margin-top: 0;
}

.page-game-types-poker-games__steps-list li p {
  color: #c7c7c7;
}

/* Strategy Section */
.page-game-types-poker-games__strategy-list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.page-game-types-poker-games__strategy-list li {
  background-color: #1A2E44;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.page-game-types-poker-games__strategy-icon {
  width: 50px;
  height: 50px;
  margin-bottom: 15px;
}

.page-game-types-poker-games__strategy-list li h4 {
  color: #FFD700;
  margin-top: 0;
}

.page-game-types-poker-games__strategy-list li p {
  color: #c7c7c7;
}

/* Offers Section */
.page-game-types-poker-games__offer-list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.page-game-types-poker-games__offer-list li {
  background-color: #1A2E44;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.page-game-types-poker-games__offer-icon {
  width: 50px;
  height: 50px;
  margin-bottom: 15px;
}

.page-game-types-poker-games__offer-list li h4 {
  color: #FFD700;
  margin-top: 0;
}

.page-game-types-poker-games__offer-list li p {
  color: #c7c7c7;
}

.page-game-types-poker-games__cta-center {
  margin-top: 50px;
}

/* Safety Section */
.page-game-types-poker-games__safety-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-game-types-poker-games__safety-item {
  background-color: #1A2E44;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.page-game-types-poker-games__safety-icon {
  width: 50px;
  height: 50px;
  margin-bottom: 15px;
}

.page-game-types-poker-games__safety-item h3 {
  font-size: 1.4em;
  margin-top: 0;
}

.page-game-types-poker-games__safety-item p {
  color: #c7c7c7;
}

/* FAQ Section */
.page-game-types-poker-games__faq-item {
  background-color: #1A2E44;
  margin-bottom: 20px;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  text-align: left;
}

.page-game-types-poker-games__faq-item h3 {
  color: #FFD700;
  font-size: 1.5em;
  margin-top: 0;
  margin-bottom: 10px;
  cursor: pointer;
  position: relative;
  padding-right: 30px; /* Space for arrow */
}

.page-game-types-poker-games__faq-item p {
  color: #c7c7c7;
  display: none; /* Hidden by default */
  padding-top: 10px;
  border-top: 1px solid rgba(255, 215, 0, 0.2);
  margin-top: 15px;
}

.page-game-types-poker-games__faq-item h3::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.2em;
  color: #FFD700;
}

.page-game-types-poker-games__faq-item.active h3::after {
  content: '-';
}

.page-game-types-poker-games__faq-item.active p {
  display: block;
}

/* Final CTA Section */
.page-game-types-poker-games__final-cta {
  background: linear-gradient(135deg, #FFD700, #b39700); /* Accent gradient */
  padding: 80px 0;
}

.page-game-types-poker-games__cta-content h2,
.page-game-types-poker-games__cta-content p {
  color: #1A2E44; /* Dark text for light background, contrast 10.9:1 with #FFD700 */
}

.page-game-types-poker-games__cta-content h2 {
  font-size: 2.8em;
}

.page-game-types-poker-games__cta-content p {
  font-size: 1.2em;
  margin-bottom: 40px;
}

.page-game-types-poker-games__cta-center {
  text-align: center;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-game-types-poker-games__hero-section {
    flex-direction: column-reverse;
    text-align: center;
    padding: 60px 20px;
  }

  .page-game-types-poker-games__hero-content {
    text-align: center;
    max-width: 100%;
  }

  .page-game-types-poker-games__hero-content h1 {
    font-size: 2.5em;
  }

  .page-game-types-poker-games__hero-content p {
    font-size: 1.1em;
  }

  .page-game-types-poker-games__cta-group {
    justify-content: center;
  }

  .page-game-types-poker-games h2 {
    font-size: 1.8em;
  }

  .page-game-types-poker-games h3 {
    font-size: 1.3em;
  }

  .page-game-types-poker-games__features-grid,
  .page-game-types-poker-games__game-grid,
  .page-game-types-poker-games__strategy-list,
  .page-game-types-poker-games__offer-list,
  .page-game-types-poker-games__safety-grid {
    grid-template-columns: 1fr;
  }

  .page-game-types-poker-games__steps-list li {
    text-align: center;
  }

  .page-game-types-poker-games__steps-list li h3 {
    text-align: center;
  }

  .page-game-types-poker-games__steps-list li .page-game-types-poker-games__btn--inline {
    display: block;
    margin-left: auto;
    margin-right: auto;
  }

  .page-game-types-poker-games__strategy-list li,
  .page-game-types-poker-games__offer-list li,
  .page-game-types-poker-games__safety-item {
    align-items: center;
    text-align: center;
  }
}

@media (max-width: 576px) {
  .page-game-types-poker-games__hero-content h1 {
    font-size: 2em;
  }

  .page-game-types-poker-games__hero-content p {
    font-size: 1em;
  }

  .page-game-types-poker-games__btn {
    font-size: 1em;
    padding: 10px 20px;
  }

  .page-game-types-poker-games__btn--large {
    font-size: 1.1em;
    padding: 12px 25px;
  }

  .page-game-types-poker-games__section {
    padding: 40px 0;
  }

  .page-game-types-poker-games h2 {
    font-size: 1.6em;
  }
}