.page-game-guides-roulette {
  color: #ffffff; /* Default text color for dark body background */
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
}

.page-game-guides-roulette__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.page-game-guides-roulette__hero-section {
  position: relative;
  padding: 120px 0 60px; /* Adjusted padding to accommodate fixed header */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  min-height: 600px;
  padding-top: var(--header-offset, 120px);
}

.page-game-guides-roulette__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
  filter: brightness(0.5); /* Darken image for text readability */
}

.page-game-guides-roulette__hero-section .page-game-guides-roulette__container {
  z-index: 1;
  position: relative;
}

.page-game-guides-roulette__main-title {
  font-size: 3.2em;
  color: #ffffff;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
  font-weight: bold;
}

.page-game-guides-roulette__intro-text {
  font-size: 1.2em;
  color: #f0f0f0;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-game-guides-roulette__cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.page-game-guides-roulette__btn-primary,
.page-game-guides-roulette__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
  box-sizing: border-box;
  text-align: center;
}

.page-game-guides-roulette__btn-primary {
  background-color: #26A9E0;
  color: #ffffff;
  border: 2px solid #26A9E0;
}

.page-game-guides-roulette__btn-primary:hover {
  background-color: #1a7fb3;
  border-color: #1a7fb3;
}

.page-game-guides-roulette__btn-secondary {
  background-color: transparent;
  color: #ffffff;
  border: 2px solid #ffffff;
}

.page-game-guides-roulette__btn-secondary:hover {
  background-color: #ffffff;
  color: #26A9E0;
}

.page-game-guides-roulette__content-area {
  padding: 60px 0;
}

.page-game-guides-roulette__light-bg {
  background-color: #ffffff;
  color: #333333;
}

.page-game-guides-roulette__dark-bg {
  background-color: #0d0d0d; /* Slightly lighter than black for contrast, but still dark */
  color: #ffffff;
}

.page-game-guides-roulette__section-title {
  font-size: 2.5em;
  margin-bottom: 30px;
  text-align: center;
  color: #26A9E0; /* Brand color for titles */
  font-weight: bold;
}

.page-game-guides-roulette__sub-title {
  font-size: 1.8em;
  margin-top: 40px;
  margin-bottom: 20px;
  color: #26A9E0; /* Brand color for subtitles */
  font-weight: bold;
}

.page-game-guides-roulette__paragraph {
  font-size: 1.1em;
  margin-bottom: 15px;
}

.page-game-guides-roulette__image {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 30px auto;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-game-guides-roulette__list {
  list-style-type: disc;
  margin-left: 25px;
  margin-bottom: 20px;
}

.page-game-guides-roulette__list-item {
  margin-bottom: 10px;
}

.page-game-guides-roulette__list-item strong {
  color: #26A9E0;
}

.page-game-guides-roulette__faq-list {
  margin-top: 40px;
}

.page-game-guides-roulette__faq-item {
  background-color: rgba(255, 255, 255, 0.1); /* Light background for FAQ items on dark sections */
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.page-game-guides-roulette__faq-item.active .page-game-guides-roulette__faq-question {
  background-color: #26A9E0;
}

.page-game-guides-roulette__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  font-size: 1.2em;
  font-weight: bold;
  cursor: pointer;
  background-color: rgba(255, 255, 255, 0.05);
  transition: background-color 0.3s ease;
}

.page-game-guides-roulette__faq-question:hover {
  background-color: rgba(255, 255, 255, 0.15);
}

.page-game-guides-roulette__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  margin-left: 15px;
}

.page-game-guides-roulette__faq-answer {
  padding: 0 20px 20px;
  font-size: 1.1em;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease-out, padding 0.5s ease-out;
}

.page-game-guides-roulette__faq-item.active .page-game-guides-roulette__faq-answer {
  max-height: 500px; /* Arbitrary large value to allow expansion */
  padding-top: 10px;
}

/* For <details> tag, native behavior */
.page-game-guides-roulette__faq-item[open] .page-game-guides-roulette__faq-answer {
  max-height: none; /* Let content define height */
  padding-top: 10px;
}

.page-game-guides-roulette__faq-item details > summary {
  list-style: none;
}

.page-game-guides-roulette__faq-item details > summary::-webkit-details-marker {
  display: none;
}

.page-game-guides-roulette__cta-section {
  text-align: center;
  padding: 80px 0;
  background-color: #000000; /* Use pure black for CTA section */
  color: #ffffff;
}

.page-game-guides-roulette__cta-title {
  font-size: 2.8em;
  margin-bottom: 20px;
  color: #26A9E0; /* Brand color */
  font-weight: bold;
}

.page-game-guides-roulette__cta-description {
  font-size: 1.2em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-game-guides-roulette__main-title {
    font-size: 2.8em;
  }

  .page-game-guides-roulette__section-title {
    font-size: 2em;
  }

  .page-game-guides-roulette__sub-title {
    font-size: 1.6em;
  }

  .page-game-guides-roulette__cta-title {
    font-size: 2.4em;
  }
}

@media (max-width: 768px) {
  .page-game-guides-roulette__hero-section {
    padding-top: var(--header-offset, 120px) !important;
    min-height: 450px;
  }

  .page-game-guides-roulette__main-title {
    font-size: 2em !important;
    line-height: 1.2;
  }

  .page-game-guides-roulette__intro-text {
    font-size: 1em !important;
    margin-bottom: 30px;
  }

  .page-game-guides-roulette__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .page-game-guides-roulette__btn-primary,
  .page-game-guides-roulette__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    padding: 12px 20px !important;
    font-size: 1em !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  .page-game-guides-roulette__content-area {
    padding: 40px 0;
  }

  .page-game-guides-roulette__section-title {
    font-size: 1.8em !important;
    margin-bottom: 20px;
  }

  .page-game-guides-roulette__sub-title {
    font-size: 1.4em !important;
    margin-top: 30px;
    margin-bottom: 15px;
  }

  .page-game-guides-roulette__paragraph,
  .page-game-guides-roulette__list-item,
  .page-game-guides-roulette__faq-answer p {
    font-size: 0.95em !important;
  }

  .page-game-guides-roulette__faq-question {
    font-size: 1.1em !important;
    padding: 15px;
  }

  .page-game-guides-roulette__cta-title {
    font-size: 2em !important;
  }

  .page-game-guides-roulette__cta-description {
    font-size: 1em !important;
  }

  /* Image, video, and container responsiveness */
  .page-game-guides-roulette img {
    max-width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  
  .page-game-guides-roulette__container,
  .page-game-guides-roulette__hero-section,
  .page-game-guides-roulette__content-area,
  .page-game-guides-roulette__cta-section {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px !important;
    padding-right: 15px !important;
    overflow-x: hidden !important;
  }
}

@media (max-width: 480px) {
  .page-game-guides-roulette__main-title {
    font-size: 1.8em !important;
  }

  .page-game-guides-roulette__section-title {
    font-size: 1.6em !important;
  }

  .page-game-guides-roulette__cta-title {
    font-size: 1.8em !important;
  }
}