/* style/game-guides-poker-variants-explained.css */
.page-game-guides-poker-variants-explained {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #f8f8f8;
}

.page-game-guides-poker-variants-explained__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-game-guides-poker-variants-explained__hero-section {
  background: linear-gradient(135deg, #003366, #1a4d80);
  color: #fff;
  padding: 80px 0;
  text-align: center;
}

.page-game-guides-poker-variants-explained__hero-title {
  font-size: 3em;
  margin-bottom: 20px;
  color: #FFD700;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-game-guides-poker-variants-explained__hero-description {
  font-size: 1.2em;
  max-width: 800px;
  margin: 0 auto 30px;
}

.page-game-guides-poker-variants-explained__cta-button {
  display: inline-block;
  background-color: #FFD700;
  color: #003366;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-game-guides-poker-variants-explained__cta-button:hover {
  background-color: #e6c200;
  transform: translateY(-2px);
}

.page-game-guides-poker-variants-explained__cta-button--small {
  padding: 10px 20px;
  font-size: 1em;
}

.page-game-guides-poker-variants-explained__cta-button--large {
  padding: 18px 35px;
  font-size: 1.2em;
  margin: 10px;
}

.page-game-guides-poker-variants-explained__cta-button--secondary {
  background-color: #003366;
  color: #FFD700;
  border: 2px solid #FFD700;
}

.page-game-guides-poker-variants-explained__cta-button--secondary:hover {
  background-color: #002244;
  border-color: #e6c200;
}

.page-game-guides-poker-variants-explained__content-section {
  padding: 60px 0;
  background-color: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  margin-bottom: 30px;
}

.page-game-guides-poker-variants-explained__section--dark {
  background-color: #eef4f8;
}

.page-game-guides-poker-variants-explained__section-title {
  font-size: 2.5em;
  color: #003366;
  margin-bottom: 30px;
  text-align: center;
  position: relative;
  padding-bottom: 15px;
}

.page-game-guides-poker-variants-explained__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #FFD700;
  border-radius: 2px;
}

.page-game-guides-poker-variants-explained__subsection-title {
  font-size: 1.8em;
  color: #003366;
  margin-top: 40px;
  margin-bottom: 20px;
  border-left: 5px solid #FFD700;
  padding-left: 15px;
}

.page-game-guides-poker-variants-explained p {
  margin-bottom: 15px;
  font-size: 1.1em;
  color: #333;
}

.page-game-guides-poker-variants-explained ul {
  list-style-type: disc;
  margin-left: 20px;
  margin-bottom: 20px;
  color: #444;
}

.page-game-guides-poker-variants-explained ul li {
  margin-bottom: 8px;
  font-size: 1.05em;
}

.page-game-guides-poker-variants-explained__image-wrapper {
  text-align: center;
  margin: 30px 0;
}

.page-game-guides-poker-variants-explained__image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-game-guides-poker-variants-explained__image--small {
  max-width: 150px;
}

.page-game-guides-poker-variants-explained__cta-section {
  background: #003366;
  color: #fff;
  padding: 80px 0;
  text-align: center;
}

.page-game-guides-poker-variants-explained__cta-section .page-game-guides-poker-variants-explained__section-title {
  color: #FFD700;
}

.page-game-guides-poker-variants-explained__cta-section p {
  color: #e0e0e0;
  font-size: 1.15em;
  margin-bottom: 30px;
}

.page-game-guides-poker-variants-explained__conclusion-section {
  padding: 60px 0;
  text-align: center;
  background-color: #f0f6fa;
}

.page-game-guides-poker-variants-explained__conclusion-text {
  font-size: 1.3em;
  font-weight: bold;
  color: #003366;
  margin-bottom: 40px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .page-game-guides-poker-variants-explained__hero-title {
    font-size: 2.2em;
  }

  .page-game-guides-poker-variants-explained__hero-description {
    font-size: 1em;
  }

  .page-game-guides-poker-variants-explained__section-title {
    font-size: 2em;
  }

  .page-game-guides-poker-variants-explained__subsection-title {
    font-size: 1.5em;
  }

  .page-game-guides-poker-variants-explained__cta-button {
    padding: 12px 25px;
    font-size: 1em;
  }

  .page-game-guides-poker-variants-explained__cta-button--large {
    padding: 15px 30px;
    font-size: 1.1em;
  }
}

@media (max-width: 480px) {
  .page-game-guides-poker-variants-explained__hero-title {
    font-size: 1.8em;
  }

  .page-game-guides-poker-variants-explained__section-title {
    font-size: 1.8em;
  }

  .page-game-guides-poker-variants-explained__subsection-title {
    font-size: 1.3em;
  }

  .page-game-guides-poker-variants-explained__cta-button--large {
    width: 100%;
    margin: 10px 0;
  }
}