.page-live-dealer-games-guide {
  color: #333333; /* Dark text for light body background */
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

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

.page-live-dealer-games-guide__hero-section {
  padding-top: var(--header-offset, 120px); /* Ensure space for fixed header */
  background-color: #000080; /* Midnight Blue background */
  color: #ffffff;
  text-align: center;
  padding-bottom: 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}

.page-live-dealer-games-guide__hero-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 20px;
}

.page-live-dealer-games-guide__hero-title {
  font-size: 3.2em;
  color: #FFD700; /* Gold for main title */
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-live-dealer-games-guide__hero-description {
  font-size: 1.3em;
  margin-bottom: 30px;
  line-height: 1.5;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-live-dealer-games-guide__cta-button {
  display: inline-block;
  background-color: #FFD700; /* Gold button */
  color: #000080; /* Midnight Blue text */
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: 2px solid #FFD700;
}

.page-live-dealer-games-guide__cta-button:hover {
  background-color: #e6c200;
  transform: translateY(-2px);
}

.page-live-dealer-games-guide__hero-image img {
  width: 1200px;
  height: 675px;
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

.page-live-dealer-games-guide__introduction-section,
.page-live-dealer-games-guide__popular-games-section,
.page-live-dealer-games-guide__how-to-play-section,
.page-live-dealer-games-guide__strategies-section,
.page-live-dealer-games-guide__why-80jili-section,
.page-live-dealer-games-guide__responsible-gaming-section {
  padding: 60px 0;
  background-color: #f9f9f9;
  border-bottom: 1px solid #eee;
}

.page-live-dealer-games-guide__introduction-section {
  background-color: #ffffff;
}

.page-live-dealer-games-guide__section-title {
  font-size: 2.5em;
  color: #000080; /* Midnight Blue for section titles */
  text-align: center;
  margin-bottom: 30px;
  position: relative;
}

.page-live-dealer-games-guide__section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: #FFD700;
  margin: 15px auto 0;
  border-radius: 2px;
}

.page-live-dealer-games-guide__section-text {
  font-size: 1.1em;
  text-align: justify;
  max-width: 900px;
  margin: 0 auto 40px;
  line-height: 1.8;
}

.page-live-dealer-games-guide__section-text a {
  color: #000080;
  text-decoration: underline;
}

.page-live-dealer-games-guide__section-text a:hover {
  color: #FFD700;
}

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

.page-live-dealer-games-guide__game-card,
.page-live-dealer-games-guide__feature-card {
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.page-live-dealer-games-guide__game-card:hover,
.page-live-dealer-games-guide__feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

.page-live-dealer-games-guide__card-image {
  width: 100%;
  height: 200px; /* Fixed height for consistency */
  object-fit: cover;
  display: block;
}

.page-live-dealer-games-guide__card-title {
  font-size: 1.5em;
  color: #000080;
  margin: 20px 20px 10px;
}

.page-live-dealer-games-guide__card-title a {
  color: #000080;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-live-dealer-games-guide__card-title a:hover {
  color: #FFD700;
}

.page-live-dealer-games-guide__card-description {
  font-size: 0.95em;
  color: #555555;
  padding: 0 20px 20px;
  line-height: 1.7;
  flex-grow: 1;
}

.page-live-dealer-games-guide__steps-list,
.page-live-dealer-games-guide__strategy-list {
  list-style: none;
  counter-reset: item;
  max-width: 900px;
  margin: 40px auto;
  padding: 0;
}

.page-live-dealer-games-guide__list-item {
  counter-increment: item;
  margin-bottom: 25px;
  padding-left: 60px;
  position: relative;
  font-size: 1.1em;
  line-height: 1.7;
  color: #444444;
}

.page-live-dealer-games-guide__list-item::before {
  content: counter(item);
  position: absolute;
  left: 0;
  top: 0;
  background-color: #FFD700; /* Gold number background */
  color: #000080; /* Midnight Blue number text */
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: bold;
  font-size: 1.3em;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

.page-live-dealer-games-guide__list-item strong {
  color: #000080;
}

.page-live-dealer-games-guide__list-item a {
  color: #000080;
  text-decoration: underline;
}

.page-live-dealer-games-guide__list-item a:hover {
  color: #FFD700;
}

.page-live-dealer-games-guide__cta-section {
  background-color: #000080; /* Midnight Blue background */
  color: #ffffff;
  padding: 80px 20px;
  text-align: center;
}

.page-live-dealer-games-guide__cta-content .page-live-dealer-games-guide__section-title {
  color: #FFD700; /* Gold for CTA title */
  margin-bottom: 20px;
}

.page-live-dealer-games-guide__cta-content .page-live-dealer-games-guide__section-title::after {
  background-color: #ffffff;
}

.page-live-dealer-games-guide__cta-content .page-live-dealer-games-guide__section-text {
  color: #f0f0f0;
  margin-bottom: 40px;
}

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

.page-live-dealer-games-guide__cta-button--primary {
  background-color: #FFD700;
  color: #000080;
  border: 2px solid #FFD700;
}

.page-live-dealer-games-guide__cta-button--primary:hover {
  background-color: #e6c200;
  border-color: #e6c200;
}

.page-live-dealer-games-guide__cta-button--secondary {
  background-color: transparent;
  color: #FFD700;
  border: 2px solid #FFD700;
}

.page-live-dealer-games-guide__cta-button--secondary:hover {
  background-color: #FFD700;
  color: #000080;
}

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

@media (max-width: 768px) {
  .page-live-dealer-games-guide__hero-section {
    padding-top: var(--header-offset, 120px); /* Ensure space for fixed header on mobile */
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-live-dealer-games-guide__hero-title {
    font-size: 2.2em;
  }
  .page-live-dealer-games-guide__hero-description {
    font-size: 1.1em;
  }
  .page-live-dealer-games-guide__section-title {
    font-size: 1.8em;
  }
  .page-live-dealer-games-guide__section-text {
    font-size: 1em;
  }
  .page-live-dealer-games-guide__game-grid,
  .page-live-dealer-games-guide__features-grid {
    grid-template-columns: 1fr;
  }
  .page-live-dealer-games-guide__list-item {
    padding-left: 50px;
    font-size: 1em;
  }
  .page-live-dealer-games-guide__list-item::before {
    width: 35px;
    height: 35px;
    font-size: 1.1em;
  }
  .page-live-dealer-games-guide__container {
    padding: 0 15px;
  }
  /* Ensure images do not overflow on mobile */
  .page-live-dealer-games-guide img {
    max-width: 100%;
    height: auto;
  }
  .page-live-dealer-games-guide__card-image {
    height: 180px; /* Adjust height for smaller screens */
  }
}

@media (max-width: 480px) {
  .page-live-dealer-games-guide__hero-title {
    font-size: 1.8em;
  }
  .page-live-dealer-games-guide__hero-description {
    font-size: 0.95em;
  }
  .page-live-dealer-games-guide__cta-button {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-live-dealer-games-guide__section-title {
    font-size: 1.5em;
  }
  .page-live-dealer-games-guide__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
}