.page-live-baccarat {
  color: #333333; /* Dark text for light body background */
  font-family: Arial, sans-serif;
  line-height: 1.6;
  padding-top: var(--header-offset, 120px); /* Ensures content is not hidden by fixed header */
}

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

.page-live-baccarat__hero-section {
  background-color: #000000; /* Primary dark background */
  color: #FFFFFF; /* Light text for dark background */
  padding: 80px 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
}

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

.page-live-baccarat__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  line-height: 1.2;
  color: #FCBC45; /* Login color for emphasis */
}

.page-live-baccarat__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
}

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

.page-live-baccarat__button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, color 0.3s ease;
  min-width: 200px; /* Ensure button minimum width */
  text-align: center;
}

.page-live-baccarat__button--register {
  background-color: #FFFFFF;
  color: #000000;
  border: 2px solid #FFFFFF;
}

.page-live-baccarat__button--register:hover {
  background-color: #F0F0F0;
}

.page-live-baccarat__button--login {
  background-color: #FCBC45;
  color: #000000;
  border: 2px solid #FCBC45;
}

.page-live-baccarat__button--login:hover {
  background-color: #E0A83B;
}

.page-live-baccarat__button--large {
  padding: 18px 35px;
  font-size: 1.3em;
}

.page-live-baccarat__hero-image {
  width: 100%;
  max-width: 1000px;
  margin-top: 40px;
}

.page-live-baccarat__hero-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  min-width: 200px;
  min-height: 200px;
}

.page-live-baccarat__about-section,
.page-live-baccarat__how-to-play-section,
.page-live-baccarat__strategies-section,
.page-live-baccarat__promotions-section,
.page-live-baccarat__cta-section,
.page-live-baccarat__faq-section {
  padding: 60px 0;
  background-color: #FFFFFF;
}

.page-live-baccarat__section-title {
  font-size: 2.8em;
  text-align: center;
  margin-bottom: 20px;
  color: #000000;
}

.page-live-baccarat__section-description {
  font-size: 1.1em;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px auto;
  color: #555555;
}

.page-live-baccarat__about-grid,
.page-live-baccarat__strategy-grid,
.page-live-baccarat__promo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-live-baccarat__about-card,
.page-live-baccarat__strategy-card,
.page-live-baccarat__promo-card {
  background-color: #F8F8F8;
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.page-live-baccarat__about-card:hover,
.page-live-baccarat__strategy-card:hover,
.page-live-baccarat__promo-card:hover {
  transform: translateY(-10px);
}

.page-live-baccarat__about-card img,
.page-live-baccarat__strategy-card img,
.page-live-baccarat__promo-card img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
  min-width: 200px;
  min-height: 200px;
}

.page-live-baccarat__card-title {
  font-size: 1.5em;
  margin-bottom: 15px;
  color: #000000;
}

.page-live-baccarat__card-text {
  color: #666666;
  font-size: 1em;
}

.page-live-baccarat__steps-list {
  list-style: none;
  padding: 0;
  max-width: 800px;
  margin: 0 auto;
}

.page-live-baccarat__step-item {
  background-color: #F8F8F8;
  border-left: 5px solid #FCBC45;
  padding: 20px 30px;
  margin-bottom: 20px;
  border-radius: 8px;
}

.page-live-baccarat__step-title {
  font-size: 1.4em;
  color: #000000;
  margin-bottom: 10px;
}

.page-live-baccarat__step-text {
  color: #555555;
}

.page-live-baccarat__step-text a {
  color: #FCBC45;
  text-decoration: none;
  font-weight: bold;
}

.page-live-baccarat__step-text a:hover {
  text-decoration: underline;
}

.page-live-baccarat__button--play-now,
.page-live-baccarat__button--learn-more,
.page-live-baccarat__button--view-promo,
.page-live-baccarat__button--all-promos {
  background-color: #FCBC45;
  color: #000000;
  border: 2px solid #FCBC45;
  margin-top: 30px;
}

.page-live-baccarat__button--play-now:hover,
.page-live-baccarat__button--learn-more:hover,
.page-live-baccarat__button--view-promo:hover,
.page-live-baccarat__button--all-promos:hover {
  background-color: #E0A83B;
}

.page-live-baccarat__button--view-promo {
  margin-top: 20px;
  padding: 10px 20px;
  font-size: 1em;
  min-width: unset;
}

.page-live-baccarat__cta-section {
  background-color: #000000;
  color: #FFFFFF;
  text-align: center;
  padding: 80px 20px;
}

.page-live-baccarat__cta-section .page-live-baccarat__section-title {
  color: #FCBC45;
}

.page-live-baccarat__cta-section .page-live-baccarat__section-description {
  color: #F0F0F0;
}

.page-live-baccarat__cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-top: 40px;
  flex-wrap: wrap;
}

.page-live-baccarat__faq-section {
  background-color: #F0F0F0;
}

.page-live-baccarat__faq-item {
  background-color: #FFFFFF;
  border-radius: 8px;
  padding: 25px;
  margin-bottom: 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.page-live-baccarat__faq-question {
  font-size: 1.3em;
  color: #000000;
  margin-bottom: 10px;
}

.page-live-baccarat__faq-answer {
  color: #555555;
}

.page-live-baccarat__faq-answer a {
  color: #FCBC45;
  text-decoration: none;
  font-weight: bold;
}

.page-live-baccarat__faq-answer a:hover {
  text-decoration: underline;
}

@media (max-width: 992px) {
  .page-live-baccarat__hero-title {
    font-size: 2.8em;
  }
  .page-live-baccarat__section-title {
    font-size: 2.2em;
  }
}

@media (max-width: 768px) {
  .page-live-baccarat {
    padding-top: var(--header-offset, 120px);
  }
  .page-live-baccarat__hero-section {
    padding: 60px 20px;
  }
  .page-live-baccarat__hero-title {
    font-size: 2.2em;
  }
  .page-live-baccarat__hero-description {
    font-size: 1em;
  }
  .page-live-baccarat__hero-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-live-baccarat__button {
    width: 100%;
    max-width: 300px;
  }
  .page-live-baccarat__hero-image img,
  .page-live-baccarat__about-card img,
  .page-live-baccarat__strategy-card img,
  .page-live-baccarat__promo-card img {
    max-width: 100%;
    height: auto;
  }
  .page-live-baccarat__about-section,
  .page-live-baccarat__how-to-play-section,
  .page-live-baccarat__strategies-section,
  .page-live-baccarat__promotions-section,
  .page-live-baccarat__cta-section,
  .page-live-baccarat__faq-section {
    padding: 40px 0;
  }
  .page-live-baccarat__section-title {
    font-size: 1.8em;
  }
  .page-live-baccarat__section-description {
    font-size: 0.95em;
  }
  .page-live-baccarat__about-grid,
  .page-live-baccarat__strategy-grid,
  .page-live-baccarat__promo-grid {
    grid-template-columns: 1fr;
  }
  .page-live-baccarat__card-title {
    font-size: 1.3em;
  }
  .page-live-baccarat__step-title {
    font-size: 1.2em;
  }
  .page-live-baccarat__cta-buttons {
    flex-direction: column;
  }
  .page-live-baccarat__cta-buttons .page-live-baccarat__button {
    width: 100%;
    max-width: 300px;
  }
}

@media (max-width: 480px) {
  .page-live-baccarat__hero-title {
    font-size: 1.8em;
  }
  .page-live-baccarat__section-title {
    font-size: 1.6em;
  }
  .page-live-baccarat__button--large {
    font-size: 1.1em;
    padding: 15px 25px;
  }
}