.page-live-dealer-guide {
  color: #ffffff; /* Light text for dark body background */
  font-family: Arial, sans-serif;
  line-height: 1.6;
  padding-top: var(--header-offset, 120px); /* Ensure content is not hidden by fixed header */
}

.page-live-dealer-guide__hero-section {
  position: relative;
  overflow: hidden;
  color: #ffffff;
  text-align: center;
  padding: 0; /* Remove default padding as hero-content will handle it */
}

.page-live-dealer-guide__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  filter: brightness(0.5); /* Slightly darken image for text readability */
}

.page-live-dealer-guide__hero-container {
  position: relative;
}

.page-live-dealer-guide__hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 900px;
  padding: 20px;
  background: rgba(0, 0, 0, 0.5); /* Semi-transparent background for text */
  border-radius: 10px;
}

.page-live-dealer-guide__hero-title {
  font-size: 3.2em;
  margin-bottom: 15px;
  color: #FFD700; /* Main brand color */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.page-live-dealer-guide__hero-description {
  font-size: 1.3em;
  margin-bottom: 30px;
  color: #f0f0f0;
}

.page-live-dealer-guide__cta-button {
  display: inline-block;
  background-color: #FFD700; /* Main brand color */
  color: #121212; /* Dark text for gold button */
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
}

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

.page-live-dealer-guide__cta-button--secondary {
  background-color: #1E90FF; /* Auxiliary brand color */
  color: #ffffff;
}

.page-live-dealer-guide__cta-button--secondary:hover {
  background-color: #1a7ae6;
}

.page-live-dealer-guide__cta-button--large {
  padding: 20px 40px;
  font-size: 1.3em;
}

.page-live-dealer-guide__content-wrapper {
  max-width: 1000px;
  margin: 0 auto;
  padding: 40px 20px;
}

.page-live-dealer-guide__content-wrapper--center {
  text-align: center;
}

.page-live-dealer-guide__section-title {
  font-size: 2.5em;
  color: #FFD700; /* Main brand color */
  text-align: center;
  margin-bottom: 30px;
  padding-top: 20px;
}

.page-live-dealer-guide__text-content {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: #f0f0f0;
}

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

.page-live-dealer-guide__game-card {
  background: rgba(255, 255, 255, 0.08); /* Semi-transparent light background */
  border-radius: 10px;
  padding: 25px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

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

.page-live-dealer-guide__card-image {
  width: 100%;
  height: 200px; /* Fixed height for consistency */
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

.page-live-dealer-guide__card-title {
  font-size: 1.6em;
  color: #FFD700;
  margin-bottom: 10px;
}

.page-live-dealer-guide__card-text {
  font-size: 0.95em;
  color: #cccccc;
  margin-bottom: 20px;
}

.page-live-dealer-guide__card-button {
  display: inline-block;
  background-color: #1E90FF; /* Auxiliary brand color */
  color: #ffffff;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 0.9em;
  transition: background-color 0.3s ease;
}

.page-live-dealer-guide__card-button:hover {
  background-color: #1a7ae6;
}

.page-live-dealer-guide__step-list {
  list-style: none;
  padding: 0;
}

.page-live-dealer-guide__list-item {
  background: rgba(255, 255, 255, 0.05);
  border-left: 5px solid #FFD700;
  margin-bottom: 20px;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.page-live-dealer-guide__list-title {
  font-size: 1.4em;
  color: #FFD700;
  margin-bottom: 10px;
}

.page-live-dealer-guide__list-item p {
  color: #e0e0e0;
}

.page-live-dealer-guide__list-item a {
  color: #1E90FF;
  text-decoration: none;
  font-weight: bold;
}

.page-live-dealer-guide__list-item a:hover {
  text-decoration: underline;
}

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

.page-live-dealer-guide__strategy-item {
  background: rgba(30, 144, 255, 0.1); /* Light blue tint */
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: background-color 0.3s ease;
}

.page-live-dealer-guide__strategy-item:hover {
  background-color: rgba(30, 144, 255, 0.2);
}

.page-live-dealer-guide__strategy-title {
  font-size: 1.5em;
  color: #FFD700;
  margin-bottom: 10px;
}

.page-live-dealer-guide__strategy-text {
  color: #e0e0e0;
  font-size: 1em;
}

.page-live-dealer-guide__feature-list {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  margin-top: 30px;
}

.page-live-dealer-guide__feature-list .page-live-dealer-guide__list-item {
  background: rgba(255, 255, 255, 0.08);
  border-left-color: #1E90FF;
}

.page-live-dealer-guide__feature-image {
  width: 100%;
  max-width: 600px;
  height: auto;
  object-fit: cover;
  border-radius: 8px;
  margin-top: 20px;
  margin-bottom: 20px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.page-live-dealer-guide__faq-section {
  margin-top: 50px;
}

.page-live-dealer-guide__faq-item {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  margin-bottom: 15px;
  padding: 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.page-live-dealer-guide__faq-question {
  font-size: 1.3em;
  color: #FFD700;
  margin-bottom: 10px;
  cursor: pointer;
  position: relative;
  padding-right: 30px;
}

.page-live-dealer-guide__faq-question::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 0;
  font-size: 1.2em;
  transition: transform 0.3s ease;
}

.page-live-dealer-guide__faq-question.active::after {
  content: '-';
  transform: rotate(180deg);
}

.page-live-dealer-guide__faq-answer {
  font-size: 1em;
  color: #e0e0e0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease-out, opacity 0.5s ease-out;
  opacity: 0;
}

.page-live-dealer-guide__faq-answer.active {
  max-height: 200px; /* Adjust as needed */
  opacity: 1;
}

.page-live-dealer-guide__final-cta-section {
  margin-top: 60px;
  padding-bottom: 60px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-live-dealer-guide__hero-title {
    font-size: 2.8em;
  }
  .page-live-dealer-guide__hero-description {
    font-size: 1.2em;
  }
  .page-live-dealer-guide__section-title {
    font-size: 2.2em;
  }
}

@media (max-width: 768px) {
  .page-live-dealer-guide__hero-title {
    font-size: 2em;
  }
  .page-live-dealer-guide__hero-description {
    font-size: 1em;
  }
  .page-live-dealer-guide__hero-content {
    max-width: 90%;
  }
  .page-live-dealer-guide__cta-button {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-live-dealer-guide__cta-button--large {
    padding: 15px 30px;
    font-size: 1.1em;
  }
  .page-live-dealer-guide__section-title {
    font-size: 1.8em;
  }
  .page-live-dealer-guide__text-content, .page-live-dealer-guide__card-text, .page-live-dealer-guide__strategy-text, .page-live-dealer-guide__list-item p, .page-live-dealer-guide__faq-answer {
    font-size: 0.95em;
  }
  .page-live-dealer-guide__game-card-grid, .page-live-dealer-guide__strategy-grid {
    grid-template-columns: 1fr;
  }
  .page-live-dealer-guide__card-image, .page-live-dealer-guide__feature-image {
    max-width: 100%;
    height: auto;
  }
  /* Mobile content area images must not cause horizontal scroll */
  .page-live-dealer-guide img {
    max-width: 100%;
    height: auto;
  }
  .page-live-dealer-guide {
    overflow-x: hidden;
  }
}

@media (max-width: 480px) {
  .page-live-dealer-guide__hero-title {
    font-size: 1.8em;
  }
  .page-live-dealer-guide__hero-description {
    font-size: 0.9em;
  }
  .page-live-dealer-guide__cta-button {
    padding: 10px 20px;
    font-size: 0.9em;
  }
  .page-live-dealer-guide__section-title {
    font-size: 1.6em;
  }
  .page-live-dealer-guide__card-title {
    font-size: 1.4em;
  }
  .page-live-dealer-guide__list-title {
    font-size: 1.2em;
  }
  .page-live-dealer-guide__faq-question {
    font-size: 1.1em;
  }
}