.page-live-baccarat {
  color: #f0f0f0; /* Light text for potentially dark shared body background, ensuring contrast. */
  background-color: #1a1a1a; /* A dark background for the page content, contrasting with the light text */
}

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

.page-live-baccarat__hero-section {
  position: relative;
  padding-top: var(--header-offset, 120px); /* Ensure content is not hidden by fixed header */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  min-height: 70vh;
  padding-bottom: 60px;
}

.page-live-baccarat__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
}

.page-live-baccarat__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.4); /* Darken image for text readability, no color change */
}

.page-live-baccarat__hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  padding: 40px;
  background: rgba(0, 0, 0, 0.6); /* Semi-transparent dark background for text readability */
  border-radius: 12px;
}

.page-live-baccarat__hero-title {
  font-size: 3.5em;
  color: #FFD700; /* Gold main color */
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.page-live-baccarat__hero-description {
  font-size: 1.3em;
  color: #f0f0f0;
  margin-bottom: 30px;
  line-height: 1.6;
}

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

.page-live-baccarat__button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  font-size: 1.1em;
  font-weight: bold;
  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.2s ease;
  border: none;
  cursor: pointer;
}

.page-live-baccarat__button--primary {
  background-color: #FFD700; /* Gold main color */
  color: #1a1a1a; /* Dark text for gold button */
}

.page-live-baccarat__button--primary:hover {
  background-color: #e6c200;
  transform: translateY(-2px);
}

.page-live-baccarat__button--secondary {
  background-color: #8B0000; /* Wine red accent color */
  color: #ffffff;
  border: 2px solid #FFD700;
}

.page-live-baccarat__button--secondary:hover {
  background-color: #6e0000;
  transform: translateY(-2px);
}

.page-live-baccarat__section-title {
  font-size: 2.8em;
  color: #FFD700;
  text-align: center;
  margin-bottom: 40px;
  padding-top: 60px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.page-live-baccarat__section-intro {
  font-size: 1.2em;
  color: #ccc;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 60px;
  line-height: 1.7;
}

.page-live-baccarat__why-choose-section,
.page-live-baccarat__how-to-play-section,
.page-live-baccarat__strategies-section,
.page-live-baccarat__responsible-gaming-section,
.page-live-baccarat__faq-section,
.page-live-baccarat__cta-final-section {
  padding: 80px 0;
  background-color: #1a1a1a;
}

.page-live-baccarat__why-choose-section {
  background-color: #222;
}

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

.page-live-baccarat__feature-card {
  background-color: #2c2c2c;
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #444;
}

.page-live-baccarat__feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.6);
}

.page-live-baccarat__feature-icon {
  width: 100%; /* Ensure images are large and responsive */
  height: auto;
  max-width: 400px; /* Example size, ensuring >= 200px */
  min-width: 200px;
  min-height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin: 0 auto 20px;
  display: block;
}

.page-live-baccarat__feature-title {
  font-size: 1.8em;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-live-baccarat__feature-description {
  font-size: 1em;
  color: #ccc;
  line-height: 1.6;
}

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

.page-live-baccarat__step-card {
  background-color: #2c2c2c;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
  border-left: 5px solid #FFD700;
}

.page-live-baccarat__step-title {
  font-size: 1.6em;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-live-baccarat__step-description {
  font-size: 1em;
  color: #ccc;
  line-height: 1.6;
}

.page-live-baccarat__gameplay-image {
  width: 100%;
  height: auto;
  max-width: 800px; /* Example size, ensuring >= 200px */
  min-width: 200px;
  min-height: 200px;
  object-fit: cover;
  border-radius: 12px;
  margin: 60px auto 0;
  display: block;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
}

.page-live-baccarat__strategy-list {
  list-style: none;
  padding: 0;
  margin-top: 50px;
  display: grid;
  gap: 25px;
}

.page-live-baccarat__strategy-item {
  background-color: #2c2c2c;
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  border-right: 4px solid #8B0000;
}

.page-live-baccarat__strategy-heading {
  font-size: 1.5em;
  color: #FFD700;
  margin-bottom: 10px;
}

.page-live-baccarat__strategy-description {
  font-size: 1em;
  color: #ccc;
  line-height: 1.6;
}

.page-live-baccarat__cta-box {
  background-color: #8B0000;
  border-radius: 12px;
  padding: 40px;
  text-align: center;
  margin-top: 60px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
  border: 2px solid #FFD700;
}

.page-live-baccarat__cta-title {
  font-size: 2.2em;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-live-baccarat__cta-description {
  font-size: 1.1em;
  color: #fff;
  margin-bottom: 30px;
  line-height: 1.6;
}

.page-live-baccarat__responsible-list {
  list-style: none;
  padding: 0;
  margin-top: 50px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.page-live-baccarat__responsible-item {
  background-color: #2c2c2c;
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  text-align: center;
  border-bottom: 5px solid #FFD700;
}

.page-live-baccarat__responsible-heading {
  font-size: 1.6em;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-live-baccarat__responsible-description {
  font-size: 1em;
  color: #ccc;
  line-height: 1.6;
}

.page-live-baccarat__responsible-image {
  width: 100%;
  height: auto;
  max-width: 800px; /* Example size, ensuring >= 200px */
  min-width: 200px;
  min-height: 200px;
  object-fit: cover;
  border-radius: 12px;
  margin: 60px auto 0;
  display: block;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
}

.page-live-baccarat__faq-list {
  margin-top: 50px;
}

.page-live-baccarat__faq-item {
  background-color: #2c2c2c;
  border-radius: 10px;
  margin-bottom: 20px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  overflow: hidden;
}

.page-live-baccarat__faq-question {
  font-size: 1.4em;
  color: #FFD700;
  padding: 20px 30px;
  cursor: pointer;
  position: relative;
  margin: 0;
  border-bottom: 1px solid #333;
}

.page-live-baccarat__faq-question::after {
  content: '+';
  position: absolute;
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5em;
  color: #FFD700;
  transition: transform 0.3s ease;
}

.page-live-baccarat__faq-item.active .page-live-baccarat__faq-question::after {
  content: '-';
}

.page-live-baccarat__faq-answer {
  padding: 0 30px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease-out;
  background-color: #333;
}

.page-live-baccarat__faq-answer p {
  font-size: 1em;
  color: #ccc;
  line-height: 1.6;
  padding-bottom: 20px;
}

.page-live-baccarat__link {
  color: #FFD700;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-live-baccarat__link:hover {
  color: #e6c200;
  text-decoration: underline;
}

.page-live-baccarat__cta-final-section {
  background: linear-gradient(135deg, #8B0000, #4d0000);
  text-align: center;
  padding: 100px 0;
}

.page-live-baccarat__cta-final-content {
  max-width: 900px;
}

.page-live-baccarat__cta-final-title {
  font-size: 3em;
  color: #FFD700;
  margin-bottom: 25px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.page-live-baccarat__cta-final-description {
  font-size: 1.4em;
  color: #fff;
  margin-bottom: 40px;
  line-height: 1.7;
}

.page-live-baccarat__button--large {
  padding: 18px 40px;
  font-size: 1.3em;
  border-radius: 10px;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .page-live-baccarat__hero-title {
    font-size: 2.8em;
  }
  .page-live-baccarat__hero-description {
    font-size: 1.1em;
  }
  .page-live-baccarat__section-title {
    font-size: 2.2em;
  }
}

@media (max-width: 768px) {
  .page-live-baccarat__hero-section {
    padding-top: var(--header-offset, 120px); /* Ensure content is not hidden by fixed header */
    min-height: 60vh;
  }
  .page-live-baccarat__hero-content {
    padding: 25px;
  }
  .page-live-baccarat__hero-title {
    font-size: 2em;
  }
  .page-live-baccarat__hero-description {
    font-size: 1em;
  }
  .page-live-baccarat__hero-actions {
    flex-direction: column;
    gap: 15px;
  }
  .page-live-baccarat__button {
    width: 100%;
    padding: 12px 20px;
  }
  .page-live-baccarat__section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
  }
  .page-live-baccarat__section-intro {
    font-size: 1em;
    margin-bottom: 40px;
  }
  .page-live-baccarat__features-grid,
  .page-live-baccarat__play-steps,
  .page-live-baccarat__responsible-list {
    grid-template-columns: 1fr;
  }
  .page-live-baccarat__feature-card,
  .page-live-baccarat__step-card,
  .page-live-baccarat__strategy-item,
  .page-live-baccarat__responsible-item {
    padding: 20px;
  }
  .page-live-baccarat__feature-title,
  .page-live-baccarat__step-title,
  .page-live-baccarat__strategy-heading,
  .page-live-baccarat__responsible-heading {
    font-size: 1.4em;
  }
  .page-live-baccarat__cta-title {
    font-size: 1.8em;
  }
  .page-live-baccarat__cta-description {
    font-size: 1em;
  }
  .page-live-baccarat__cta-final-title {
    font-size: 2.2em;
  }
  .page-live-baccarat__cta-final-description {
    font-size: 1.1em;
  }
  .page-live-baccarat__button--large {
    font-size: 1.1em;
    padding: 15px 30px;
  }
  /* Mobile content area image constraints */
  .page-live-baccarat img {
    max-width: 100%;
    height: auto;
  }
}

@media (max-width: 480px) {
  .page-live-baccarat__hero-title {
    font-size: 1.6em;
  }
  .page-live-baccarat__hero-description {
    font-size: 0.9em;
  }
  .page-live-baccarat__hero-content {
    padding: 20px;
  }
  .page-live-baccarat__section-title {
    font-size: 1.6em;
  }
  .page-live-baccarat__cta-final-title {
    font-size: 1.8em;
  }
  .page-live-baccarat__cta-final-description {
    font-size: 1em;
  }
}