.page-games-types-poker {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #f8f9fa;
}

.page-games-types-poker .highlight {
  color: #0047AB; /* Primary color for emphasis */
  font-weight: bold;
}

.page-games-types-poker__hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: linear-gradient(135deg, #0047AB 0%, #0a6bb8 100%); /* Dark blue gradient */
  color: #fff;
  padding: 60px 20px;
  position: relative;
  overflow: hidden;
}

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

.page-games-types-poker__hero-title {
  font-size: 2.8em;
  margin-bottom: 15px;
  color: #FFD700; /* Gold for title highlight */
}

.page-games-types-poker__hero-subtitle {
  font-size: 1.3em;
  margin-bottom: 30px;
  color: #e0e0e0;
}

.page-games-types-poker__hero-image-wrapper {
  position: absolute;
  bottom: -20px;
  right: -50px;
  width: 400px;
  height: 400px;
  opacity: 0.3;
  z-index: 0;
}

.page-games-types-poker__hero-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

@media (min-width: 768px) {
  .page-games-types-poker__hero {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
    padding: 100px 50px;
  }
  .page-games-types-poker__hero-content {
    max-width: 60%;
  }
  .page-games-types-poker__hero-title {
    font-size: 3.5em;
  }
  .page-games-types-poker__hero-subtitle {
    font-size: 1.5em;
  }
  .page-games-types-poker__hero-image-wrapper {
    position: relative;
    bottom: auto;
    right: auto;
    width: 45%;
    height: auto;
    opacity: 1;
  }
}

.page-games-types-poker__section {
  padding: 60px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.page-games-types-poker__section-title {
  font-size: 2.2em;
  color: #0047AB; /* Primary color */
  text-align: center;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.page-games-types-poker__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  width: 80px;
  height: 4px;
  background-color: #FFD700; /* Gold accent */
  border-radius: 2px;
}

.page-games-types-poker__section-description {
  font-size: 1.1em;
  color: #555;
  text-align: center;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

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

.page-games-types-poker__btn--primary {
  background-color: #FFD700; /* Gold */
  color: #0047AB; /* Dark blue */
}

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

.page-games-types-poker__btn--secondary {
  background-color: #0047AB; /* Dark blue */
  color: #FFD700; /* Gold */
  border: 2px solid #FFD700;
}

.page-games-types-poker__btn--secondary:hover {
  background-color: #0a6bb8;
  transform: translateY(-2px);
}

.page-games-types-poker__features {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin-top: 40px;
}

.page-games-types-poker__feature-item {
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  padding: 30px;
  text-align: center;
  max-width: 350px;
  transition: transform 0.3s ease;
}

.page-games-types-poker__feature-item:hover {
  transform: translateY(-5px);
}

.page-games-types-poker__feature-icon {
  width: 70px;
  height: 70px;
  margin-bottom: 20px;
  filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.2));
}

.page-games-types-poker__feature-heading {
  font-size: 1.5em;
  color: #0047AB;
  margin-bottom: 15px;
}

.page-games-types-poker__feature-item p {
  color: #666;
  font-size: 0.95em;
}

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

.page-games-types-poker__game-card {
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.3s ease;
}

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

.page-games-types-poker__game-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.page-games-types-poker__game-title {
  font-size: 1.4em;
  color: #0047AB;
  padding: 15px 20px 0;
}

.page-games-types-poker__game-desc {
  font-size: 0.95em;
  color: #666;
  padding: 10px 20px;
}

.page-games-types-poker__game-features {
  list-style: none;
  padding: 0 20px 20px;
  margin: 0;
}

.page-games-types-poker__game-features li {
  display: flex;
  align-items: center;
  font-size: 0.9em;
  color: #555;
  margin-bottom: 5px;
}

.page-games-types-poker__feature-dot {
  width: 8px;
  height: 8px;
  background-color: #FFD700; /* Gold */
  border-radius: 50%;
  margin-right: 10px;
  flex-shrink: 0;
}

.page-games-types-poker__content-block {
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  padding: 30px;
  margin-bottom: 30px;
}

.page-games-types-poker__sub-title {
  font-size: 1.8em;
  color: #0047AB;
  margin-bottom: 20px;
  text-align: center;
}

.page-games-types-poker__content-block p {
  font-size: 1.05em;
  color: #444;
  margin-bottom: 15px;
}

.page-games-types-poker__list {
  list-style: none;
  padding-left: 0;
}

.page-games-types-poker__list li {
  margin-bottom: 10px;
  padding-left: 25px;
  position: relative;
  color: #444;
}

.page-games-types-poker__list li::before {
  content: '▶';
  position: absolute;
  left: 0;
  color: #FFD700; /* Gold bullet */
  font-size: 0.8em;
  top: 3px;
}

.page-games-types-poker__list--ordered {
  list-style: decimal;
  padding-left: 20px;
}

.page-games-types-poker__list--ordered li::before {
  content: none;
}

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

.page-games-types-poker__cta-block {
  text-align: center;
  background-color: #e0f2f7; /* Light blue background for CTA */
  padding: 30px;
  border-radius: 10px;
  margin-top: 40px;
}

.page-games-types-poker__cta-block p {
  font-size: 1.2em;
  color: #0047AB;
  margin-bottom: 20px;
}

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

.page-games-types-poker__strategy-card, .page-games-types-poker__promo-card {
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  text-align: center;
  padding-bottom: 20px;
}

.page-games-types-poker__strategy-image, .page-games-types-poker__promo-image {
  width: 100%;
  height: 180px;
  object-fit: cover;
  margin-bottom: 15px;
}

.page-games-types-poker__strategy-title, .page-games-types-poker__promo-title {
  font-size: 1.3em;
  color: #0047AB;
  padding: 0 20px;
  margin-bottom: 10px;
}

.page-games-types-poker__strategy-card p, .page-games-types-poker__promo-card p {
  font-size: 0.95em;
  color: #666;
  padding: 0 20px;
}

.page-games-types-poker__app-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  margin-top: 40px;
}

.page-games-types-poker__app-text {
  max-width: 600px;
  text-align: center;
}

.page-games-types-poker__app-text p {
  font-size: 1.1em;
  color: #444;
  margin-bottom: 20px;
}

.page-games-types-poker__app-image-wrapper {
  width: 100%;
  max-width: 400px;
}

.page-games-types-poker__app-image {
  width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

@media (min-width: 992px) {
  .page-games-types-poker__app-info {
    flex-direction: row;
    text-align: left;
    justify-content: space-between;
  }
  .page-games-types-poker__app-text {
    text-align: left;
    max-width: 50%;
  }
  .page-games-types-poker__app-image-wrapper {
    max-width: 45%;
  }
}

/* Responsive adjustments */
@media (max-width: 767px) {
  .page-games-types-poker__hero-title {
    font-size: 2em;
  }
  .page-games-types-poker__hero-subtitle {
    font-size: 1em;
  }
  .page-games-types-poker__section-title {
    font-size: 1.8em;
  }
  .page-games-types-poker__section-description {
    font-size: 1em;
  }
  .page-games-types-poker__feature-item,
  .page-games-types-poker__game-card,
  .page-games-types-poker__strategy-card,
  .page-games-types-poker__promo-card {
    padding: 20px;
  }
  .page-games-types-poker__sub-title {
    font-size: 1.5em;
  }
  .page-games-types-poker__list li,
  .page-games-types-poker__list--ordered li {
    font-size: 0.95em;
  }
}

/* Ensure contrast for text on primary/secondary buttons */
.page-games-types-poker__btn--primary {
  color: #0047AB; /* Dark blue on gold */
}

.page-games-types-poker__btn--secondary {
  color: #FFD700; /* Gold on dark blue */
}

/* Ensure general text contrast */
.page-games-types-poker p, .page-games-types-poker li {
  color: #333;
}

.page-games-types-poker h1, .page-games-types-poker h2, .page-games-types-poker h3 {
  color: #0047AB; /* Dark blue for headings */
}

.page-games-types-poker__hero h1, .page-games-types-poker__hero p {
  color: #fff; /* White on dark blue hero background */
}

.page-games-types-poker__hero-title .highlight {
  color: #FFD700; /* Gold on dark blue hero title */
}

.page-games-types-poker__cta-block p {
  color: #0047AB;
}