.page-live-roulette {
  color: #333333; /* Dark text for light background */
}

.page-live-roulette__hero-section {
  padding-top: var(--header-offset, 120px); /* Ensure space below fixed header */
  background-color: #000000; /* Dark background for hero text */
  color: #FFFFFF; /* Light text on dark background */
  text-align: center;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 550px; /* Minimum height for hero section */
}

.page-live-roulette__hero-image-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  opacity: 0.4; /* Slightly dim the background image */
}

.page-live-roulette__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.page-live-roulette__hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
  padding: 40px 20px;
}

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

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

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

.page-live-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, transform 0.2s ease;
  border: none;
  cursor: pointer;
}

.page-live-roulette__button--register {
  background-color: #FFFFFF;
  color: #000000;
}

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

.page-live-roulette__button--login {
  background-color: #FCBC45;
  color: #000000;
}

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

.page-live-roulette__button--claim, .page-live-roulette__button--view, .page-live-roulette__button--learn, .page-live-roulette__button--download {
  background-color: #FCBC45;
  color: #000000;
}

.page-live-roulette__button--claim:hover, .page-live-roulette__button--view:hover, .page-live-roulette__button--learn:hover, .page-live-roulette__button--download:hover {
  background-color: #e0a030;
  transform: translateY(-2px);
}

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

.page-live-roulette__section-title {
  font-size: 2.5em;
  color: #000000;
  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: #FCBC45;
  border-radius: 2px;
}

.page-live-roulette__about-section, .page-live-roulette__how-to-play-section, .page-live-roulette__trust-section {
  padding: 80px 0;
  background-color: #FFFFFF;
}

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

.page-live-roulette__text-content a {
  color: #FCBC45;
  text-decoration: none;
  font-weight: bold;
}

.page-live-roulette__text-content a:hover {
  text-decoration: underline;
}

.page-live-roulette__variants-section, .page-live-roulette__features-section, .page-live-roulette__promotions-section {
  padding: 80px 0;
  background-color: #f5f5f5; /* Light grey background for alternating sections */
}

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

.page-live-roulette__variant-card, .page-live-roulette__promo-card {
  background-color: #FFFFFF;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease;
}

.page-live-roulette__variant-card:hover, .page-live-roulette__promo-card:hover {
  transform: translateY(-5px);
}

.page-live-roulette__variant-image, .page-live-roulette__promo-image {
  width: 100%;
  height: 250px; /* Fixed height for consistency */
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

.page-live-roulette__variant-title, .page-live-roulette__promo-title {
  font-size: 1.8em;
  color: #000000;
  margin-bottom: 15px;
}

.page-live-roulette__variant-description, .page-live-roulette__promo-description {
  font-size: 1em;
  line-height: 1.7;
  color: #555555;
  margin-bottom: 20px;
}

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

.page-live-roulette__step-item {
  background-color: #FFFFFF;
  border-left: 5px solid #FCBC45;
  padding: 25px 30px;
  margin-bottom: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-live-roulette__step-title {
  font-size: 1.6em;
  color: #000000;
  margin-bottom: 10px;
}

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

.page-live-roulette__features-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  list-style: none;
  padding: 0;
  margin-top: 40px;
}

.page-live-roulette__feature-item {
  background-color: #FFFFFF;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease;
}

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

.page-live-roulette__feature-icon {
  width: 200px; /* Minimum size */
  height: 150px; /* Minimum size */
  object-fit: contain;
  margin-bottom: 20px;
}

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

.page-live-roulette__feature-description {
  font-size: 0.95em;
  line-height: 1.6;
  color: #555555;
}

.page-live-roulette__trust-points {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-live-roulette__trust-item {
  background-color: #FFFFFF;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  padding: 30px;
  text-align: center;
}

.page-live-roulette__trust-title {
  font-size: 1.6em;
  color: #000000;
  margin-bottom: 10px;
}

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

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

.page-live-roulette__cta-content {
  max-width: 900px;
}

.page-live-roulette__cta-section .page-live-roulette__section-title {
  color: #FCBC45;
}

.page-live-roulette__cta-section .page-live-roulette__section-title::after {
  background-color: #FFFFFF;
}

.page-live-roulette__cta-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-top: 40px;
}

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

@media (max-width: 768px) {
  .page-live-roulette__hero-section {
    min-height: 450px;
    padding: 40px 15px;
  }
  .page-live-roulette__hero-title {
    font-size: 2.2em;
  }
  .page-live-roulette__hero-description {
    font-size: 1em;
  }
  .page-live-roulette__hero-actions {
    flex-direction: column;
    gap: 15px;
  }
  .page-live-roulette__button {
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
  }
  .page-live-roulette__container {
    padding: 0 15px;
  }
  .page-live-roulette__section-title {
    font-size: 1.8em;
  }
  .page-live-roulette__about-section, .page-live-roulette__how-to-play-section, .page-live-roulette__trust-section,
  .page-live-roulette__variants-section, .page-live-roulette__features-section, .page-live-roulette__promotions-section,
  .page-live-roulette__cta-section {
    padding: 50px 0;
  }
  .page-live-roulette__variants-grid, .page-live-roulette__promos-grid, .page-live-roulette__features-list, .page-live-roulette__trust-points {
    grid-template-columns: 1fr;
  }
  .page-live-roulette__variant-image, .page-live-roulette__promo-image {
    height: 200px;
  }
  /* Mobile content image constraint */
  .page-live-roulette img {
    max-width: 100%;
    height: auto;
  }
  .page-live-roulette__feature-icon {
    width: 200px; /* Ensure minimum size is maintained */
    height: 150px;
  }
}

@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__hero-description {
    font-size: 0.9em;
  }
  .page-live-roulette__text-content, .page-live-roulette__variant-description, .page-live-roulette__promo-description, .page-live-roulette__step-description, .page-live-roulette__feature-description, .page-live-roulette__trust-description {
    font-size: 0.9em;
  }
  .page-live-roulette__button {
    padding: 12px 25px;
    font-size: 1em;
  }
}