.page-game-types-poker {
  font-family: 'Arial', sans-serif;
  color: #e5dfd3; /* Light text on dark background */
  background-color: #1A202C;
  line-height: 1.6;
}

.page-game-types-poker__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 80px 20px;
  background: linear-gradient(135deg, #1A202C 0%, #3a455a 100%);
  position: relative;
  overflow: hidden;
  color: #e5dfd3;
}

.page-game-types-poker__hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('[GALLERY:bg:poker_table_blurred,dark_mood,abstract_cards]');
  background-size: cover;
  background-position: center;
  opacity: 0.1;
  z-index: 0;
}

.page-game-types-poker__hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin-bottom: 40px;
}

.page-game-types-poker__main-title {
  font-size: 3.5em;
  color: #FFD700;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

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

.page-game-types-poker__cta-group {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.page-game-types-poker__btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  font-size: 1.1em;
  text-align: center;
  white-space: nowrap;
}

.page-game-types-poker__btn--primary {
  background-color: #FFD700;
  color: #1A202C;
  border: 2px solid #FFD700;
}

.page-game-types-poker__btn--primary:hover {
  background-color: #e5c100;
  border-color: #e5c100;
  transform: translateY(-2px);
}

.page-game-types-poker__btn--secondary {
  background-color: transparent;
  color: #FFD700;
  border: 2px solid #FFD700;
}

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

.page-game-types-poker__hero-image-container {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 800px;
  margin-top: 40px;
}

.page-game-types-poker__hero-image {
  width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.page-game-types-poker__section {
  padding: 60px 20px;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.page-game-types-poker__section-title {
  font-size: 2.8em;
  color: #FFD700;
  margin-bottom: 20px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.page-game-types-poker__section-description {
  font-size: 1.1em;
  color: #b0b0b0;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

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

.page-game-types-poker__game-card {
  background-color: #2a3342;
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  height: 100%;
}

.page-game-types-poker__game-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
}

.page-game-types-poker__game-card-image {
  width: 100%;
  max-width: 200px;
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
  border: 2px solid #FFD700;
}

.page-game-types-poker__game-card-title {
  font-size: 1.6em;
  color: #FFD700;
  margin-bottom: 10px;
}

.page-game-types-poker__game-card-title a {
  color: #FFD700;
  text-decoration: none;
}

.page-game-types-poker__game-card-title a:hover {
  text-decoration: underline;
}

.page-game-types-poker__game-card-description {
  font-size: 0.95em;
  color: #b0b0b0;
  flex-grow: 1;
  margin-bottom: 20px;
}

.page-game-types-poker__btn--small {
  padding: 10px 20px;
  font-size: 0.9em;
  border-radius: 6px;
}

.page-game-types-poker__why-choose {
  background-color: #1A202C;
}

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

.page-game-types-poker__benefit-item {
  background-color: #2a3342;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  height: 100%;
}

.page-game-types-poker__benefit-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
  filter: invert(80%) sepia(100%) saturate(1000%) hue-rotate(0deg) brightness(100%) contrast(100%); /* Gold tint */
}

.page-game-types-poker__benefit-title {
  font-size: 1.8em;
  color: #FFD700;
  margin-bottom: 10px;
}

.page-game-types-poker__benefit-description {
  font-size: 1em;
  color: #b0b0b0;
}

.page-game-types-poker__cta-bottom {
  margin-top: 60px;
}

.page-game-types-poker__btn--large {
  padding: 18px 35px;
  font-size: 1.2em;
  border-radius: 10px;
}

.page-game-types-poker__how-to-play {
  background-color: #2a3342;
  color: #e5dfd3;
}

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

.page-game-types-poker__step-item {
  background-color: #1A202C;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
}

.page-game-types-poker__step-number {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: #FFD700;
  color: #1A202C;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 2em;
  font-weight: bold;
  margin-bottom: 20px;
  box-shadow: 0 0 15px rgba(255, 215, 0, 0.5);
}

.page-game-types-poker__step-title {
  font-size: 1.7em;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-game-types-poker__step-description {
  font-size: 1em;
  color: #b0b0b0;
  flex-grow: 1;
  margin-bottom: 20px;
}

.page-game-types-poker__faq {
  background-color: #1A202C;
}

.page-game-types-poker__faq-items {
  margin-top: 40px;
  text-align: left;
}

.page-game-types-poker__faq-item {
  background-color: #2a3342;
  border-radius: 10px;
  margin-bottom: 20px;
  padding: 25px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.page-game-types-poker__faq-question {
  font-size: 1.3em;
  color: #FFD700;
  margin-bottom: 10px;
  cursor: pointer;
  position: relative;
  padding-right: 30px;
}

.page-game-types-poker__faq-question::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5em;
  color: #FFD700;
  transition: transform 0.3s ease;
}

.page-game-types-poker__faq-question.active::after {
  content: '-';
  transform: translateY(-50%) rotate(180deg);
}

.page-game-types-poker__faq-answer {
  font-size: 1em;
  color: #b0b0b0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease-out;
  padding-top: 0;
}

.page-game-types-poker__faq-answer.active {
  max-height: 200px; /* Adjust as needed */
  padding-top: 15px;
}

.page-game-types-poker__final-cta {
  background-color: #FFD700;
  color: #1A202C;
  padding: 80px 20px;
  border-radius: 15px;
  margin: 40px auto;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.page-game-types-poker__final-cta-content .page-game-types-poker__section-title {
  color: #1A202C;
  text-shadow: none;
}

.page-game-types-poker__final-cta-description {
  font-size: 1.2em;
  color: #333;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-game-types-poker__btn--xlarge {
  padding: 20px 40px;
  font-size: 1.4em;
  border-radius: 12px;
  background-color: #1A202C;
  color: #FFD700;
  border: 2px solid #1A202C;
}

.page-game-types-poker__btn--xlarge:hover {
  background-color: #3a455a;
  border-color: #3a455a;
  color: #FFD700;
  transform: translateY(-3px);
}

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

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

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

  .page-game-types-poker__cta-group {
    flex-direction: column;
    gap: 15px;
  }

  .page-game-types-poker__btn--large {
    font-size: 1.1em;
    padding: 15px 30px;
  }

  .page-game-types-poker__btn--xlarge {
    font-size: 1.2em;
    padding: 18px 35px;
  }

  .page-game-types-poker__hero-section {
    padding: 60px 15px;
  }

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

  .page-game-types-poker__game-card, .page-game-types-poker__benefit-item, .page-game-types-poker__step-item {
    padding: 20px;
  }

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

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

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

  .page-game-types-poker__hero-description, .page-game-types-poker__section-description, .page-game-types-poker__benefit-description, .page-game-types-poker__step-description, .page-game-types-poker__faq-answer, .page-game-types-poker__final-cta-description {
    font-size: 0.9em;
  }

  .page-game-types-poker__btn {
    font-size: 1em;
    padding: 12px 25px;
  }

  .page-game-types-poker__btn--xlarge {
    font-size: 1.1em;
    padding: 15px 30px;
  }
}