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

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

.page-live-baccarat__hero-section {
  background: linear-gradient(135deg, rgba(26, 26, 26, 0.9), rgba(0, 0, 0, 0.9));
  padding: 80px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 600px;
}

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

.page-live-baccarat__hero-title {
  font-size: 3.5em;
  color: #FFD700;
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 0 0 15px rgba(255, 215, 0, 0.7);
}

.page-live-baccarat__hero-description {
  font-size: 1.3em;
  color: #f0f0f0;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

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

.page-live-baccarat__hero-button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.page-live-baccarat__hero-button--primary {
  background-color: #FFD700;
  color: #1A1A1A;
}

.page-live-baccarat__hero-button--primary:hover {
  background-color: #e6c200;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.page-live-baccarat__hero-button--secondary {
  background-color: #1A1A1A;
  color: #FFD700;
  border: 2px solid #FFD700;
}

.page-live-baccarat__hero-button--secondary:hover {
  background-color: #333333;
  color: #FFD700;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

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

.page-live-baccarat__hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.8);
}

.page-live-baccarat__introduction-section,
.page-live-baccarat__rules-section,
.page-live-baccarat__strategies-section,
.page-live-baccarat__roadmaps-section,
.page-live-baccarat__management-section,
.page-live-baccarat__bonuses-section,
.page-live-baccarat__faq-section,
.page-live-baccarat__cta-section {
  padding: 60px 0;
  background-color: #1A1A1A;
  border-bottom: 1px solid rgba(255, 215, 0, 0.1);
}

.page-live-baccarat__introduction-section {
  background-color: #0D0D0D; /* Match body background for continuity */
}

.page-live-baccarat__section-title {
  font-size: 2.5em;
  color: #FFD700;
  text-align: center;
  margin-bottom: 40px;
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.page-live-baccarat__sub-title {
  font-size: 1.8em;
  color: #FFD700;
  margin-top: 30px;
  margin-bottom: 15px;
  border-left: 5px solid #FFD700;
  padding-left: 15px;
}

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

.page-live-baccarat__list {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}

.page-live-baccarat__list-item {
  background-color: rgba(255, 215, 0, 0.05);
  border-left: 3px solid #FFD700;
  padding: 15px 20px;
  margin-bottom: 10px;
  border-radius: 5px;
  font-size: 1.1em;
  color: #ffffff;
}

.page-live-baccarat__list-item strong {
  color: #FFD700;
}

.page-live-baccarat__image--centered {
  display: block;
  margin: 40px auto;
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
}

.page-live-baccarat__faq-item {
  background-color: rgba(255, 215, 0, 0.08);
  border-radius: 10px;
  padding: 25px;
  margin-bottom: 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-live-baccarat__faq-question {
  font-size: 1.4em;
  color: #FFD700;
  margin-bottom: 10px;
  cursor: pointer;
}

.page-live-baccarat__faq-answer {
  font-size: 1.1em;
  color: #f0f0f0;
  display: none; /* Hidden by default, toggled by JS */
}

.page-live-baccarat__faq-question.active + .page-live-baccarat__faq-answer {
  display: block;
}

.page-live-baccarat__button {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1em;
  transition: all 0.3s ease;
  margin-top: 20px;
  text-align: center;
}

.page-live-baccarat__button--gold {
  background-color: #FFD700;
  color: #1A1A1A;
}

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

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

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

.page-live-baccarat__cta-buttons .page-live-baccarat__button {
  padding: 15px 30px;
  font-size: 1.1em;
  border-radius: 8px;
}

.page-live-baccarat__cta-buttons .page-live-baccarat__button--primary {
  background-color: #FFD700;
  color: #1A1A1A;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.page-live-baccarat__cta-buttons .page-live-baccarat__button--primary:hover {
  background-color: #e6c200;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.page-live-baccarat__cta-buttons .page-live-baccarat__button--secondary {
  background-color: #1A1A1A;
  color: #FFD700;
  border: 2px solid #FFD700;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.page-live-baccarat__cta-buttons .page-live-baccarat__button--secondary:hover {
  background-color: #333333;
  color: #FFD700;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

/* Responsive Design */
@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: 2em;
  }
  .page-live-baccarat__sub-title {
    font-size: 1.6em;
  }
}

@media (max-width: 768px) {
  .page-live-baccarat__hero-title {
    font-size: 2.2em;
  }
  .page-live-baccarat__hero-description {
    font-size: 1em;
  }
  .page-live-baccarat__hero-section {
    padding: 60px 15px;
    min-height: 500px;
  }
  .page-live-baccarat__hero-actions {
    flex-direction: column;
    gap: 15px;
  }
  .page-live-baccarat__hero-button {
    width: 80%;
    max-width: 300px;
  }
  .page-live-baccarat__section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
  }
  .page-live-baccarat__sub-title {
    font-size: 1.4em;
  }
  .page-live-baccarat__text-content,
  .page-live-baccarat__list-item,
  .page-live-baccarat__faq-question,
  .page-live-baccarat__faq-answer {
    font-size: 0.95em;
  }
  .page-live-baccarat__introduction-section,
  .page-live-baccarat__rules-section,
  .page-live-baccarat__strategies-section,
  .page-live-baccarat__roadmaps-section,
  .page-live-baccarat__management-section,
  .page-live-baccarat__bonuses-section,
  .page-live-baccarat__faq-section,
  .page-live-baccarat__cta-section {
    padding: 40px 0;
  }
  .page-live-baccarat__container {
    padding: 0 15px;
  }
  .page-live-baccarat__image--centered {
    max-width: 100%;
    height: auto;
  }
  /* Content area images must not be smaller than 200px, but responsive */
  .page-live-baccarat img {
    max-width: 100%;
    height: auto;
  }
  .page-live-baccarat__cta-buttons .page-live-baccarat__button {
    width: 80%;
    max-width: 300px;
  }
}

@media (max-width: 480px) {
  .page-live-baccarat__hero-title {
    font-size: 1.8em;
  }
  .page-live-baccarat__hero-description {
    font-size: 0.9em;
  }
  .page-live-baccarat__hero-button {
    padding: 12px 20px;
    font-size: 1em;
  }
  .page-live-baccarat__section-title {
    font-size: 1.5em;
  }
  .page-live-baccarat__sub-title {
    font-size: 1.2em;
  }
}