.page-game-guides-roulette {
  color: #333333; /* Dark text for light body background */
  font-family: Arial, sans-serif;
  line-height: 1.6;
  padding-top: var(--header-offset, 120px); /* Ensure content is not hidden by fixed header */
}

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

.page-game-guides-roulette__hero-section {
  background-color: #000000; /* Dark background for hero */
  padding: 80px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-game-guides-roulette__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.4; /* Slightly dim image for text readability */
  z-index: 1;
}

.page-game-guides-roulette__hero-content {
  position: relative;
  z-index: 2;
  color: #FFFFFF; /* Light text on dark/dimmed background */
  max-width: 900px;
  margin: 0 auto;
}

.page-game-guides-roulette__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  font-weight: bold;
  line-height: 1.2;
}

.page-game-guides-roulette__hero-description {
  font-size: 1.3em;
  margin-bottom: 40px;
}

.page-game-guides-roulette__hero-button {
  display: inline-block;
  background-color: #FCBC45; /* Login button color for CTA */
  color: #000000; /* Dark text on bright button */
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease;
}

.page-game-guides-roulette__hero-button:hover {
  background-color: #e0a53a;
}

.page-game-guides-roulette__introduction-section,
.page-game-guides-roulette__rules-section,
.page-game-guides-roulette__betting-options-section,
.page-game-guides-roulette__strategies-section,
.page-game-guides-roulette__tips-section,
.page-game-guides-roulette__live-roulette-section,
.page-game-guides-roulette__faq-section,
.page-game-guides-roulette__cta-section {
  padding: 60px 0;
  background-color: #FFFFFF;
}

.page-game-guides-roulette__section-title {
  font-size: 2.5em;
  color: #000000;
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
}

.page-game-guides-roulette__sub-section-title {
  font-size: 1.8em;
  color: #000000;
  margin-top: 30px;
  margin-bottom: 20px;
  font-weight: bold;
}

.page-game-guides-roulette__paragraph {
  font-size: 1.1em;
  margin-bottom: 20px;
  line-height: 1.8;
}

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

.page-game-guides-roulette__list-item {
  font-size: 1.1em;
  margin-bottom: 10px;
}

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

.page-game-guides-roulette__content-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  min-width: 200px;
  min-height: 200px;
}

.page-game-guides-roulette__list--tips {
  list-style-type: none;
  padding-left: 0;
}

.page-game-guides-roulette__list--tips .page-game-guides-roulette__list-item {
  position: relative;
  padding-left: 30px;
  margin-bottom: 15px;
}

.page-game-guides-roulette__list--tips .page-game-guides-roulette__list-item::before {
  content: '✔';
  color: #FCBC45;
  position: absolute;
  left: 0;
  font-weight: bold;
}

.page-game-guides-roulette__live-button {
  display: inline-block;
  background-color: #FCBC45;
  color: #000000;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  margin-top: 30px;
  transition: background-color 0.3s ease;
}

.page-game-guides-roulette__live-button:hover {
  background-color: #e0a53a;
}

.page-game-guides-roulette__faq-item {
  background-color: #f9f9f9;
  border: 1px solid #eee;
  border-radius: 8px;
  margin-bottom: 15px;
  padding: 20px;
}

.page-game-guides-roulette__faq-question {
  font-size: 1.2em;
  color: #000000;
  margin-top: 0;
  margin-bottom: 10px;
  cursor: pointer;
  font-weight: bold;
}

.page-game-guides-roulette__faq-answer {
  font-size: 1em;
  color: #555555;
  display: none; /* Hidden by default, toggled by JS */
}

.page-game-guides-roulette__faq-item.active .page-game-guides-roulette__faq-answer {
  display: block;
}

.page-game-guides-roulette__cta-section {
  background-color: #000000; /* Dark background for CTA */
  color: #FFFFFF;
  text-align: center;
  padding: 80px 20px;
}

.page-game-guides-roulette__cta-content {
  max-width: 900px;
  margin: 0 auto;
}

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

.page-game-guides-roulette__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;
  min-width: 150px; /* Ensure buttons have a minimum width */
}

.page-game-guides-roulette__button--register {
  background-color: #FFFFFF;
  color: #000000;
  border: 2px solid #FFFFFF;
}

.page-game-guides-roulette__button--register:hover {
  background-color: transparent;
  color: #FFFFFF;
  border-color: #FCBC45;
}

.page-game-guides-roulette__button--login {
  background-color: #FCBC45;
  color: #000000;
  border: 2px solid #FCBC45;
}

.page-game-guides-roulette__button--login:hover {
  background-color: #e0a53a;
  border-color: #e0a53a;
}

.page-game-guides-roulette__button--download {
  background-color: transparent;
  color: #FFFFFF;
  border: 2px solid #FFFFFF;
}

.page-game-guides-roulette__button--download:hover {
  background-color: #FFFFFF;
  color: #000000;
}

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

  .page-game-guides-roulette__hero-description {
    font-size: 1em;
  }

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

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

  .page-game-guides-roulette__paragraph,
  .page-game-guides-roulette__list-item {
    font-size: 0.95em;
  }

  .page-game-guides-roulette__hero-section,
  .page-game-guides-roulette__introduction-section,
  .page-game-guides-roulette__rules-section,
  .page-game-guides-roulette__betting-options-section,
  .page-game-guides-roulette__strategies-section,
  .page-game-guides-roulette__tips-section,
  .page-game-guides-roulette__live-roulette-section,
  .page-game-guides-roulette__faq-section,
  .page-game-guides-roulette__cta-section {
    padding: 40px 0;
  }

  .page-game-guides-roulette__hero-button,
  .page-game-guides-roulette__live-button,
  .page-game-guides-roulette__button {
    padding: 12px 25px;
    font-size: 1em;
    min-width: unset;
    width: 100%; /* Full width for buttons on mobile */
  }

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

  /* Ensure all images in content area are responsive and not smaller than 200px */
  .page-game-guides-roulette__container img,
  .page-game-guides-roulette__content-image {
    max-width: 100%;
    height: auto;
    min-width: 200px; /* Enforce minimum size for content images */
    min-height: 200px;
  }

  /* Prevent content area from causing horizontal scroll */
  .page-game-guides-roulette {
    overflow-x: hidden;
  }
}