.page-live-roulette {
  padding-top: var(--header-offset, 120px);
  color: #333333; /* Dark text for default light body background */
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

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

.page-live-roulette__container--center {
  text-align: center;
}

.page-live-roulette__hero-section {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 500px;
  color: #ffffff;
  text-align: center;
  overflow: hidden;
  background-color: #003366;
}

.page-live-roulette__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  opacity: 0.6;
}

.page-live-roulette__hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 40px;
  background: rgba(0, 51, 102, 0.7);
  border-radius: 10px;
}

.page-live-roulette__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  color: #FFCC00;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-live-roulette__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: #ffffff;
}

.page-live-roulette__hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.page-live-roulette__button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.2s ease;
  font-size: 1.1em;
}

.page-live-roulette__button--primary {
  background-color: #FFCC00;
  color: #003366;
  border: 2px solid #FFCC00;
}

.page-live-roulette__button--primary:hover {
  background-color: #e6b800;
  transform: translateY(-2px);
}

.page-live-roulette__button--secondary {
  background-color: transparent;
  color: #FFCC00;
  border: 2px solid #FFCC00;
}

.page-live-roulette__button--secondary:hover {
  background-color: #FFCC00;
  color: #003366;
  transform: translateY(-2px);
}

.page-live-roulette__button--small {
  padding: 10px 20px;
  font-size: 0.9em;
}

.page-live-roulette__button--large {
  padding: 18px 35px;
  font-size: 1.3em;
}

.page-live-roulette__introduction-section,
.page-live-roulette__how-to-play-section,
.page-live-roulette__strategies-section,
.page-live-roulette__plus777-advantage-section,
.page-live-roulette__bonuses-section,
.page-live-roulette__faq-section,
.page-live-roulette__cta-section {
  padding: 60px 0;
  background-color: #f9f9f9;
  border-bottom: 1px solid #eee;
}

.page-live-roulette__introduction-section {
  background-color: #ffffff;
}

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

.page-live-roulette__section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: #FFCC00;
  margin: 15px auto 0;
  border-radius: 2px;
}

.page-live-roulette__section-paragraph {
  font-size: 1.1em;
  margin-bottom: 20px;
  text-align: justify;
}

.page-live-roulette__section-paragraph a {
  color: #003366;
  text-decoration: underline;
  font-weight: bold;
}

.page-live-roulette__section-paragraph a:hover {
  color: #FFCC00;
}

.page-live-roulette__steps-list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
}

.page-live-roulette__list-item {
  background-color: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 30px;
  margin-bottom: 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-live-roulette__list-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.page-live-roulette__list-title {
  font-size: 1.5em;
  color: #003366;
  margin-bottom: 15px;
}

.page-live-roulette__list-item p {
  font-size: 1em;
  line-height: 1.8;
  color: #555555;
}

.page-live-roulette__image {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 10px;
  margin: 40px 0;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.page-live-roulette__image--center {
  margin-left: auto;
  margin-right: auto;
  max-width: 800px;
}

.page-live-roulette__image--right {
  margin-left: auto;
  max-width: 800px;
}

.page-live-roulette__image--left {
  margin-right: auto;
  max-width: 800px;
}

.page-live-roulette__strategy-grid,
.page-live-roulette__bonus-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-live-roulette__strategy-card,
.page-live-roulette__bonus-card {
  background-color: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-live-roulette__strategy-card:hover,
.page-live-roulette__bonus-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.page-live-roulette__card-title {
  font-size: 1.6em;
  color: #003366;
  margin-bottom: 15px;
}

.page-live-roulette__strategy-card p,
.page-live-roulette__bonus-card p {
  font-size: 1em;
  line-height: 1.8;
  color: #555555;
  margin-bottom: 20px;
  flex-grow: 1;
}

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

.page-live-roulette__faq-item {
  background-color: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 25px 30px;
  margin-bottom: 15px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
}

.page-live-roulette__faq-question {
  font-size: 1.3em;
  color: #003366;
  margin-bottom: 10px;
  cursor: pointer;
  position: relative;
  padding-right: 30px;
}

.page-live-roulette__faq-question::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.2em;
  font-weight: bold;
  color: #FFCC00;
}

.page-live-roulette__faq-question.active::after {
  content: '-';
}

.page-live-roulette__faq-answer {
  font-size: 1em;
  color: #555555;
  line-height: 1.8;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out, padding 0.3s ease-out;
  padding-top: 0;
}

.page-live-roulette__faq-answer.active {
  max-height: 200px; /* Adjust as needed */
  padding-top: 15px;
}

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

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

  .page-live-roulette__strategy-grid,
  .page-live-roulette__bonus-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }

  .page-live-roulette__image {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 768px) {
  .page-live-roulette {
    padding-top: var(--header-offset, 120px);
  }
  
  .page-live-roulette__hero-content {
    padding: 30px;
  }

  .page-live-roulette__hero-title {
    font-size: 2em;
  }

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

  .page-live-roulette__hero-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .page-live-roulette__button {
    width: 100%;
  }

  .page-live-roulette__section-title {
    font-size: 1.8em;
  }

  .page-live-roulette__introduction-section,
  .page-live-roulette__how-to-play-section,
  .page-live-roulette__strategies-section,
  .page-live-roulette__plus777-advantage-section,
  .page-live-roulette__bonuses-section,
  .page-live-roulette__faq-section,
  .page-live-roulette__cta-section {
    padding: 40px 0;
  }

  /* Ensure content images are responsive and don't overflow */
  .page-live-roulette__container img {
    max-width: 100%;
    height: auto;
  }
  .page-live-roulette__image {
    max-width: 100%;
    height: auto;
    min-width: 200px; /* Enforce minimum size */
    min-height: 200px; /* Enforce minimum size */
  }
}

@media (max-width: 480px) {
  .page-live-roulette__hero-title {
    font-size: 1.8em;
  }

  .page-live-roulette__hero-content {
    padding: 20px;
  }

  .page-live-roulette__section-title {
    font-size: 1.5em;
  }

  .page-live-roulette__list-item,
  .page-live-roulette__strategy-card,
  .page-live-roulette__bonus-card,
  .page-live-roulette__faq-item {
    padding: 20px;
  }

  .page-live-roulette__list-title,
  .page-live-roulette__card-title,
  .page-live-roulette__faq-question {
    font-size: 1.2em;
  }
}