.page-live-roulette {
  font-family: Arial, sans-serif;
  color: #ffffff; /* Light text for dark body background */
  background-color: #0D0D0D; /* Body background color from shared.css */
  padding-top: var(--header-offset, 120px); /* Ensure content clears fixed header */
}

.page-live-roulette__hero-section {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 700px;
  text-align: center;
  padding: 40px 20px;
  background-color: #1A1A1A;
}

.page-live-roulette__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.page-live-roulette__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: 0.3; /* Subtle overlay for text readability */
}

.page-live-roulette__hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  padding: 20px;
}

.page-live-roulette__hero-title {
  font-size: 3.5em;
  color: #FFD700;
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.page-live-roulette__hero-description {
  font-size: 1.3em;
  color: #f0f0f0;
  margin-bottom: 30px;
  line-height: 1.6;
}

.page-live-roulette__cta-button {
  display: inline-block;
  background-color: #FFD700;
  color: #1A1A1A;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 1.2em;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.page-live-roulette__cta-button:hover {
  background-color: #e6c200;
  transform: translateY(-3px);
}

.page-live-roulette__content-container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 40px 20px;
}

.page-live-roulette__section-title {
  font-size: 2.5em;
  color: #FFD700;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
}

.page-live-roulette__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #FFD700;
  border-radius: 2px;
}

.page-live-roulette__sub-title {
  font-size: 1.8em;
  color: #FFD700;
  margin-top: 30px;
  margin-bottom: 15px;
}

.page-live-roulette__paragraph {
  font-size: 1.1em;
  line-height: 1.8;
  margin-bottom: 20px;
  color: #e0e0e0;
}

.page-live-roulette__paragraph a {
  color: #FFD700;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-live-roulette__paragraph a:hover {
  color: #e6c200;
  text-decoration: underline;
}

.page-live-roulette__image-block {
  text-align: center;
  margin: 40px 0;
}

.page-live-roulette__illustration-image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
  min-width: 200px;
  min-height: 200px;
}

.page-live-roulette__image-caption {
  font-size: 0.9em;
  color: #b0b0b0;
  margin-top: 10px;
}

.page-live-roulette__bet-list,
.page-live-roulette__management-list,
.page-live-roulette__tips-list,
.page-live-roulette__advantages-list,
.page-live-roulette__steps-list {
  list-style-type: none;
  padding-left: 0;
  margin-bottom: 30px;
}

.page-live-roulette__list-item {
  background-color: rgba(255, 255, 255, 0.08);
  padding: 15px 20px;
  margin-bottom: 10px;
  border-radius: 8px;
  display: flex;
  align-items: flex-start;
  font-size: 1.05em;
  line-height: 1.6;
  color: #f0f0f0;
  border-left: 4px solid #FFD700;
}

.page-live-roulette__list-item strong {
  color: #FFD700;
  margin-right: 8px;
  flex-shrink: 0;
}

.page-live-roulette__disclaimer {
  background-color: rgba(255, 215, 0, 0.1);
  border-left: 5px solid #FFD700;
  padding: 20px;
  border-radius: 8px;
  font-style: italic;
  color: #f0f0f0;
}

.page-live-roulette__faq-section {
  background-color: #1A1A1A;
  padding: 60px 20px;
}

.page-live-roulette__faq-item {
  margin-bottom: 25px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 20px;
}

.page-live-roulette__faq-question {
  font-size: 1.5em;
  color: #FFD700;
  margin-bottom: 10px;
}

.page-live-roulette__faq-answer {
  font-size: 1.05em;
  line-height: 1.7;
  color: #e0e0e0;
}

.page-live-roulette__cta-button--bottom {
  margin-top: 40px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-live-roulette__hero-title {
    font-size: 3em;
  }
  .page-live-roulette__section-title {
    font-size: 2em;
  }
  .page-live-roulette__sub-title {
    font-size: 1.6em;
  }
}

@media (max-width: 768px) {
  .page-live-roulette__hero-section {
    min-height: 500px;
    padding: 30px 15px;
  }
  .page-live-roulette__hero-title {
    font-size: 2.2em;
  }
  .page-live-roulette__hero-description {
    font-size: 1em;
  }
  .page-live-roulette__cta-button {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-live-roulette__content-container {
    padding: 30px 15px;
  }
  .page-live-roulette__section-title {
    font-size: 1.8em;
  }
  .page-live-roulette__sub-title {
    font-size: 1.4em;
  }
  .page-live-roulette__paragraph,
  .page-live-roulette__list-item,
  .page-live-roulette__faq-answer {
    font-size: 0.95em;
  }
  .page-live-roulette__faq-question {
    font-size: 1.3em;
  }
  /* Mobile content area images must not overflow */
  .page-live-roulette img {
    max-width: 100%;
    height: auto;
    min-width: 200px; /* Ensure min size */
    min-height: 200px; /* Ensure min size */
  }
  .page-live-roulette__illustration-image {
    width: 100%; /* Ensure images scale down */
    height: auto;
  }
  .page-live-roulette__hero-image {
    width: 100%;
    height: 100%;
  }
  .page-live-roulette__content-container {
    max-width: 100%; /* Prevent horizontal scroll */
    overflow-x: hidden; /* Hide potential overflow */
  }
}

@media (max-width: 480px) {
  .page-live-roulette__hero-title {
    font-size: 1.8em;
  }
  .page-live-roulette__hero-description {
    font-size: 0.9em;
  }
  .page-live-roulette__section-title {
    font-size: 1.5em;
  }
  .page-live-roulette__sub-title {
    font-size: 1.2em;
  }
  .page-live-roulette__cta-button {
    padding: 10px 20px;
    font-size: 0.9em;
  }
}