.page-game-guides-roulette {
  font-family: 'Arial', sans-serif;
  color: var(--text-main);
  line-height: 1.6;
}

.page-game-guides-roulette__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding-top: 10px; /* Adhering to ~10px top padding for first section */
  padding-bottom: 40px;
  position: relative;
  overflow: hidden;
}

.page-game-guides-roulette__hero-image-wrapper {
  width: 100%;
  max-height: 600px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-game-guides-roulette__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  min-height: 200px; /* Minimum size requirement */
}

.page-game-guides-roulette__hero-content {
  max-width: 900px;
  padding: 20px;
  background: rgba(183, 28, 28, 0.9); /* Background color #B71C1C with slight transparency */
  border-radius: 10px;
  margin-top: -80px; /* Overlap slightly for visual effect */
  position: relative;
  z-index: 1;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

.page-game-guides-roulette__main-title {
  font-size: clamp(2.2em, 4vw, 3.2em);
  color: var(--text-main); /* #FFF5E1 */
  margin-bottom: 15px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.05em;
}

.page-game-guides-roulette__description {
  font-size: 1.1em;
  color: var(--text-main);
  margin-bottom: 30px;
}

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

.page-game-guides-roulette__cta-buttons--center {
  margin-top: 40px;
}

.page-game-guides-roulette__btn-primary,
.page-game-guides-roulette__btn-secondary {
  padding: 14px 28px;
  border-radius: 8px;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
  white-space: normal;
  word-wrap: break-word;
  box-sizing: border-box;
}

.page-game-guides-roulette__btn-primary {
  background: linear-gradient(180deg, #FFD86A 0%, #E6B800 100%); /* Custom button color */
  color: #7A0E0E; /* Deep Red for contrast */
  border: 2px solid #F4D34D; /* Gold border */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.page-game-guides-roulette__btn-primary:hover {
  background: linear-gradient(180deg, #E6B800 0%, #FFD86A 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

.page-game-guides-roulette__btn-secondary {
  background: transparent;
  color: var(--text-main); /* #FFF5E1 */
  border: 2px solid #F4D34D; /* Gold border */
}

.page-game-guides-roulette__btn-secondary:hover {
  background: rgba(244, 211, 77, 0.2);
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.page-game-guides-roulette__section {
  padding: 60px 0;
  background: var(--background-color, #B71C1C); /* Fallback to Deep Red if not set */
}

.page-game-guides-roulette__dark-section {
  background: #C91F17; /* Main color */
  color: #ffffff;
}

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

.page-game-guides-roulette__section-title {
  font-size: clamp(1.8em, 3.5vw, 2.8em);
  color: var(--text-main);
  text-align: center;
  margin-bottom: 40px;
  font-weight: 700;
}

.page-game-guides-roulette__dark-section .page-game-guides-roulette__section-title,
.page-game-guides-roulette__dark-section .page-game-guides-roulette__text-block,
.page-game-guides-roulette__dark-section .page-game-guides-roulette__link--inline {
  color: #FFF5E1; /* Text Main for dark sections */
}

.page-game-guides-roulette__sub-title {
  font-size: clamp(1.4em, 2.5vw, 2em);
  color: var(--text-main);
  margin-top: 30px;
  margin-bottom: 20px;
  font-weight: 600;
}

.page-game-guides-roulette__text-block {
  font-size: 1.05em;
  color: var(--text-main);
  margin-bottom: 15px;
}

.page-game-guides-roulette__link--inline {
  color: #F4D34D; /* Gold color for inline links */
  text-decoration: underline;
}

.page-game-guides-roulette__link--inline:hover {
  color: #FFD86A; /* Lighter gold on hover */
}

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

.page-game-guides-roulette__card {
  background: #D32F2F; /* Card BG color */
  border: 1px solid #F2B544; /* Border color */
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  color: var(--text-main);
}

.page-game-guides-roulette__light-bg {
  background: #E53935; /* Auxiliary color for light cards */
  color: #FFF5E1;
  border: 1px solid #F4D34D;
}

.page-game-guides-roulette__dark-bg {
  background: #C91F17; /* Main color for dark cards */
  color: #FFF5E1;
  border: 1px solid #F4D34D;
}

.page-game-guides-roulette__card-image {
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
  min-height: 200px; /* Minimum size requirement */
  object-fit: cover;
}

.page-game-guides-roulette__card-title {
  font-size: 1.4em;
  color: var(--text-main);
  margin-bottom: 15px;
  font-weight: 600;
}

.page-game-guides-roulette__list {
  list-style: disc;
  margin-left: 20px;
  color: var(--text-main);
}

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

.page-game-guides-roulette__benefit-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 20px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.1);
  color: #FFF5E1;
  border: 1px solid rgba(244, 211, 77, 0.3);
}

.page-game-guides-roulette__benefit-icon {
  width: 100px;
  height: 100px;
  object-fit: contain;
  margin-bottom: 15px;
  min-width: 200px; /* Minimum size requirement, overriding the 100px in HTML */
  min-height: 200px; /* Minimum size requirement, overriding the 100px in HTML */
}

.page-game-guides-roulette__benefit-title {
  font-size: 1.3em;
  color: #FFF5E1;
  margin-bottom: 10px;
  font-weight: 600;
}

.page-game-guides-roulette__benefit-text {
  font-size: 0.95em;
  color: #FFF5E1;
}

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

.page-game-guides-roulette__faq-item {
  background: #D32F2F; /* Card BG color */
  border: 1px solid #F2B544; /* Border color */
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  color: var(--text-main);
}

.page-game-guides-roulette__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  cursor: pointer;
  font-weight: bold;
  font-size: 1.1em;
  color: var(--text-main);
  background: #C91F17; /* Main color */
}

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

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

.page-game-guides-roulette__faq-qtext {
  flex-grow: 1;
  color: var(--text-main);
}

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

.page-game-guides-roulette__faq-answer {
  padding: 0 25px 20px;
  font-size: 1em;
  color: var(--text-main);
  background: #D32F2F; /* Card BG color */
}

/* Mobile responsiveness */
@media (max-width: 768px) {
  .page-game-guides-roulette {
    font-size: 16px;
    line-height: 1.6;
  }

  .page-game-guides-roulette__hero-section {
    padding-top: 10px !important;
    padding-bottom: 20px;
  }

  .page-game-guides-roulette__hero-content {
    margin-top: -40px;
    padding: 15px;
    max-width: 100%;
    width: 100%;
    box-sizing: border-box;
  }

  .page-game-guides-roulette__main-title {
    font-size: 1.8em;
  }

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

  .page-game-guides-roulette__cta-buttons {
    flex-direction: column;
    gap: 10px;
    padding: 0 15px;
    max-width: 100%;
    width: 100%;
    box-sizing: border-box;
  }

  .page-game-guides-roulette__btn-primary,
  .page-game-guides-roulette__btn-secondary,
  .page-game-guides-roulette a[class*="button"],
  .page-game-guides-roulette a[class*="btn"] {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding: 12px 15px;
  }

  .page-game-guides-roulette__container {
    padding: 0 15px;
  }

  .page-game-guides-roulette__section-title {
    font-size: 2em;
    margin-bottom: 30px;
  }

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

  .page-game-guides-roulette__grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-game-guides-roulette__card {
    padding: 20px;
    max-width: 100%;
    width: 100%;
    box-sizing: border-box;
  }

  .page-game-guides-roulette__card-image {
    min-height: 200px !important;
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }

  .page-game-guides-roulette__card-title {
    font-size: 1.2em;
  }

  .page-game-guides-roulette__benefit-item {
    max-width: 100%;
    width: 100%;
    box-sizing: border-box;
  }

  .page-game-guides-roulette__benefit-icon {
    min-width: 150px !important; /* Adjust icon size for mobile, maintaining min 200px */
    min-height: 150px !important;
    width: 150px !important;
    height: 150px !important;
  }

  /* General image and container rules for mobile */
  .page-game-guides-roulette img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-game-guides-roulette__section,
  .page-game-guides-roulette__card,
  .page-game-guides-roulette__container,
  .page-game-guides-roulette__hero-image-wrapper,
  .page-game-guides-roulette__cta-buttons,
  .page-game-guides-roulette__faq-list {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow-x: hidden !important; /* Ensure no horizontal scroll */
  }

  .page-game-guides-roulette__faq-question {
    padding: 15px 20px;
    font-size: 1em;
  }

  .page-game-guides-roulette__faq-answer {
    padding: 0 20px 15px;
  }

  .page-game-guides-roulette__faq-toggle {
    font-size: 1.2em;
  }
}