/* style/live-roulette.css */
.page-live-roulette {
  font-family: Arial, sans-serif;
  color: #333333; /* Dark text for light body background */
  line-height: 1.6;
  padding-top: var(--header-offset, 120px); /* Ensure 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: #003366;
  color: #ffffff;
  padding: 80px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

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

.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: #FFCC00;
  line-height: 1.2;
}

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

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

.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, color 0.3s ease;
  white-space: nowrap;
}

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

.page-live-roulette__button--primary:hover {
  background-color: #e6b800;
  border-color: #e6b800;
}

.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;
}

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

.page-live-roulette__section-text {
  font-size: 1.1em;
  margin-bottom: 20px;
  text-align: center;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-live-roulette__introduction-section,
.page-live-roulette__how-to-play-section,
.page-live-roulette__variants-section,
.page-live-roulette__strategy-section,
.page-live-roulette__why-choose-section,
.page-live-roulette__getting-started-section,
.page-live-roulette__responsible-gaming-section,
.page-live-roulette__faq-section,
.page-live-roulette__cta-final {
  padding: 60px 0;
}

.page-live-roulette__introduction-section,
.page-live-roulette__strategy-section,
.page-live-roulette__responsible-gaming-section {
  background-color: #f8f8f8;
}

.page-live-roulette__play-steps {
  list-style: none;
  padding: 0;
  max-width: 800px;
  margin: 40px auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  text-align: left;
}

.page-live-roulette__step-item {
  background-color: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

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

.page-live-roulette__step-item strong {
  color: #003366;
  font-size: 1.2em;
  display: block;
  margin-bottom: 10px;
}

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

.page-live-roulette__variant-card {
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  text-align: center;
  transition: transform 0.3s ease;
}

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

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

.page-live-roulette__variant-title {
  font-size: 1.5em;
  color: #003366;
  margin: 20px 0 10px;
  padding: 0 15px;
}

.page-live-roulette__variant-description {
  font-size: 1em;
  color: #555555;
  padding: 0 15px 20px;
}

.page-live-roulette__strategy-list {
  list-style: disc;
  padding-left: 30px;
  max-width: 900px;
  margin: 40px auto;
}

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

.page-live-roulette__strategy-item strong {
  color: #003366;
}

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

.page-live-roulette__feature-card {
  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-card:hover {
  transform: translateY(-8px);
}

.page-live-roulette__feature-icon {
  width: 150px;
  height: 100px;
  object-fit: contain;
  margin-bottom: 20px;
}

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

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

.page-live-roulette__cta-bottom {
  text-align: center;
  margin-top: 60px;
}

.page-live-roulette__steps-list {
  list-style: none;
  padding: 0;
  max-width: 800px;
  margin: 40px auto;
}

.page-live-roulette__steps-item {
  background-color: #ffffff;
  border: 1px solid #e0e0e0;
  border-left: 5px solid #FFCC00;
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 15px;
  font-size: 1.1em;
  display: flex;
  align-items: center;
}

.page-live-roulette__steps-item strong {
  color: #003366;
  margin-right: 10px;
}

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

.page-live-roulette__steps-item a:hover {
  color: #FFCC00;
}

.page-live-roulette__responsible-gaming-section a {
  color: #003366;
  text-decoration: underline;
  font-weight: bold;
}

.page-live-roulette__responsible-gaming-section a:hover {
  color: #FFCC00;
}

.page-live-roulette__faq-item {
  background-color: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  margin-bottom: 20px;
  padding: 25px;
  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;
}

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

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

.page-live-roulette__faq-answer a:hover {
  color: #FFCC00;
}

.page-live-roulette__cta-final {
  background-color: #003366;
  color: #ffffff;
  padding: 80px 20px;
  text-align: center;
}

.page-live-roulette__cta-final-content {
  max-width: 900px;
  margin: 0 auto;
}

.page-live-roulette__cta-final-title {
  font-size: 2.8em;
  color: #FFCC00;
  margin-bottom: 20px;
}

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

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

@media (max-width: 768px) {
  .page-live-roulette__hero-title {
    font-size: 2.5em;
  }
  .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;
  }
  .page-live-roulette__section-title {
    font-size: 1.8em;
  }
  .page-live-roulette__section-text,
  .page-live-roulette__strategy-item,
  .page-live-roulette__steps-item,
  .page-live-roulette__faq-answer {
    font-size: 0.95em;
  }
  .page-live-roulette__cta-final-title {
    font-size: 2em;
  }
  .page-live-roulette__cta-final-description {
    font-size: 1em;
  }
  /* Ensure content area images are responsive and do not overflow */
  .page-live-roulette img {
    max-width: 100%;
    height: auto;
  }
  .page-live-roulette__feature-icon, .page-live-roulette__variant-image {
    width: 100%;
    height: auto; /* Allow natural scaling */
    min-width: 200px; /* Ensure minimum size */
    min-height: 200px; /* Ensure minimum size */
    object-fit: cover;
  }
  .page-live-roulette__feature-icon {
    width: 200px; /* Specific width for smaller icons, but still large */
    height: 150px;
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 480px) {
  .page-live-roulette__hero-title {
    font-size: 2em;
  }
  .page-live-roulette__section-title {
    font-size: 1.5em;
  }
  .page-live-roulette__play-steps {
    grid-template-columns: 1fr;
  }
  .page-live-roulette__variants-grid {
    grid-template-columns: 1fr;
  }
  .page-live-roulette__features-grid {
    grid-template-columns: 1fr;
  }
  .page-live-roulette__cta-final-title {
    font-size: 1.6em;
  }
}