.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;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-top: 10px; /* Small top padding, body handles header offset */
  padding-bottom: 40px;
  overflow: hidden;
}

.page-live-dealer-games__hero-image-wrapper {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 0;
}

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

.page-live-dealer-games__hero-content {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  width: 90%;
  padding: 20px;
  background: linear-gradient(rgba(10, 10, 10, 0.7), rgba(10, 10, 10, 0.9));
  border-radius: 12px;
  margin-top: -100px; /* Overlap slightly for visual effect, ensures text is below image */
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
  border: 1px solid #3A2A12;
}

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

.page-live-dealer-games__hero-description {
  font-size: 1.2rem;
  margin-bottom: 30px;
  color: #E5E5E5;
}

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

.page-live-dealer-games__cta-button,
.page-live-dealer-games__learn-more-button,
.page-live-dealer-games__card-button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  white-space: nowrap;
  border: none;
  cursor: pointer;
}

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

.page-live-dealer-games__cta-button:hover {
  transform: translateY(-3px);
  opacity: 0.9;
}

.page-live-dealer-games__learn-more-button,
.page-live-dealer-games__card-button {
  background-color: #111111;
  color: #F2C14E;
  border: 1px solid #3A2A12;
}

.page-live-dealer-games__learn-more-button:hover,
.page-live-dealer-games__card-button:hover {
  transform: translateY(-3px);
  background-color: #1a1a1a;
  color: #FFD36B;
}

.page-live-dealer-games__section-title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: #F2C14E;
  text-align: center;
  margin-bottom: 30px;
  font-weight: bold;
  padding-top: 40px;
}

.page-live-dealer-games__introduction-section,
.page-live-dealer-games__game-categories-section,
.page-live-dealer-games__advantages-section,
.page-live-dealer-games__how-to-play-section,
.page-live-dealer-games__responsible-gaming-section,
.page-live-dealer-games__cta-banner-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
  margin-bottom: 60px;
}

.page-live-dealer-games__paragraph {
  font-size: 1.1rem;
  margin-bottom: 20px;
  text-align: center;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  color: #E5E5E5;
}

.page-live-dealer-games__highlight {
  color: #F2C14E;
  font-weight: bold;
}

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

.page-live-dealer-games__game-card,
.page-live-dealer-games__advantage-item,
.page-live-dealer-games__step-card {
  background-color: #111111;
  border-radius: 12px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  border: 1px solid #3A2A12;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-live-dealer-games__game-card:hover,
.page-live-dealer-games__advantage-item:hover,
.page-live-dealer-games__step-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
}

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

.page-live-dealer-games__game-title,
.page-live-dealer-games__advantage-title,
.page-live-dealer-games__step-title {
  font-size: 1.4rem;
  color: #F2C14E;
  margin-bottom: 10px;
  font-weight: bold;
}

.page-live-dealer-games__game-description,
.page-live-dealer-games__advantage-description,
.page-live-dealer-games__step-description {
  font-size: 1rem;
  color: #E5E5E5;
  margin-bottom: 20px;
}

.page-live-dealer-games__advantage-icon {
  width: 80px;
  height: 80px;
  object-fit: contain;
  margin-bottom: 15px;
  filter: none; /* Ensure no filter is applied */
}

.page-live-dealer-games__step-number {
  font-size: 2.5rem;
  color: #FFD36B;
  font-weight: bold;
  margin-bottom: 10px;
}

.page-live-dealer-games__responsible-gaming-section {
  margin-top: 60px;
  background-color: #111111;
  padding: 40px;
  border-radius: 12px;
  border: 1px solid #3A2A12;
}

.page-live-dealer-games__content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 30px;
  align-items: center;
}

.page-live-dealer-games__text-content {
  flex: 1;
  text-align: center;
}

.page-live-dealer-games__responsible-gaming-list {
  list-style: none;
  padding: 0;
  margin-top: 20px;
  text-align: left;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.page-live-dealer-games__list-item {
  font-size: 1.1rem;
  color: #E5E5E5;
  margin-bottom: 10px;
  position: relative;
  padding-left: 25px;
}

.page-live-dealer-games__list-item::before {
  content: '✓';
  color: #FFD36B;
  position: absolute;
  left: 0;
  font-weight: bold;
}

.page-live-dealer-games__image-content {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-live-dealer-games__responsible-gaming-image {
  width: 100%;
  max-width: 400px;
  height: auto;
  border-radius: 8px;
  border: 1px solid #3A2A12;
  filter: none; /* Ensure no filter is applied */
}

.page-live-dealer-games__cta-banner-section {
  text-align: center;
  background: linear-gradient(rgba(10, 10, 10, 0.8), rgba(10, 10, 10, 0.9)), url('[GALLERY:bg:1920x400:live_dealer_games,cta_banner,playtime_philippines,golden_light,abstract_pattern]');
  background-size: cover;
  background-position: center;
  padding: 60px 20px;
  border-radius: 12px;
  margin-bottom: 0;
  border: 1px solid #3A2A12;
}

.page-live-dealer-games__cta-title {
  font-size: clamp(2.2rem, 4.5vw, 3rem);
  color: #FFD36B;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-live-dealer-games__cta-description {
  font-size: 1.2rem;
  color: #E5E5E5;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 768px) {
  .page-live-dealer-games__hero-content {
    margin-top: -150px;
    padding: 30px 50px;
  }

  .page-live-dealer-games__game-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .page-live-dealer-games__advantages-grid,
  .page-live-dealer-games__steps-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .page-live-dealer-games__content-wrapper {
    flex-direction: row;
    text-align: left;
  }

  .page-live-dealer-games__text-content {
    text-align: left;
  }

  .page-live-dealer-games__responsible-gaming-list {
    text-align: left;
    margin-left: 0;
  }
}

@media (max-width: 768px) {
  .page-live-dealer-games__hero-image,
  .page-live-dealer-games__game-image,
  .page-live-dealer-games__advantage-icon,
  .page-live-dealer-games__responsible-gaming-image {
    max-width: 100%;
    height: auto;
  }

  .page-live-dealer-games__hero-content {
    margin-top: -80px;
    padding: 20px;
  }

  .page-live-dealer-games__hero-buttons {
    flex-direction: column;
  }

  .page-live-dealer-games__cta-button,
  .page-live-dealer-games__learn-more-button {
    width: 100%;
  }

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

  .page-live-dealer-games__game-card,
  .page-live-dealer-games__advantage-item,
  .page-live-dealer-games__step-card {
    padding: 20px;
  }

  .page-live-dealer-games__section-title {
    padding-top: 20px;
  }

  .page-live-dealer-games__responsible-gaming-section {
    padding: 20px;
  }
}