/* style/game-guides-dragon-tiger-rules.css */

.page-game-guides-dragon-tiger-rules {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #f8f8f8;
}

.page-game-guides-dragon-tiger-rules__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-game-guides-dragon-tiger-rules__hero {
  background: linear-gradient(135deg, #003366 0%, #0a4f91 100%); /* Dark blue gradient */
  color: #fff;
  padding: 80px 0;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.page-game-guides-dragon-tiger-rules__hero-content {
  max-width: 800px;
  z-index: 1;
  position: relative;
}

.page-game-guides-dragon-tiger-rules__title {
  font-size: 3.2em;
  margin-bottom: 20px;
  font-weight: bold;
  color: #FFCC00; /* Auxiliary color for emphasis */
  line-height: 1.2;
}

.page-game-guides-dragon-tiger-rules__subtitle {
  font-size: 1.3em;
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.page-game-guides-dragon-tiger-rules__cta-button {
  display: inline-block;
  background-color: #FFCC00; /* Auxiliary color */
  color: #003366; /* Main color for text */
  padding: 15px 35px;
  border-radius: 50px;
  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-dragon-tiger-rules__cta-button:hover {
  background-color: #e6b800; /* Slightly darker yellow on hover */
  transform: translateY(-3px);
}

.page-game-guides-dragon-tiger-rules__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.15;
  z-index: 0;
}

.page-game-guides-dragon-tiger-rules__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.page-game-guides-dragon-tiger-rules__section {
  padding: 60px 0;
  border-bottom: 1px solid #eee;
}

.page-game-guides-dragon-tiger-rules__section:last-of-type {
  border-bottom: none;
}

.page-game-guides-dragon-tiger-rules__section-title {
  font-size: 2.5em;
  color: #003366; /* Main color */
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
}

.page-game-guides-dragon-tiger-rules__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #FFCC00; /* Auxiliary color */
  border-radius: 2px;
}

.page-game-guides-dragon-tiger-rules__sub-title {
  font-size: 1.8em;
  color: #003366;
  margin-top: 30px;
  margin-bottom: 15px;
  border-left: 5px solid #FFCC00;
  padding-left: 15px;
}

.page-game-guides-dragon-tiger-rules__section p {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: #444;
}

.page-game-guides-dragon-tiger-rules__section ul,
.page-game-guides-dragon-tiger-rules__section ol {
  list-style-type: disc;
  margin-left: 25px;
  margin-bottom: 20px;
  font-size: 1.1em;
  color: #444;
}

.page-game-guides-dragon-tiger-rules__section ol {
  list-style-type: decimal;
}

.page-game-guides-dragon-tiger-rules__section li {
  margin-bottom: 10px;
}

.page-game-guides-dragon-tiger-rules__list-cards li {
  font-weight: bold;
  color: #003366;
}

.page-game-guides-dragon-tiger-rules__list-cards li span {
  font-weight: normal;
  color: #444;
}

.page-game-guides-dragon-tiger-rules__payout-list li {
  font-weight: bold;
  color: #003366;
}

.page-game-guides-dragon-tiger-rules__payout-list li strong {
  color: #FFCC00;
}

.page-game-guides-dragon-tiger-rules__image-wrapper {
  text-align: center;
  margin: 40px 0;
}

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

.page-game-guides-dragon-tiger-rules__hm88-benefits .page-game-guides-dragon-tiger-rules__benefits-list {
  list-style-type: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

.page-game-guides-dragon-tiger-rules__hm88-benefits .page-game-guides-dragon-tiger-rules__benefits-list li {
  background-color: #fff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  position: relative;
  padding-left: 45px;
  font-size: 1.05em;
}

.page-game-guides-dragon-tiger-rules__hm88-benefits .page-game-guides-dragon-tiger-rules__benefits-list li::before {
  content: '✔';
  color: #FFCC00;
  font-size: 1.5em;
  position: absolute;
  left: 15px;
  top: 15px;
}

.page-game-guides-dragon-tiger-rules__cta-button--secondary {
  background-color: #003366;
  color: #FFCC00;
  border: 2px solid #FFCC00;
  margin-top: 30px;
}

.page-game-guides-dragon-tiger-rules__cta-button--secondary:hover {
  background-color: #0a4f91;
  border-color: #e6b800;
}

.page-game-guides-dragon-tiger-rules__faq-item {
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  margin-bottom: 15px;
  padding: 20px;
}

.page-game-guides-dragon-tiger-rules__faq-question {
  font-size: 1.3em;
  color: #003366;
  margin-bottom: 10px;
  cursor: pointer;
  position: relative;
  padding-right: 30px;
}

.page-game-guides-dragon-tiger-rules__faq-question::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 0;
  font-size: 1.5em;
  line-height: 1;
  transition: transform 0.3s ease;
}

.page-game-guides-dragon-tiger-rules__faq-question.active::after {
  content: '-';
  transform: rotate(180deg);
}

.page-game-guides-dragon-tiger-rules__faq-answer {
  font-size: 1.05em;
  color: #555;
  display: none;
  padding-top: 10px;
  border-top: 1px solid #eee;
  margin-top: 10px;
}

.page-game-guides-dragon-tiger-rules__faq-answer.active {
  display: block;
}

.page-game-guides-dragon-tiger-rules__cta-bottom {
  background-color: #003366;
  color: #fff;
  text-align: center;
  padding: 80px 0;
}

.page-game-guides-dragon-tiger-rules__cta-bottom .page-game-guides-dragon-tiger-rules__section-title {
  color: #FFCC00;
}

.page-game-guides-dragon-tiger-rules__cta-bottom .page-game-guides-dragon-tiger-rules__section-title::after {
  background-color: #fff;
}

.page-game-guides-dragon-tiger-rules__cta-bottom p {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: #f0f0f0;
}

.page-game-guides-dragon-tiger-rules__cta-button--primary {
  background-color: #FFCC00;
  color: #003366;
  border: none;
}

.page-game-guides-dragon-tiger-rules__cta-button--primary:hover {
  background-color: #e6b800;
}

.page-game-guides-dragon-tiger-rules__small-text {
  font-size: 0.9em;
  margin-top: 20px;
  color: #ccc;
}

/* Responsive Design */
@media (max-width: 768px) {
  .page-game-guides-dragon-tiger-rules__title {
    font-size: 2.5em;
  }

  .page-game-guides-dragon-tiger-rules__subtitle {
    font-size: 1.1em;
  }

  .page-game-guides-dragon-tiger-rules__section-title {
    font-size: 2em;
  }

  .page-game-guides-dragon-tiger-rules__sub-title {
    font-size: 1.5em;
  }

  .page-game-guides-dragon-tiger-rules__cta-button {
    padding: 12px 25px;
    font-size: 1em;
  }

  .page-game-guides-dragon-tiger-rules__hm88-benefits .page-game-guides-dragon-tiger-rules__benefits-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .page-game-guides-dragon-tiger-rules__title {
    font-size: 2em;
  }

  .page-game-guides-dragon-tiger-rules__section {
    padding: 40px 0;
  }

  .page-game-guides-dragon-tiger-rules__section-title {
    font-size: 1.8em;
  }

  .page-game-guides-dragon-tiger-rules__sub-title {
    font-size: 1.3em;
  }
}