.page-live-dealer-games {
  background-color: #0A0A0A;
  color: #FFF6D6;
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

.page-live-dealer-games__hero-section {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding-top: 10px; /* Small top padding for first section */
}

.page-live-dealer-games__hero-image-wrapper {
  width: 100%;
  height: 0;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  position: relative;
}

.page-live-dealer-games__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.7); /* Slightly dim the image for text readability, no color change */
}

.page-live-dealer-games__hero-content {
  position: relative; /* Ensure content is below the image in normal flow */
  text-align: center;
  padding: 40px 20px;
  max-width: 900px;
  margin: 0 auto;
  z-index: 1;
}

.page-live-dealer-games__main-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  color: #F2C14E;
  font-weight: bold;
  margin-bottom: 15px;
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-live-dealer-games__hero-description {
  font-size: 1.2rem;
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.page-live-dealer-games__hero-ctas {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.page-live-dealer-games__cta-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;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  color: #0A0A0A; /* Dark text for contrast against bright button */
}

.page-live-dealer-games__cta-button--primary {
  background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
  color: #0A0A0A;
}

.page-live-dealer-games__cta-button--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.page-live-dealer-games__cta-button--secondary {
  background-color: #111111;
  color: #F2C14E;
  border: 2px solid #3A2A12;
}

.page-live-dealer-games__cta-button--secondary:hover {
  background-color: #1A1A1A;
  transform: translateY(-2px);
}

.page-live-dealer-games__cta-button--small {
  padding: 10px 20px;
  font-size: 0.9rem;
}

.page-live-dealer-games__section-title {
  font-size: 2.2rem;
  color: #F2C14E;
  text-align: center;
  margin: 60px 0 30px;
}

.page-live-dealer-games__section-description {
  font-size: 1.1rem;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px;
  padding: 0 15px;
}

.page-live-dealer-games__game-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  padding: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.page-live-dealer-games__game-card {
  background-color: #111111;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #3A2A12;
}

.page-live-dealer-games__game-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
}

.page-live-dealer-games__game-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-bottom: 1px solid #3A2A12;
}

.page-live-dealer-games__game-title {
  font-size: 1.5rem;
  color: #FFD36B;
  margin: 20px 15px 10px;
}

.page-live-dealer-games__game-description {
  font-size: 0.95rem;
  color: #FFF6D6;
  padding: 0 15px 20px;
}

.page-live-dealer-games__game-button {
  display: block;
  width: calc(100% - 30px);
  margin: 0 15px 15px;
  padding: 12px 0;
  background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
  color: #0A0A0A;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.page-live-dealer-games__game-button:hover {
  filter: brightness(1.1);
}

.page-live-dealer-games__view-all-games {
  text-align: center;
  margin-top: 40px;
  padding-bottom: 60px;
}

.page-live-dealer-games__features-section {
  padding: 60px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.page-live-dealer-games__feature-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.page-live-dealer-games__feature-item {
  background-color: #111111;
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  border: 1px solid #3A2A12;
}

.page-live-dealer-games__feature-icon {
  width: 100%;
  height: 180px; /* Ensure images meet minimum size requirements */
  object-fit: cover;
  margin-bottom: 20px;
  border-radius: 8px;
}

.page-live-dealer-games__feature-heading {
  font-size: 1.4rem;
  color: #FFD36B;
  margin-bottom: 10px;
}

.page-live-dealer-games__feature-description {
  font-size: 0.95rem;
  color: #FFF6D6;
}

.page-live-dealer-games__how-to-play-section {
  padding: 60px 20px;
  max-width: 1000px;
  margin: 0 auto;
}

.page-live-dealer-games__steps-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
}

.page-live-dealer-games__step-card {
  background-color: #111111;
  border-radius: 12px;
  padding: 30px 20px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  border: 1px solid #3A2A12;
}

.page-live-dealer-games__step-number {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  background-color: #F2C14E;
  color: #0A0A0A;
  border-radius: 50%;
  font-size: 1.8rem;
  font-weight: bold;
  margin-bottom: 20px;
}

.page-live-dealer-games__step-title {
  font-size: 1.3rem;
  color: #FFD36B;
  margin-bottom: 10px;
}

.page-live-dealer-games__step-description {
  font-size: 0.95rem;
  color: #FFF6D6;
  margin-bottom: 20px;
}

.page-live-dealer-games__promotions-callout-section {
  background-color: #111111;
  padding: 50px 20px;
  text-align: center;
  margin: 60px auto;
  border-top: 1px solid #3A2A12;
  border-bottom: 1px solid #3A2A12;
  max-width: 1200px;
  border-radius: 12px;
}

.page-live-dealer-games__promotion-description {
  font-size: 1.1rem;
  max-width: 800px;
  margin: 0 auto 30px;
  color: #FFF6D6;
}

.page-live-dealer-games__faq-section {
  padding: 60px 20px;
  max-width: 900px;
  margin: 0 auto;
}

.page-live-dealer-games__faq-accordion {
  border: 1px solid #3A2A12;
  border-radius: 12px;
  overflow: hidden;
}

.page-live-dealer-games__faq-item {
  border-bottom: 1px solid #3A2A12;
}

.page-live-dealer-games__faq-item:last-child {
  border-bottom: none;
}

.page-live-dealer-games__faq-question {
  background-color: #1A1A1A;
  color: #F2C14E;
  padding: 20px;
  font-size: 1.1rem;
  font-weight: bold;
  cursor: pointer;
  position: relative;
  transition: background-color 0.3s ease;
}

.page-live-dealer-games__faq-question:hover {
  background-color: #222222;
}

.page-live-dealer-games__faq-answer {
  background-color: #111111;
  color: #FFF6D6;
  padding: 20px;
  font-size: 1rem;
  display: none; /* Hidden by default, toggled by JS */
}

/* Basic responsive adjustments */
@media (max-width: 768px) {
  .page-live-dealer-games__main-title {
    font-size: clamp(2rem, 8vw, 3rem);
  }

  .page-live-dealer-games__hero-description,
  .page-live-dealer-games__section-description,
  .page-live-dealer-games__promotion-description {
    font-size: 1rem;
  }

  .page-live-dealer-games__hero-ctas {
    flex-direction: column;
    gap: 15px;
  }

  .page-live-dealer-games__cta-button {
    width: 80%;
    margin: 0 auto;
  }

  .page-live-dealer-games__game-grid,
  .page-live-dealer-games__feature-list,
  .page-live-dealer-games__steps-container {
    grid-template-columns: 1fr;
  }

  .page-live-dealer-games__game-image, 
  .page-live-dealer-games__feature-icon {
    max-width: 100%;
    height: auto; /* Ensure images don't overflow */
  }

  .page-live-dealer-games__game-button {
    width: calc(100% - 40px);
    margin: 0 20px 15px;
  }
}

@media (max-width: 480px) {
  .page-live-dealer-games__main-title {
    font-size: clamp(1.8rem, 9vw, 2.5rem);
  }

  .page-live-dealer-games__section-title {
    font-size: 1.8rem;
  }

  .page-live-dealer-games__hero-content {
    padding: 30px 15px;
  }
}

/* Ensure content area images don't display smaller than 200px on mobile */
@media (max-width: 768px) {
  .page-live-dealer-games img {
    max-width: 100%; 
    height: auto; 
    min-width: 200px; /* Enforce minimum display size */
    min-height: 200px; /* Enforce minimum display size */
    object-fit: cover;
  }
}