/* style/live-baccarat.css */
.page-live-baccarat {
  font-family: Arial, sans-serif;
  color: #333333;
  line-height: 1.6;
  padding-top: var(--header-offset, 120px); /* Ensure content is not hidden by fixed header */
  background-color: #FFFFFF;
}

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

/* Hero Section */
.page-live-baccarat__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 20px;
  background-color: #000000; /* Dark background for hero */
  color: #FFFFFF;
  overflow: hidden;
}

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

.page-live-baccarat__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
}

.page-live-baccarat__hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
}

.page-live-baccarat__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #FFFFFF;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.page-live-baccarat__hero-description {
  font-size: 1.2em;
  margin-bottom: 40px;
  color: #F0F0F0;
}

.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;
}

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

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

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

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

/* General Section Styling */
.page-live-baccarat__introduction-section,
.page-live-baccarat__how-to-play-section,
.page-live-baccarat__strategies-section,
.page-live-baccarat__faq-section,
.page-live-baccarat__cta-section {
  padding: 60px 0;
  background-color: #FFFFFF;
  text-align: center;
}

.page-live-baccarat__section-title {
  font-size: 2.8em;
  color: #000000;
  margin-bottom: 30px;
  font-weight: bold;
}

.page-live-baccarat__subtitle {
  font-size: 1.8em;
  color: #000000;
  margin-top: 40px;
  margin-bottom: 20px;
}

.page-live-baccarat__paragraph {
  font-size: 1.1em;
  color: #333333;
  margin-bottom: 20px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  text-align: left;
}

.page-live-baccarat__image-content {
  width: 100%;
  height: auto;
  max-width: 800px;
  border-radius: 10px;
  margin: 30px auto;
  display: block;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.page-live-baccarat__list {
  list-style: none;
  padding: 0;
  margin: 20px auto 40px auto;
  max-width: 900px;
  text-align: left;
}

.page-live-baccarat__list--ordered {
  list-style: decimal;
  padding-left: 20px;
}

.page-live-baccarat__list-item {
  font-size: 1.1em;
  color: #333333;
  margin-bottom: 15px;
  position: relative;
  padding-left: 30px;
}

.page-live-baccarat__list-item::before {
  content: '✓';
  color: #FCBC45;
  font-weight: bold;
  position: absolute;
  left: 0;
  top: 0;
}

.page-live-baccarat__list--ordered .page-live-baccarat__list-item::before {
  content: none;
}

.page-live-baccarat__button--cta {
  background-color: #FCBC45;
  color: #000000;
  border: 2px solid #FCBC45;
  margin-top: 30px;
}

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

/* FAQ Section */
.page-live-baccarat__faq-section {
  background-color: #F8F8F8;
}

.page-live-baccarat__faq-item {
  background-color: #FFFFFF;
  border-radius: 10px;
  padding: 25px;
  margin-bottom: 20px;
  text-align: left;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

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

.page-live-baccarat__faq-answer {
  font-size: 1.05em;
  color: #555555;
}

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

.page-live-baccarat__text-link:hover {
  text-decoration: underline;
}

/* CTA Section */
.page-live-baccarat__cta-section {
  background-color: #000000;
  color: #FFFFFF;
}

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

.page-live-baccarat__cta-section .page-live-baccarat__paragraph {
  color: #F0F0F0;
  text-align: center;
}

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

.page-live-baccarat__button--register-large {
  background-color: #FFFFFF;
  color: #000000;
  border: 2px solid #FFFFFF;
  padding: 18px 35px;
  font-size: 1.2em;
}

.page-live-baccarat__button--register-large:hover {
  background-color: #E0E0E0;
  transform: translateY(-2px);
}

.page-live-baccarat__button--login-large {
  background-color: #FCBC45;
  color: #000000;
  border: 2px solid #FCBC45;
  padding: 18px 35px;
  font-size: 1.2em;
}

.page-live-baccarat__button--login-large:hover {
  background-color: #E0A73A;
  transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-live-baccarat__hero-title {
    font-size: 3em;
  }
  .page-live-baccarat__section-title {
    font-size: 2.2em;
  }
  .page-live-baccarat__subtitle {
    font-size: 1.6em;
  }
}

@media (max-width: 768px) {
  .page-live-baccarat__hero-section {
    padding: 60px 15px;
  }
  .page-live-baccarat__hero-title {
    font-size: 2.5em;
  }
  .page-live-baccarat__hero-description {
    font-size: 1em;
  }
  .page-live-baccarat__hero-actions {
    flex-direction: column;
    gap: 15px;
  }
  .page-live-baccarat__button {
    width: 100%;
    max-width: 280px;
  }
  .page-live-baccarat__section-title {
    font-size: 1.8em;
  }
  .page-live-baccarat__subtitle {
    font-size: 1.4em;
  }
  .page-live-baccarat__paragraph,
  .page-live-baccarat__list-item,
  .page-live-baccarat__faq-question,
  .page-live-baccarat__faq-answer {
    font-size: 0.95em;
  }
  .page-live-baccarat__image-content {
    max-width: 100%;
    height: auto;
  }
  .page-live-baccarat__cta-actions {
    flex-direction: column;
    gap: 15px;
  }
  .page-live-baccarat__button--register-large,
  .page-live-baccarat__button--login-large {
    width: 100%;
    max-width: 280px;
  }
  .page-live-baccarat__container {
    padding: 0 15px;
  }
  /* Ensure images in content sections are responsive and do not overflow */
  .page-live-baccarat img {
    max-width: 100%;
    height: auto;
  }
}

@media (max-width: 480px) {
  .page-live-baccarat__hero-title {
    font-size: 2em;
  }
  .page-live-baccarat__section-title {
    font-size: 1.6em;
  }
  .page-live-baccarat__subtitle {
    font-size: 1.2em;
  }
  .page-live-baccarat__button {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-live-baccarat__button--register-large,
  .page-live-baccarat__button--login-large {
    padding: 15px 30px;
    font-size: 1.1em;
  }
}