.page-game-types-slots-detailed-guide {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #E0E0E0; /* Light grey for general text on dark backgrounds */
  background-color: #0F1A2D; /* A darker shade of primary for main background */
  line-height: 1.6;
}

.page-game-types-slots-detailed-guide .highlight {
  color: #FFD700; /* Victory Gold for highlights */
}

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

.page-game-types-slots-detailed-guide__section {
  padding: 60px 0;
  text-align: center;
}

.page-game-types-slots-detailed-guide__section-title {
  font-size: 2.5em;
  color: #FFD700; /* Gold for main section titles */
  margin-bottom: 20px;
  font-weight: bold;
  text-transform: uppercase;
}

.page-game-types-slots-detailed-guide__section-intro {
  font-size: 1.1em;
  color: #CCCCCC; /* Slightly lighter grey for intros */
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-game-types-slots-detailed-guide__cta-button {
  display: inline-block;
  background-color: #FFD700; /* Gold button */
  color: #1A2B4C; /* Dark blue text on gold */
  padding: 15px 30px;
  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-types-slots-detailed-guide__cta-button:hover {
  background-color: #e5c100; /* Darker gold on hover */
  transform: translateY(-3px);
}

.page-game-types-slots-detailed-guide__cta-button--primary {
  background-color: #FFD700;
  color: #1A2B4C;
}

.page-game-types-slots-detailed-guide__cta-button--secondary {
  background-color: transparent;
  border: 2px solid #FFD700;
  color: #FFD700;
}

.page-game-types-slots-detailed-guide__cta-button--secondary:hover {
  background-color: #FFD700;
  color: #1A2B4C;
}

/* Hero Section */
.page-game-types-slots-detailed-guide__hero-section {
  background: linear-gradient(135deg, #1A2B4C 0%, #0F1A2D 100%); /* Dark blue gradient */
  padding: 100px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  text-align: left;
  position: relative;
  overflow: hidden;
  min-height: 500px;
}

.page-game-types-slots-detailed-guide__hero-content {
  max-width: 600px;
  padding: 20px;
  z-index: 1;
}

.page-game-types-slots-detailed-guide__hero-title {
  font-size: 3.5em;
  color: #FFFFFF; /* White for hero title */
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-game-types-slots-detailed-guide__hero-description {
  font-size: 1.3em;
  color: #CCCCCC; /* Light grey for hero description */
  margin-bottom: 40px;
}

.page-game-types-slots-detailed-guide__hero-image {
  max-width: 500px;
  height: auto;
  margin-left: 40px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  z-index: 1;
}

/* Why Choose Section */
.page-game-types-slots-detailed-guide__why-choose {
  background-color: #1A2B4C; /* Primary dark blue background */
}

.page-game-types-slots-detailed-guide__features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.page-game-types-slots-detailed-guide__feature-item {
  background-color: #0F1A2D; /* Darker background for feature cards */
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(255, 215, 0, 0.1);
}

.page-game-types-slots-detailed-guide__feature-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6);
}

.page-game-types-slots-detailed-guide__feature-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 5px #FFD700);
}

.page-game-types-slots-detailed-guide__feature-title {
  font-size: 1.6em;
  color: #FFD700; /* Gold for feature titles */
  margin-bottom: 15px;
}

.page-game-types-slots-detailed-guide__feature-text {
  color: #E0E0E0;
  font-size: 1em;
}

/* Slot Types Section */
.page-game-types-slots-detailed-guide__slot-types {
  background-color: #0F1A2D;
}

.page-game-types-slots-detailed-guide__type-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.page-game-types-slots-detailed-guide__type-item {
  background-color: #1A2B4C; /* Primary dark blue for type cards */
  padding: 30px;
  border-radius: 10px;
  text-align: left;
  border-left: 5px solid #FFD700;
}

.page-game-types-slots-detailed-guide__type-title {
  font-size: 1.8em;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-game-types-slots-detailed-guide__type-description {
  color: #E0E0E0;
  font-size: 1em;
}

/* How To Play Section */
.page-game-types-slots-detailed-guide__how-to-play {
  background-color: #1A2B4C;
}

.page-game-types-slots-detailed-guide__steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.page-game-types-slots-detailed-guide__step-item {
  background-color: #0F1A2D;
  padding: 30px;
  border-radius: 10px;
  text-align: left;
  position: relative;
  padding-top: 60px;
}

.page-game-types-slots-detailed-guide__step-number {
  position: absolute;
  top: 15px;
  left: 20px;
  font-size: 2.5em;
  font-weight: bold;
  color: #FFD700;
  opacity: 0.7;
}

.page-game-types-slots-detailed-guide__step-title {
  font-size: 1.5em;
  color: #FFFFFF; /* White for step titles */
  margin-bottom: 10px;
}

.page-game-types-slots-detailed-guide__step-text {
  color: #E0E0E0;
  font-size: 0.95em;
}

.page-game-types-slots-detailed-guide__inline-link {
  color: #FFD700;
  text-decoration: none;
  font-weight: bold;
}

.page-game-types-slots-detailed-guide__inline-link:hover {
  text-decoration: underline;
}

/* Strategy & Tips Section */
.page-game-types-slots-detailed-guide__strategy-tips {
  background-color: #0F1A2D;
}

.page-game-types-slots-detailed-guide__tips-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.page-game-types-slots-detailed-guide__tip-item {
  background-color: #1A2B4C;
  padding: 30px;
  border-radius: 10px;
  text-align: left;
  border-right: 5px solid #FFD700;
}

.page-game-types-slots-detailed-guide__tip-title {
  font-size: 1.6em;
  color: #FFD700;
  margin-bottom: 10px;
}

.page-game-types-slots-detailed-guide__tip-text {
  color: #E0E0E0;
  font-size: 0.95em;
}

/* Jackpot Highlight Section */
.page-game-types-slots-detailed-guide__jackpot-highlight {
  background-color: #1A2B4C;
}

.page-game-types-slots-detailed-guide__jackpot-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 40px;
  margin-top: 50px;
}

.page-game-types-slots-detailed-guide__jackpot-image {
  max-width: 500px;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.page-game-types-slots-detailed-guide__jackpot-text {
  flex: 1;
  max-width: 600px;
  text-align: left;
  color: #E0E0E0;
  font-size: 1.1em;
}

.page-game-types-slots-detailed-guide__jackpot-text p {
  margin-bottom: 20px;
}

/* Safety & Fairness Section */
.page-game-types-slots-detailed-guide__safety-fairness {
  background-color: #0F1A2D;
}

.page-game-types-slots-detailed-guide__safety-list {
  list-style: none;
  padding: 0;
  margin-top: 50px;
  text-align: left;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-game-types-slots-detailed-guide__safety-list li {
  background-color: #1A2B4C;
  margin-bottom: 15px;
  padding: 20px;
  border-radius: 8px;
  display: flex;
  align-items: flex-start;
  gap: 15px;
  font-size: 1.05em;
  color: #E0E0E0;
  border-left: 4px solid #FFD700;
}

.page-game-types-slots-detailed-guide__safety-list li::before {
  content: '✔';
  color: #FFD700;
  font-weight: bold;
  font-size: 1.2em;
  margin-top: -3px;
}

/* Mobile App Section */
.page-game-types-slots-detailed-guide__mobile-app {
  background-color: #1A2B4C;
}

.page-game-types-slots-detailed-guide__app-content {
  display: flex;
  flex-wrap: wrap-reverse; /* Image on right for desktop, on top for mobile */
  align-items: center;
  justify-content: center;
  gap: 40px;
  margin-top: 50px;
}

.page-game-types-slots-detailed-guide__app-image {
  max-width: 350px;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.page-game-types-slots-detailed-guide__app-text {
  flex: 1;
  max-width: 600px;
  text-align: left;
  color: #E0E0E0;
  font-size: 1.1em;
}

.page-game-types-slots-detailed-guide__app-text p {
  margin-bottom: 20px;
}

/* FAQ Section */
.page-game-types-slots-detailed-guide__faq {
  background-color: #0F1A2D;
}

.page-game-types-slots-detailed-guide__faq-item {
  background-color: #1A2B4C;
  margin-bottom: 20px;
  padding: 25px;
  border-radius: 8px;
  text-align: left;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  border: 1px solid rgba(255, 215, 0, 0.1);
}

.page-game-types-slots-detailed-guide__faq-question {
  font-size: 1.4em;
  color: #FFD700;
  margin-bottom: 10px;
  cursor: pointer;
  position: relative;
  padding-right: 30px;
}

.page-game-types-slots-detailed-guide__faq-question::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 0;
  font-size: 1.2em;
  transition: transform 0.3s ease;
}

.page-game-types-slots-detailed-guide__faq-question.active::after {
  content: '-';
  transform: rotate(180deg);
}

.page-game-types-slots-detailed-guide__faq-answer {
  color: #E0E0E0;
  font-size: 1em;
  margin-top: 15px;
  display: none;
}

.page-game-types-slots-detailed-guide__faq-answer.active {
  display: block;
}

/* Call to Action Section */
.page-game-types-slots-detailed-guide__call-to-action {
  background: linear-gradient(45deg, #1A2B4C, #0F1A2D);
  padding: 80px 0;
}

.page-game-types-slots-detailed-guide__call-to-action-content {
  max-width: 800px;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-game-types-slots-detailed-guide__hero-section {
    flex-direction: column;
    text-align: center;
    padding: 80px 20px;
  }

  .page-game-types-slots-detailed-guide__hero-content {
    margin-bottom: 40px;
    max-width: 100%;
  }

  .page-game-types-slots-detailed-guide__hero-title {
    font-size: 2.8em;
  }

  .page-game-types-slots-detailed-guide__hero-description {
    font-size: 1.1em;
  }

  .page-game-types-slots-detailed-guide__hero-image {
    margin-left: 0;
    max-width: 80%;
  }

  .page-game-types-slots-detailed-guide__jackpot-content,
  .page-game-types-slots-detailed-guide__app-content {
    flex-direction: column;
  }

  .page-game-types-slots-detailed-guide__jackpot-text,
  .page-game-types-slots-detailed-guide__app-text {
    text-align: center;
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .page-game-types-slots-detailed-guide__section-title {
    font-size: 2em;
  }

  .page-game-types-slots-detailed-guide__section-intro {
    font-size: 1em;
  }

  .page-game-types-slots-detailed-guide__features-grid,
  .page-game-types-slots-detailed-guide__type-grid,
  .page-game-types-slots-detailed-guide__steps-grid,
  .page-game-types-slots-detailed-guide__tips-list {
    grid-template-columns: 1fr;
  }

  .page-game-types-slots-detailed-guide__feature-item,
  .page-game-types-slots-detailed-guide__type-item,
  .page-game-types-slots-detailed-guide__step-item,
  .page-game-types-slots-detailed-guide__tip-item {
    padding: 25px;
  }

  .page-game-types-slots-detailed-guide__step-number {
    font-size: 2em;
  }

  .page-game-types-slots-detailed-guide__safety-list li {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 15px;
    border-left: none;
    border-top: 4px solid #FFD700;
  }

  .page-game-types-slots-detailed-guide__safety-list li::before {
    margin-bottom: 10px;
  }

  .page-game-types-slots-detailed-guide__faq-question {
    font-size: 1.2em;
  }
}

@media (max-width: 480px) {
  .page-game-types-slots-detailed-guide__hero-title {
    font-size: 2.2em;
  }

  .page-game-types-slots-detailed-guide__hero-image {
    max-width: 100%;
  }

  .page-game-types-slots-detailed-guide__section {
    padding: 40px 0;
  }

  .page-game-types-slots-detailed-guide__cta-button {
    padding: 12px 25px;
    font-size: 1em;
  }
}