.page-game-lobby-jackpot-games {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #e0e0e0; /* Light gray text for dark background */
  background-color: #000a14; /* Very dark blue/black for main background */
}

.page-game-lobby-jackpot-games__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-game-lobby-jackpot-games__hero-section {
  background: linear-gradient(135deg, #001f3f 0%, #000a14 100%);
  padding: 100px 0;
  text-align: center;
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

.page-game-lobby-jackpot-games__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  font-weight: bold;
  color: #ffcc00; /* Auxiliary color for emphasis */
  line-height: 1.2;
}

.page-game-lobby-jackpot-games__hero-description {
  font-size: 1.3em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-game-lobby-jackpot-games__hero-cta-group {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.page-game-lobby-jackpot-games__button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease;
  cursor: pointer;
  border: none;
}

.page-game-lobby-jackpot-games__button--primary {
  background-color: #ffcc00;
  color: #001f3f;
}

.page-game-lobby-jackpot-games__button--primary:hover {
  background-color: #e6b800;
  transform: translateY(-2px);
}

.page-game-lobby-jackpot-games__button--secondary {
  background-color: transparent;
  color: #ffcc00;
  border: 2px solid #ffcc00;
}

.page-game-lobby-jackpot-games__button--secondary:hover {
  background-color: #ffcc00;
  color: #001f3f;
  transform: translateY(-2px);
}

.page-game-lobby-jackpot-games__button--small {
  padding: 10px 20px;
  font-size: 0.9em;
  margin-top: 15px;
}

.page-game-lobby-jackpot-games__section-title {
  font-size: 2.8em;
  color: #ffcc00;
  text-align: center;
  margin-bottom: 30px;
  margin-top: 60px;
  font-weight: bold;
  line-height: 1.3;
}

.page-game-lobby-jackpot-games__section-subtitle {
  font-size: 1.2em;
  text-align: center;
  margin-bottom: 50px;
  color: #b0b0b0;
}

.page-game-lobby-jackpot-games__introduction-section,
.page-game-lobby-jackpot-games__game-types-section,
.page-game-lobby-jackpot-games__how-it-works-section,
.page-game-lobby-jackpot-games__tips-section,
.page-game-lobby-jackpot-games__why-mu9-section,
.page-game-lobby-jackpot-games__faq-section,
.page-game-lobby-jackpot-games__cta-section {
  padding: 80px 0;
  background-color: #001f3f; /* Primary dark blue for sections */
  margin-bottom: 20px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-game-lobby-jackpot-games__introduction-section {
    background-color: #001f3f;
}

.page-game-lobby-jackpot-games__game-types-section {
    background-color: #000a14;
}

.page-game-lobby-jackpot-games__how-it-works-section {
    background-color: #001f3f;
}

.page-game-lobby-jackpot-games__tips-section {
    background-color: #000a14;
}

.page-game-lobby-jackpot-games__why-mu9-section {
    background-color: #001f3f;
}

.page-game-lobby-jackpot-games__faq-section {
    background-color: #000a14;
}

.page-game-lobby-jackpot-games__cta-section {
    background: linear-gradient(90deg, #001f3f, #003366);
}

.page-game-lobby-jackpot-games__content-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}

@media (min-width: 768px) {
  .page-game-lobby-jackpot-games__content-grid {
    grid-template-columns: 1fr 1fr;
  }
  .page-game-lobby-jackpot-games__tips-section .page-game-lobby-jackpot-games__content-grid {
    grid-template-columns: 1fr 1.5fr;
  }
}

.page-game-lobby-jackpot-games__text-content p {
  margin-bottom: 15px;
  font-size: 1.1em;
  color: #e0e0e0;
}

.page-game-lobby-jackpot-games__image-wrapper {
  text-align: center;
}

.page-game-lobby-jackpot-games__image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

.page-game-lobby-jackpot-games__game-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-game-lobby-jackpot-games__game-card {
  background-color: #002a52; /* Slightly lighter dark blue */
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-game-lobby-jackpot-games__game-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.page-game-lobby-jackpot-games__game-card-image {
  max-width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  border: 2px solid #ffcc00;
}

.page-game-lobby-jackpot-games__game-card-title {
  font-size: 1.8em;
  color: #ffcc00;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-game-lobby-jackpot-games__game-card-description {
  font-size: 1em;
  color: #b0b0b0;
  flex-grow: 1;
}

.page-game-lobby-jackpot-games__steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-game-lobby-jackpot-games__step-card {
  background-color: #002a52;
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-game-lobby-jackpot-games__step-icon {
  font-size: 3em;
  color: #ffcc00;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-game-lobby-jackpot-games__step-title {
  font-size: 1.8em;
  color: #ffcc00;
  margin-bottom: 10px;
  font-weight: bold;
}

.page-game-lobby-jackpot-games__step-description {
  font-size: 1em;
  color: #b0b0b0;
}

.page-game-lobby-jackpot-games__note {
  text-align: center;
  font-style: italic;
  margin-top: 40px;
  font-size: 1.1em;
  color: #ffcc00;
}

.page-game-lobby-jackpot-games__list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.page-game-lobby-jackpot-games__list li {
  background-color: #002a52;
  margin-bottom: 15px;
  padding: 15px 20px;
  border-left: 5px solid #ffcc00;
  border-radius: 8px;
  font-size: 1.1em;
  color: #e0e0e0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-game-lobby-jackpot-games__list li strong {
  color: #ffcc00;
}

.page-game-lobby-jackpot-games__advantages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-game-lobby-jackpot-games__advantage-card {
  background-color: #002a52;
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-game-lobby-jackpot-games__advantage-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
  filter: invert(80%) sepia(80%) saturate(2000%) hue-rotate(0deg) brightness(100%) contrast(100%); /* Gold effect */
}

.page-game-lobby-jackpot-games__advantage-title {
  font-size: 1.6em;
  color: #ffcc00;
  margin-bottom: 10px;
  font-weight: bold;
}

.page-game-lobby-jackpot-games__advantage-description {
  font-size: 1em;
  color: #b0b0b0;
}

.page-game-lobby-jackpot-games__faq-list {
  margin-top: 40px;
}

.page-game-lobby-jackpot-games__faq-item {
  background-color: #002a52;
  margin-bottom: 20px;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-game-lobby-jackpot-games__faq-question {
  font-size: 1.4em;
  color: #ffcc00;
  margin-bottom: 15px;
  cursor: pointer;
  position: relative;
  padding-right: 30px;
}

.page-game-lobby-jackpot-games__faq-question::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.2em;
  transition: transform 0.3s ease;
}

.page-game-lobby-jackpot-games__faq-item.active .page-game-lobby-jackpot-games__faq-question::after {
  content: '-';
  transform: translateY(-50%) rotate(180deg);
}

.page-game-lobby-jackpot-games__faq-answer {
  font-size: 1.1em;
  color: #e0e0e0;
  display: none;
  padding-top: 10px;
  border-top: 1px solid rgba(255, 204, 0, 0.2);
  margin-top: 15px;
}

.page-game-lobby-jackpot-games__faq-answer a {
    color: #ffcc00;
    text-decoration: none;
}

.page-game-lobby-jackpot-games__faq-answer a:hover {
    text-decoration: underline;
}

.page-game-lobby-jackpot-games__faq-item.active .page-game-lobby-jackpot-games__faq-answer {
  display: block;
}

.page-game-lobby-jackpot-games__cta-title {
  font-size: 3em;
  color: #ffffff;
  text-align: center;
  margin-bottom: 25px;
  font-weight: bold;
}

.page-game-lobby-jackpot-games__cta-description {
  font-size: 1.2em;
  color: #e0e0e0;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 40px auto;
}

.page-game-lobby-jackpot-games__brand {
  color: #ffcc00;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .page-game-lobby-jackpot-games__hero-title {
    font-size: 3em;
  }
  .page-game-lobby-jackpot-games__section-title {
    font-size: 2.2em;
  }
}

@media (max-width: 768px) {
  .page-game-lobby-jackpot-games__hero-title {
    font-size: 2.5em;
  }
  .page-game-lobby-jackpot-games__hero-description {
    font-size: 1.1em;
  }
  .page-game-lobby-jackpot-games__button {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-game-lobby-jackpot-games__section-title {
    font-size: 2em;
    margin-top: 40px;
    margin-bottom: 20px;
  }
  .page-game-lobby-jackpot-games__section-subtitle {
    font-size: 1em;
    margin-bottom: 30px;
  }
  .page-game-lobby-jackpot-games__introduction-section, .page-game-lobby-jackpot-games__game-types-section, .page-game-lobby-jackpot-games__how-it-works-section, .page-game-lobby-jackpot-games__tips-section, .page-game-lobby-jackpot-games__why-mu9-section, .page-game-lobby-jackpot-games__faq-section, .page-game-lobby-jackpot-games__cta-section {
    padding: 50px 0;
  }
  .page-game-lobby-jackpot-games__game-card, .page-game-lobby-jackpot-games__step-card, .page-game-lobby-jackpot-games__advantage-card {
    padding: 20px;
  }
  .page-game-lobby-jackpot-games__game-card-title, .page-game-lobby-jackpot-games__step-title, .page-game-lobby-jackpot-games__advantage-title {
    font-size: 1.5em;
  }
  .page-game-lobby-jackpot-games__list li {
    font-size: 1em;
    padding: 12px 15px;
  }
  .page-game-lobby-jackpot-games__cta-title {
    font-size: 2.2em;
  }
  .page-game-lobby-jackpot-games__cta-description {
    font-size: 1em;
  }
}

@media (max-width: 480px) {
  .page-game-lobby-jackpot-games__hero-title {
    font-size: 2em;
  }
  .page-game-lobby-jackpot-games__hero-cta-group {
    flex-direction: column;
  }
  .page-game-lobby-jackpot-games__section-title {
    font-size: 1.8em;
  }
  .page-game-lobby-jackpot-games__game-card-image {
      height: 150px;
  }
  .page-game-lobby-jackpot-games__cta-title {
    font-size: 1.8em;
  }
}