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

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

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

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

.page-live-roulette__hero-image img {
  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;
}

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

.page-live-roulette__hero-description {
  font-size: 1.3em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-live-roulette__cta-button,
.page-live-roulette__secondary-button,
.page-live-roulette__download-button,
.page-live-roulette__play-button,
.page-live-roulette__learn-more-button,
.page-live-roulette__tertiary-button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.2s ease;
  margin: 10px;
  font-size: 1.1em;
}

.page-live-roulette__cta-button {
  background-color: #F2C94C; /* Accent color for primary CTA */
  color: #0A2342;
}

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

.page-live-roulette__secondary-button {
  background-color: transparent;
  color: #F2C94C;
  border: 2px solid #F2C94C;
}

.page-live-roulette__secondary-button:hover {
  background-color: #F2C94C;
  color: #0A2342;
  transform: translateY(-2px);
}

.page-live-roulette__section-title {
  font-size: 2.5em;
  color: #0A2342;
  text-align: center;
  margin-bottom: 30px;
  margin-top: 60px;
}

.page-live-roulette__section-description {
  font-size: 1.1em;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 50px auto;
}

.page-live-roulette__about-section {
  padding: 60px 0;
  background-color: #f8f8f8;
}

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

.page-live-roulette__about-item {
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  padding: 30px;
  text-align: center;
}

.page-live-roulette__about-item img {
  width: 250px; /* Minimum 200px */
   /* Maintain aspect ratio for 800x600 */
  margin-bottom: 20px;
  border-radius: 8px;
  object-fit: cover;
}

.page-live-roulette__item-title {
  font-size: 1.8em;
  color: #0A2342;
  margin-bottom: 15px;
}

.page-live-roulette__item-text {
  font-size: 1em;
  color: #555555;
}

.page-live-roulette__download-button {
  background-color: #0A2342;
  color: #F2C94C;
  border: 2px solid #0A2342;
  margin-top: 20px;
}

.page-live-roulette__download-button:hover {
  background-color: #F2C94C;
  color: #0A2342;
}

.page-live-roulette__variations-section {
  padding: 60px 0;
}

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

.page-live-roulette__variation-card {
  background-color: #0A2342;
  color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  text-align: center;
  display: flex;
  flex-direction: column;
}

.page-live-roulette__variation-card img {
  width: 100%;
  height: 250px; /* Example height for card images */
  object-fit: cover;
  display: block;
  border-bottom: 3px solid #F2C94C;
}

.page-live-roulette__card-title {
  font-size: 1.7em;
  color: #F2C94C;
  margin: 25px 15px 10px 15px;
}

.page-live-roulette__card-text {
  font-size: 0.95em;
  color: #e0e0e0;
  padding: 0 20px 20px 20px;
  flex-grow: 1;
}

.page-live-roulette__play-button {
  background-color: #F2C94C;
  color: #0A2342;
  margin-top: auto;
  margin-bottom: 20px;
  align-self: center;
  width: calc(100% - 40px);
}

.page-live-roulette__play-button:hover {
  background-color: #e0b43c;
}

.page-live-roulette__strategy-section {
  background-color: #f0f0f0;
  padding: 60px 0;
}

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

.page-live-roulette__strategy-item {
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  padding: 25px;
}

.page-live-roulette__strategy-item .page-live-roulette__item-title {
  font-size: 1.6em;
  color: #0A2342;
  margin-bottom: 10px;
}

.page-live-roulette__strategy-item .page-live-roulette__item-text {
  font-size: 0.95em;
  color: #555555;
}

.page-live-roulette__learn-more-button {
  background-color: #0A2342;
  color: #F2C94C;
  border: 2px solid #0A2342;
  margin-top: 50px;
  text-align: center;
}

.page-live-roulette__learn-more-button:hover {
  background-color: #F2C94C;
  color: #0A2342;
}

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

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

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

.page-live-roulette__cta-bottom-section .page-live-roulette__section-description {
  color: #e0e0e0;
  margin-bottom: 40px;
}

.page-live-roulette__cta-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
}

.page-live-roulette__tertiary-button {
  background-color: transparent;
  color: #ffffff;
  border: 2px solid #ffffff;
}

.page-live-roulette__tertiary-button:hover {
  background-color: #ffffff;
  color: #0A2342;
}

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

@media (max-width: 768px) {
  .page-live-roulette {
    padding-top: var(--header-offset, 80px); /* Adjust for smaller mobile header */
  }
  .page-live-roulette__hero-section {
    padding: 60px 15px;
  }
  .page-live-roulette__hero-title {
    font-size: 2.2em;
  }
  .page-live-roulette__hero-description {
    font-size: 1.1em;
  }
  .page-live-roulette__cta-button,
  .page-live-roulette__secondary-button,
  .page-live-roulette__download-button,
  .page-live-roulette__play-button,
  .page-live-roulette__learn-more-button,
  .page-live-roulette__tertiary-button {
    width: calc(100% - 20px);
    margin: 5px 10px;
    font-size: 1em;
  }
  .page-live-roulette__about-grid,
  .page-live-roulette__variations-grid,
  .page-live-roulette__strategy-grid {
    grid-template-columns: 1fr;
  }
  .page-live-roulette__about-item img {
    width: 200px; /* Example, ensuring min 200px displayed size */
    
  }
  .page-live-roulette__variation-card img {
    max-width: 100%;
    height: auto;
  }
  .page-live-roulette__about-item,
  .page-live-roulette__variation-card,
  .page-live-roulette__strategy-item {
    padding: 20px;
  }
  /* Ensure all images within .page-live-roulette are responsive and don't overflow */
  .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.6em;
  }
  .page-live-roulette__cta-buttons {
    flex-direction: column;
  }
}