.page-resources-mu9-slots-game-tips {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #e0e0e0; /* Light gray for general text on dark background */
  background-color: #000a1a; /* Very dark blue for overall background */
}

.page-resources-mu9-slots-game-tips__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-resources-mu9-slots-game-tips__hero-section {
  background: linear-gradient(135deg, #001f3f, #000a1a); /* Dark blue to very dark blue */
  padding: 100px 0;
  text-align: center;
  color: #ffffff;
}

.page-resources-mu9-slots-game-tips__main-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  color: #ffcc00; /* Gold for main title */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-resources-mu9-slots-game-tips__subtitle {
  font-size: 1.3em;
  max-width: 800px;
  margin: 0 auto 40px auto;
  color: #cccccc;
}

.page-resources-mu9-slots-game-tips__cta-group {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.page-resources-mu9-slots-game-tips__btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.page-resources-mu9-slots-game-tips__btn--primary {
  background-color: #ffcc00; /* Gold */
  color: #001f3f; /* Dark blue text on gold */
  border-color: #ffcc00;
}

.page-resources-mu9-slots-game-tips__btn--primary:hover {
  background-color: #e6b800; /* Darker gold */
  border-color: #e6b800;
  transform: translateY(-2px);
}

.page-resources-mu9-slots-game-tips__btn--secondary {
  background-color: transparent;
  color: #ffcc00; /* Gold text */
  border-color: #ffcc00;
}

.page-resources-mu9-slots-game-tips__btn--secondary:hover {
  background-color: #ffcc00; /* Gold background */
  color: #001f3f; /* Dark blue text */
  transform: translateY(-2px);
}

.page-resources-mu9-slots-game-tips__content-section {
  padding: 60px 0;
  background-color: #000a1a;
}

.page-resources-mu9-slots-game-tips__content-area {
  background-color: #001f3f; /* Main dark blue background for content */
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
}

.page-resources-mu9-slots-game-tips__section-title {
  font-size: 2.5em;
  color: #ffcc00; /* Gold */
  margin-bottom: 30px;
  border-bottom: 3px solid #ffcc00;
  padding-bottom: 15px;
  text-align: center;
}

.page-resources-mu9-slots-game-tips__sub-section-title {
  font-size: 1.8em;
  color: #f0f0f0; /* Light white */
  margin-top: 40px;
  margin-bottom: 20px;
  padding-left: 15px;
  border-left: 5px solid #ffcc00;
}

.page-resources-mu9-slots-game-tips p {
  margin-bottom: 15px;
  font-size: 1.1em;
  color: #e0e0e0;
}

.page-resources-mu9-slots-game-tips ul {
  list-style-type: disc;
  margin-left: 25px;
  margin-bottom: 15px;
  color: #e0e0e0;
}

.page-resources-mu9-slots-game-tips ul li {
  margin-bottom: 10px;
  font-size: 1.05em;
}

.page-resources-mu9-slots-game-tips strong {
  color: #ffcc00;
}

.page-resources-mu9-slots-game-tips .highlight {
  color: #ffcc00;
  font-weight: bold;
}

.page-resources-mu9-slots-game-tips__image-wrapper {
  text-align: center;
  margin: 30px 0;
}

.page-resources-mu9-slots-game-tips__image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.page-resources-mu9-slots-game-tips__image-caption {
  font-style: italic;
  font-size: 0.95em;
  color: #a0a0a0;
  margin-top: 10px;
}

.page-resources-mu9-slots-game-tips__cta-center {
  text-align: center;
  margin-top: 50px;
  margin-bottom: 30px;
}

.page-resources-mu9-slots-game-tips__faq-section {
  margin-top: 40px;
}

.page-resources-mu9-slots-game-tips__faq-item {
  background-color: #002a5c; /* Slightly lighter dark blue for FAQ items */
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-resources-mu9-slots-game-tips__faq-question {
  font-size: 1.3em;
  color: #ffcc00;
  padding: 20px;
  cursor: pointer;
  position: relative;
  margin: 0;
  transition: background-color 0.3s ease;
}

.page-resources-mu9-slots-game-tips__faq-question::after {
  content: '+';
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.2em;
  transition: transform 0.3s ease;
}

.page-resources-mu9-slots-game-tips__faq-question.active::after {
  content: '-';
  transform: translateY(-50%) rotate(0deg);
}

.page-resources-mu9-slots-game-tips__faq-answer {
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease-out, padding 0.5s ease-out;
  color: #e0e0e0;
}

.page-resources-mu9-slots-game-tips__faq-answer p {
  padding-bottom: 20px;
  margin: 0;
}

.page-resources-mu9-slots-game-tips__faq-answer.open {
  max-height: 200px; /* Adjust as needed for content */
  padding-top: 10px;
}

.page-resources-mu9-slots-game-tips__inline-link {
  color: #ffcc00;
  text-decoration: underline;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-resources-mu9-slots-game-tips__inline-link:hover {
  color: #e6b800;
}

.page-resources-mu9-slots-game-tips__cta-group--final {
  margin-top: 60px;
  margin-bottom: 40px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .page-resources-mu9-slots-game-tips__main-title {
    font-size: 2.5em;
  }

  .page-resources-mu9-slots-game-tips__subtitle {
    font-size: 1.1em;
  }

  .page-resources-mu9-slots-game-tips__section-title {
    font-size: 2em;
  }

  .page-resources-mu9-slots-game-tips__sub-section-title {
    font-size: 1.5em;
  }

  .page-resources-mu9-slots-game-tips__cta-group {
    flex-direction: column;
    gap: 15px;
  }

  .page-resources-mu9-slots-game-tips__btn {
    width: 100%;
    max-width: 300px;
  }

  .page-resources-mu9-slots-game-tips__content-area {
    padding: 20px;
  }
}

@media (max-width: 480px) {
  .page-resources-mu9-slots-game-tips__main-title {
    font-size: 2em;
  }

  .page-resources-mu9-slots-game-tips__subtitle {
    font-size: 1em;
  }

  .page-resources-mu9-slots-game-tips__section-title {
    font-size: 1.8em;
  }

  .page-resources-mu9-slots-game-tips__sub-section-title {
    font-size: 1.3em;
  }

  .page-resources-mu9-slots-game-tips__btn {
    padding: 12px 20px;
    font-size: 1em;
  }

  .page-resources-mu9-slots-game-tips__hero-section {
    padding: 60px 0;
  }
}