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

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

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

.page-game-types-poker__section:nth-of-type(even) {
  background-color: #e9ecef;
}

.page-game-types-poker h1,
.page-game-types-poker h2 {
  color: #007BFF;
  margin-bottom: 20px;
  font-weight: bold;
}

.page-game-types-poker h1 {
  font-size: 2.8em;
  color: #fff; /* For hero section */
}

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

.page-game-types-poker h3 {
  color: #0056b3;
  font-size: 1.6em;
  margin-top: 30px;
  margin-bottom: 15px;
}

.page-game-types-poker p {
  margin-bottom: 15px;
  color: #495057;
}

.page-game-types-poker ul {
  list-style: none;
  padding: 0;
  margin: 20px auto;
  max-width: 800px;
  text-align: left;
}

.page-game-types-poker ul li {
  background-color: #fff;
  margin-bottom: 10px;
  padding: 15px 20px;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
  border-left: 5px solid #007BFF;
  color: #343a40;
}

.page-game-types-poker ol {
  list-style: decimal;
  padding-left: 20px;
  margin: 20px auto;
  max-width: 800px;
  text-align: left;
  color: #343a40;
}

.page-game-types-poker ol li {
  margin-bottom: 15px;
  padding-left: 10px;
  color: #495057;
}

.page-game-types-poker ol li strong {
  color: #0056b3;
}

.page-game-types-poker__btn {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.2s ease;
  cursor: pointer;
  text-align: center;
}

.page-game-types-poker__btn--primary {
  background-color: #007BFF;
  color: #fff;
  border: 2px solid #007BFF;
}

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

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

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

.page-game-types-poker__btn--small {
  padding: 8px 18px;
  font-size: 0.9em;
}

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

/* Hero Section */
.page-game-types-poker__hero {
  background: linear-gradient(135deg, #007BFF 0%, #0056b3 100%);
  color: #fff;
  padding: 100px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.page-game-types-poker__hero-content {
  max-width: 900px;
  z-index: 1;
  position: relative;
  text-align: center;
}

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

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

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

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

.page-game-types-poker__game-card {
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  padding: 25px;
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-game-types-poker__game-card img {
  max-width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

.page-game-types-poker__game-card h3 {
  color: #007BFF;
  margin-top: 0;
  margin-bottom: 10px;
}

.page-game-types-poker__game-card p {
  font-size: 0.95em;
  color: #555;
  flex-grow: 1;
}

.page-game-types-poker__game-card .page-game-types-poker__btn {
  align-self: flex-end;
  margin-top: 20px;
}

/* How to Play Section */
.page-game-types-poker__how-to-play ol {
  list-style: none;
  counter-reset: step-counter;
  padding: 0;
}

.page-game-types-poker__how-to-play ol li {
  counter-increment: step-counter;
  position: relative;
  padding-left: 60px;
  margin-bottom: 30px;
  text-align: left;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  padding: 25px 30px 25px 80px;
  border-left: 8px solid #FFD700;
}

.page-game-types-poker__how-to-play ol li::before {
  content: counter(step-counter);
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  background-color: #007BFF;
  color: #fff;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3em;
  font-weight: bold;
}

.page-game-types-poker__how-to-play ol li p {
  margin-bottom: 5px;
}

.page-game-types-poker__process-image {
  max-width: 80%;
  height: auto;
  margin-top: 40px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* Strategy Section */
.page-game-types-poker__strategy ul {
  text-align: left;
  margin: 20px auto;
  max-width: 900px;
  list-style: disc;
  padding-left: 40px;
}

.page-game-types-poker__strategy ul li {
  background-color: transparent;
  box-shadow: none;
  border-left: none;
  margin-bottom: 8px;
  padding: 5px 0;
}

.page-game-types-poker__strategy-image {
  max-width: 70%;
  height: auto;
  margin-top: 40px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* Mobile App Section */
.page-game-types-poker__mobile-app {
  background-color: #007BFF;
  color: #fff;
}

.page-game-types-poker__mobile-app h2 {
  color: #FFD700;
}

.page-game-types-poker__mobile-app p {
  color: #e0e0e0;
}

.page-game-types-poker__app-download {
  margin-top: 30px;
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.page-game-types-poker__app-download .page-game-types-poker__btn--primary {
  background-color: #FFD700;
  color: #007BFF;
  border-color: #FFD700;
}

.page-game-types-poker__app-download .page-game-types-poker__btn--primary:hover {
  background-color: #e6c200;
  border-color: #e6c200;
  color: #0056b3;
}

.page-game-types-poker__app-image {
  max-width: 60%;
  height: auto;
  margin-top: 40px;
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

/* Call to Action Final */
.page-game-types-poker__cta-final {
  background-color: #FFD700;
  color: #333;
  padding: 80px 0;
}

.page-game-types-poker__cta-final h2 {
  color: #007BFF;
  font-size: 2.5em;
}

.page-game-types-poker__cta-final p {
  color: #495057;
  font-size: 1.1em;
  margin-bottom: 40px;
}

/* Responsible Gaming */
.page-game-types-poker__responsible-gaming p {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-game-types-poker h1 {
    font-size: 2.2em;
  }
  .page-game-types-poker h2 {
    font-size: 1.8em;
  }
  .page-game-types-poker__game-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
  .page-game-types-poker__hero-content p {
    font-size: 1em;
  }
  .page-game-types-poker__process-image, .page-game-types-poker__strategy-image, .page-game-types-poker__app-image {
    max-width: 90%;
  }
}

@media (max-width: 768px) {
  .page-game-types-poker__section {
    padding: 40px 0;
  }
  .page-game-types-poker h1 {
    font-size: 1.8em;
  }
  .page-game-types-poker h2 {
    font-size: 1.6em;
  }
  .page-game-types-poker h3 {
    font-size: 1.4em;
  }
  .page-game-types-poker__hero {
    padding: 80px 0;
  }
  .page-game-types-poker__how-to-play ol li {
    padding: 20px 20px 20px 65px;
    border-left-width: 5px;
  }
  .page-game-types-poker__how-to-play ol li::before {
    left: 15px;
    width: 30px;
    height: 30px;
    font-size: 1.1em;
  }
  .page-game-types-poker__app-download {
    flex-direction: column;
    align-items: center;
  }
  .page-game-types-poker__app-download .page-game-types-poker__btn {
    width: 80%;
    max-width: 300px;
  }
}

@media (max-width: 480px) {
  .page-game-types-poker h1 {
    font-size: 1.5em;
  }
  .page-game-types-poker h2 {
    font-size: 1.4em;
  }
  .page-game-types-poker__btn--huge {
    padding: 15px 25px;
    font-size: 1.2em;
  }
  .page-game-types-poker__game-grid {
    grid-template-columns: 1fr;
  }
  .page-game-types-poker__process-image, .page-game-types-poker__strategy-image, .page-game-types-poker__app-image {
    max-width: 100%;
  }
}