.page-game-types-poker-card-games {
  font-family: 'Arial', sans-serif;
  color: #E0E0E0; /* Light gray for general text on dark background */
  background-color: #1A2E44; /* Main dark background */
  line-height: 1.6;
}

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

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

.page-game-types-poker-card-games__hero {
  background: linear-gradient(135deg, #1A2E44 0%, #3a5c88 100%); /* Dark blue gradient */
  color: #FFFFFF;
  padding: 100px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.page-game-types-poker-card-games__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  opacity: 0.2;
  overflow: hidden;
}

.page-game-types-poker-card-games__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(50%) blur(3px);
}

.page-game-types-poker-card-games__hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
}

.page-game-types-poker-card-games__title {
  font-size: 3.5em;
  margin-bottom: 20px;
  font-weight: bold;
  line-height: 1.2;
  color: #FFFFFF;
}

.page-game-types-poker-card-games__subtitle {
  font-size: 1.5em;
  margin-bottom: 40px;
  color: #FFD700; /* Gold for emphasis */
}

.page-game-types-poker-card-games__section-title {
  font-size: 2.5em;
  margin-bottom: 40px;
  color: #FFD700; /* Gold for main titles */
  font-weight: bold;
}

.page-game-types-poker-card-games__text {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: #E0E0E0;
}

.page-game-types-poker-card-games__cta-button {
  display: inline-block;
  background-color: #FFD700; /* Gold for CTA */
  color: #1A2E44; /* Dark blue for text on gold */
  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;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-game-types-poker-card-games__cta-button:hover {
  background-color: #e6c200; /* Slightly darker gold on hover */
  transform: translateY(-3px);
}

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

.page-game-types-poker-card-games__game-item {
  background-color: #2A4058; /* Slightly lighter dark blue for cards */
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-game-types-poker-card-games__game-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.page-game-types-poker-card-games__game-thumbnail {
  width: 100%;
  max-width: 250px;
  height: 150px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 20px;
  border: 2px solid #FFD700;
}

.page-game-types-poker-card-games__game-name {
  font-size: 1.8em;
  color: #FFD700;
  margin-bottom: 10px;
}

.page-game-types-poker-card-games__game-description {
  font-size: 1em;
  color: #C0C0C0;
  margin-bottom: 20px;
}

.page-game-types-poker-card-games__game-button {
  display: inline-block;
  background-color: #FFD700;
  color: #1A2E44;
  padding: 10px 20px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1em;
  transition: background-color 0.3s ease;
}

.page-game-types-poker-card-games__game-button:hover {
  background-color: #e6c200;
}

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

.page-game-types-poker-card-games__feature-item {
  background-color: #2A4058;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  text-align: center;
}

.page-game-types-poker-card-games__feature-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 5px #FFD700);
}

.page-game-types-poker-card-games__feature-title {
  font-size: 1.5em;
  color: #FFD700;
  margin-bottom: 15px;
}

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

.page-game-types-poker-card-games__step-item {
  background-color: #2A4058;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-game-types-poker-card-games__step-number {
  font-size: 3em;
  font-weight: bold;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-game-types-poker-card-games__step-title {
  font-size: 1.8em;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-game-types-poker-card-games__step-button {
  display: inline-block;
  background-color: #FFD700;
  color: #1A2E44;
  padding: 10px 20px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1em;
  transition: background-color 0.3s ease;
  margin-top: auto; /* Push button to bottom */
}

.page-game-types-poker-card-games__step-button:hover {
  background-color: #e6c200;
}

.page-game-types-poker-card-games__app-download {
  background-color: #2A4058;
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  margin-top: 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

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

.page-game-types-poker-card-games__download-button {
  background-color: #FFD700;
  color: #1A2E44;
}

.page-game-types-poker-card-games__app-image {
  max-width: 300px;
  width: 100%;
  height: auto;
  border-radius: 10px;
  border: 2px solid #FFD700;
}

.page-game-types-poker-card-games__faq-item {
  background-color: #2A4058;
  padding: 25px;
  border-radius: 10px;
  margin-bottom: 20px;
  text-align: left;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

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

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

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

.page-game-types-poker-card-games__faq-answer {
  font-size: 1em;
  color: #C0C0C0;
  display: none;
  padding-top: 10px;
  border-top: 1px solid rgba(255, 215, 0, 0.2);
  margin-top: 10px;
}

.page-game-types-poker-card-games__faq-answer.active {
  display: block;
}

.page-game-types-poker-card-games__final-cta-content {
  background-color: #2A4058;
  padding: 50px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

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

/* Responsive Design */
@media (max-width: 768px) {
  .page-game-types-poker-card-games__title {
    font-size: 2.5em;
  }

  .page-game-types-poker-card-games__subtitle {
    font-size: 1.2em;
  }

  .page-game-types-poker-card-games__section-title {
    font-size: 2em;
  }

  .page-game-types-poker-card-games__game-grid,
  .page-game-types-poker-card-games__feature-list,
  .page-game-types-poker-card-games__steps-grid {
    grid-template-columns: 1fr;
  }

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

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

  .page-game-types-poker-card-games__subtitle {
    font-size: 1em;
  }

  .page-game-types-poker-card-games__cta-button {
    padding: 12px 25px;
    font-size: 1em;
  }

  .page-game-types-poker-card-games__section-title {
    font-size: 1.8em;
  }

  .page-game-types-poker-card-games__game-item,
  .page-game-types-poker-card-games__feature-item,
  .page-game-types-poker-card-games__step-item,
  .page-game-types-poker-card-games__faq-item {
    padding: 20px;
  }

  .page-game-types-poker-card-games__app-download {
    padding: 30px;
  }
}