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

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

.page-live-roulette__hero-section {
  background-color: #000000; /* Dark background for hero */
  color: #FFFFFF;
  text-align: center;
  padding: 80px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.page-live-roulette__hero-content {
  z-index: 2;
  max-width: 800px;
  margin-bottom: 40px;
}

.page-live-roulette__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  line-height: 1.2;
  color: #FCBC45; /* Login button color for emphasis */
}

.page-live-roulette__hero-description {
  font-size: 1.3em;
  margin-bottom: 30px;
}

.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, color 0.3s ease;
  min-width: 150px;
  text-align: center;
}

.page-live-roulette__button--register {
  background-color: #FFFFFF; /* Register button color */
  color: #000000;
  border: 2px solid #FFFFFF;
}

.page-live-roulette__button--register:hover {
  background-color: #F0F0F0;
}

.page-live-roulette__button--login,
.page-live-roulette__button--play-now,
.page-live-roulette__button--download-app,
.page-live-roulette__button--join-now,
.page-live-roulette__button--register-free,
.page-live-roulette__button--existing-user-login {
  background-color: #FCBC45; /* Login button color */
  color: #000000;
  border: 2px solid #FCBC45;
}

.page-live-roulette__button--login:hover,
.page-live-roulette__button--play-now:hover,
.page-live-roulette__button--download-app:hover,
.page-live-roulette__button--join-now:hover,
.page-live-roulette__button--register-free:hover,
.page-live-roulette__button--existing-user-login:hover {
  background-color: #E0A83D;
  border-color: #E0A83D;
}

.page-live-roulette__button--view-promos,
.page-live-roulette__button--contact-support,
.page-live-roulette__button--explore-live,
.page-live-roulette__button--learn-more {
  background-color: #000000;
  color: #FFFFFF;
  border: 2px solid #000000;
}

.page-live-roulette__button--view-promos:hover,
.page-live-roulette__button--contact-support:hover,
.page-live-roulette__button--explore-live:hover,
.page-live-roulette__button--learn-more:hover {
  background-color: #333333;
  border-color: #333333;
}

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

.page-live-roulette__hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.4; /* Slightly dim the background image */
  display: block;
}

.page-live-roulette__about-section,
.page-live-roulette__gameplay-section,
.page-live-roulette__variants-section,
.page-live-roulette__strategy-section,
.page-live-roulette__why-choose-section,
.page-live-roulette__responsible-gambling-section,
.page-live-roulette__faq-section,
.page-live-roulette__cta-bottom-section {
  padding: 60px 0;
  background-color: #FFFFFF;
}

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

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

.page-live-roulette__subsection-title {
  font-size: 1.8em;
  color: #000000;
  margin-top: 30px;
  margin-bottom: 20px;
}

.page-live-roulette__text-content {
  font-size: 1.1em;
  line-height: 1.8;
  margin-bottom: 20px;
  text-align: justify;
}

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

.page-live-roulette__image-wrapper img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  display: block; /* Ensure no extra space below image */
  margin: 0 auto; /* Center the image */
}

.page-live-roulette__list,
.page-live-roulette__sub-list {
  list-style-type: disc;
  margin-left: 20px;
  margin-bottom: 20px;
}

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

.page-live-roulette__sub-list {
  list-style-type: circle;
  margin-left: 30px;
  margin-top: 10px;
}

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

.page-live-roulette__card {
  background-color: #F8F8F8;
  border-radius: 8px;
  padding: 30px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-live-roulette__card:hover {
  transform: translateY(-5px);
}

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

.page-live-roulette__card-text {
  font-size: 1em;
  line-height: 1.7;
  color: #555555;
  flex-grow: 1;
}

.page-live-roulette__card .page-live-roulette__button {
  margin-top: 20px;
  align-self: flex-start;
}

.page-live-roulette__cta-buttons {
  text-align: center;
  margin-top: 50px;
  display: flex;
  gap: 20px;
  justify-content: center;
}

.page-live-roulette__responsible-gambling-section {
  background-color: #F0F0F0;
  padding: 60px 0;
  text-align: center;
}

.page-live-roulette__responsible-gambling-section .page-live-roulette__text-content {
  max-width: 900px;
  margin: 0 auto 30px auto;
  text-align: center;
}

.page-live-roulette__faq-item {
  background-color: #F8F8F8;
  border-radius: 8px;
  padding: 25px;
  margin-bottom: 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
}

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

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

.page-live-roulette__cta-bottom-section {
  background-color: #000000;
  color: #FFFFFF;
  padding: 80px 0;
  text-align: center;
}

.page-live-roulette__cta-bottom-section .page-live-roulette__container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-around;
  gap: 40px;
}

.page-live-roulette__cta-content {
  flex: 1;
  text-align: left;
}

.page-live-roulette__cta-bottom-section .page-live-roulette__cta-title {
  font-size: 2.8em;
  color: #FCBC45;
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-live-roulette__cta-bottom-section .page-live-roulette__cta-description {
  font-size: 1.2em;
  margin-bottom: 30px;
}

.page-live-roulette__cta-bottom-section .page-live-roulette__cta-buttons {
  justify-content: flex-start;
  margin-top: 0;
}

.page-live-roulette__cta-image {
  flex: 0 0 400px;
  text-align: center;
}

.page-live-roulette__cta-image img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  display: block; /* Ensure no extra space below image */
  margin: 0 auto; /* Center the image */
}

@media (max-width: 1024px) {
  .page-live-roulette__hero-title {
    font-size: 2.8em;
  }
  .page-live-roulette__hero-description {
    font-size: 1.1em;
  }
  .page-live-roulette__section-title {
    font-size: 2em;
  }
  .page-live-roulette__subsection-title {
    font-size: 1.6em;
  }
  .page-live-roulette__text-content,
  .page-live-roulette__list-item,
  .page-live-roulette__faq-answer {
    font-size: 1em;
  }
  .page-live-roulette__cta-bottom-section .page-live-roulette__container {
    flex-direction: column;
    text-align: center;
  }
  .page-live-roulette__cta-content {
    text-align: center;
  }
  .page-live-roulette__cta-bottom-section .page-live-roulette__cta-buttons {
    justify-content: center;
  }
  .page-live-roulette__cta-image {
    flex: none;
    margin-top: 40px;
  }
}

@media (max-width: 768px) {
  .page-live-roulette__hero-section {
    padding: 60px 15px;
  }
  .page-live-roulette__hero-title {
    font-size: 2.2em;
  }
  .page-live-roulette__hero-description {
    font-size: 1em;
  }
  .page-live-roulette__hero-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-live-roulette__button {
    padding: 12px 25px;
    width: 100%;
    max-width: 250px;
  }
  .page-live-roulette__about-section,
  .page-live-roulette__gameplay-section,
  .page-live-roulette__variants-section,
  .page-live-roulette__strategy-section,
  .page-live-roulette__why-choose-section,
  .page-live-roulette__responsible-gambling-section,
  .page-live-roulette__faq-section,
  .page-live-roulette__cta-bottom-section {
    padding: 40px 0;
  }
  .page-live-roulette__section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
  }
  .page-live-roulette__subsection-title {
    font-size: 1.4em;
  }
  .page-live-roulette__grid {
    grid-template-columns: 1fr;
  }
  .page-live-roulette__cta-bottom-section .page-live-roulette__cta-title {
    font-size: 2em;
  }
  .page-live-roulette__cta-bottom-section .page-live-roulette__cta-description {
    font-size: 1em;
  }
  /* Ensure images do not overflow on mobile */
  .page-live-roulette img {
    max-width: 100%;
    height: auto;
  }
}

@media (max-width: 480px) {
  .page-live-roulette__hero-title {
    font-size: 1.8em;
  }
  .page-live-roulette__section-title {
    font-size: 1.5em;
  }
  .page-live-roulette__subsection-title {
    font-size: 1.2em;
  }
  .page-live-roulette__cta-bottom-section .page-live-roulette__cta-title {
    font-size: 1.8em;
  }
  .page-live-roulette__hero-image {
    position: relative; /* Adjust hero image positioning for smaller screens if needed */
    height: 250px;
  }
  .page-live-roulette__hero-content {
    margin-bottom: 20px;
  }
}