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

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

.page-game-types-poker__section {
  padding: 60px 0;
  background-color: #f8f8f8;
}

.page-game-types-poker__section:nth-child(even) {
  background-color: #fff;
}

.page-game-types-poker__section-title {
  font-size: 2.5em;
  color: #004D99;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 10px;
}

.page-game-types-poker__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-types-poker__text {
  font-size: 1.1em;
  margin-bottom: 15px;
  color: #444;
  text-align: justify;
}

.page-game-types-poker__center-text {
  text-align: center;
}

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

.page-game-types-poker__btn--primary {
  background-color: #004D99;
  color: #fff;
}

.page-game-types-poker__btn--primary:hover {
  background-color: #003a73;
}

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

.page-game-types-poker__btn--secondary:hover {
  background-color: #e6c200;
  color: #003a73;
}

.page-game-types-poker__btn--action {
  background-color: #004D99;
  color: #FFD700;
  border: 1px solid #FFD700;
}

.page-game-types-poker__btn--action:hover {
  background-color: #003a73;
  border-color: #e6c200;
}

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

/* Hero Section */
.page-game-types-poker__hero-section {
  background: linear-gradient(135deg, #004D99 0%, #002a5c 100%);
  color: #fff;
  padding: 80px 0 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.page-game-types-poker__hero-image {
  width: 100%;
  max-width: 800px;
  height: auto;
  margin-top: 30px;
  border-radius: 10px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
  object-fit: cover;
}

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

.page-game-types-poker__hero-description {
  font-size: 1.3em;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #e0e0e0;
}

.page-game-types-poker__hero-cta {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-bottom: 40px;
}

/* Game List */
.page-game-types-poker__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

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

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

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

.page-game-types-poker__game-title {
  font-size: 1.6em;
  color: #004D99;
  margin-bottom: 10px;
  min-height: 60px; /* Ensure consistent height for titles */
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.page-game-types-poker__game-title a:hover {
  text-decoration: underline;
  color: #003a73;
}

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

/* Why Choose Section */
.page-game-types-poker__features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

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

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

.page-game-types-poker__feature-icon {
  width: 70px;
  height: 70px;
  margin-bottom: 20px;
  object-fit: contain;
}

.page-game-types-poker__feature-title {
  font-size: 1.4em;
  color: #004D99;
  margin-bottom: 15px;
}

.page-game-types-poker__feature-description {
  font-size: 0.95em;
  color: #666;
}

/* How To Play Section */
.page-game-types-poker__step-list {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.page-game-types-poker__step-item {
  background-color: #fff;
  border-left: 5px solid #FFD700;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.07);
  padding: 25px;
  position: relative;
}

.page-game-types-poker__step-item::before {
  content: 'Bước ' counter(step-counter);
  counter-increment: step-counter;
  position: absolute;
  top: -15px;
  left: 20px;
  background-color: #004D99;
  color: #fff;
  padding: 5px 15px;
  border-radius: 5px;
  font-weight: bold;
  font-size: 0.9em;
}

.page-game-types-poker__step-title {
  font-size: 1.5em;
  color: #004D99;
  margin-bottom: 15px;
  padding-top: 15px;
}

/* Promotions Section */
.page-game-types-poker__promo-list {
  list-style: none;
  padding: 0;
  margin-top: 20px;
  font-size: 1.1em;
  color: #444;
}

.page-game-types-poker__promo-list li {
  margin-bottom: 10px;
  padding-left: 30px;
  position: relative;
}

.page-game-types-poker__promo-list li::before {
  content: '⭐';
  position: absolute;
  left: 0;
  color: #FFD700;
  font-size: 1.2em;
  line-height: 1;
}

.page-game-types-poker__promo-highlight {
  font-weight: bold;
  color: #004D99;
}

.page-game-types-poker__center-cta {
  text-align: center;
  margin-top: 40px;
}

/* Tips Section */
.page-game-types-poker__tips-list {
  list-style: none;
  padding: 0;
  margin-top: 20px;
  font-size: 1.1em;
  color: #444;
}

.page-game-types-poker__tips-list li {
  margin-bottom: 10px;
  padding-left: 30px;
  position: relative;
}

.page-game-types-poker__tips-list li::before {
  content: '💡';
  position: absolute;
  left: 0;
  color: #FFD700;
  font-size: 1.2em;
  line-height: 1;
}

.page-game-types-poker__tip-highlight {
  font-weight: bold;
  color: #004D99;
}

/* FAQ Section */
.page-game-types-poker__accordion-item {
  margin-bottom: 15px;
  border: 1px solid #eee;
  border-radius: 8px;
  overflow: hidden;
}

.page-game-types-poker__accordion-header {
  background-color: #004D99;
  color: #fff;
  padding: 15px 20px;
  width: 100%;
  text-align: left;
  border: none;
  font-size: 1.2em;
  cursor: pointer;
  transition: background-color 0.3s ease;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.page-game-types-poker__accordion-header::after {
  content: '+';
  font-size: 1.5em;
  transition: transform 0.3s ease;
}

.page-game-types-poker__accordion-header.active {
  background-color: #003a73;
}

.page-game-types-poker__accordion-header.active::after {
  content: '-';
  transform: rotate(180deg);
}

.page-game-types-poker__accordion-content {
  padding: 0 20px;
  background-color: #fcfcfc;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, padding 0.4s ease-out;
}

.page-game-types-poker__accordion-content p {
  padding: 15px 0;
  margin: 0;
}

/* Final CTA Section */
.page-game-types-poker__final-cta {
  background-color: #004D99;
  color: #fff;
  padding: 80px 0;
}

.page-game-types-poker__final-cta .page-game-types-poker__section-title {
  color: #FFD700;
}

.page-game-types-poker__final-cta .page-game-types-poker__text {
  color: #e0e0e0;
  max-width: 800px;
  margin: 0 auto 40px;
}

.page-game-types-poker__final-cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-game-types-poker__hero-title {
    font-size: 2.8em;
  }
  .page-game-types-poker__hero-description {
    font-size: 1.1em;
  }
  .page-game-types-poker__section-title {
    font-size: 2em;
  }
  .page-game-types-poker__grid, .page-game-types-poker__features-grid, .page-game-types-poker__step-list {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
}

@media (max-width: 768px) {
  .page-game-types-poker__hero-title {
    font-size: 2.2em;
  }
  .page-game-types-poker__hero-description {
    font-size: 1em;
  }
  .page-game-types-poker__hero-cta {
    flex-direction: column;
    gap: 15px;
  }
  .page-game-types-poker__btn {
    width: 80%;
    margin-left: auto;
    margin-right: auto;
  }
  .page-game-types-poker__section {
    padding: 40px 0;
  }
  .page-game-types-poker__section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
  }
  .page-game-types-poker__game-card, .page-game-types-poker__feature-item, .page-game-types-poker__step-item {
    padding: 20px;
  }
  .page-game-types-poker__accordion-header {
    font-size: 1.1em;
    padding: 12px 15px;
  }
}

@media (max-width: 480px) {
  .page-game-types-poker__hero-title {
    font-size: 1.8em;
  }
  .page-game-types-poker__hero-description {
    font-size: 0.9em;
  }
  .page-game-types-poker__btn {
    width: 90%;
  }
  .page-game-types-poker__section-title {
    font-size: 1.5em;
  }
  .page-game-types-poker__text, .page-game-types-poker__promo-list li, .page-game-types-poker__tips-list li {
    font-size: 0.95em;
  }
  .page-game-types-poker__game-title, .page-game-types-poker__feature-title, .page-game-types-poker__step-title {
    font-size: 1.3em;
  }
  .page-game-types-poker__accordion-header {
    font-size: 1em;
  }
  .page-game-types-poker__final-cta .page-game-types-poker__section-title {
    font-size: 1.8em;
  }
}