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

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

.page-live-baccarat__hero-section {
  position: relative;
  overflow: hidden;
  color: #ffffff;
  padding: 0;
  margin-bottom: 40px;
}

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

.page-live-baccarat__hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  width: 90%;
  max-width: 800px;
  z-index: 10;
}

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

.page-live-baccarat__hero-description {
  font-size: 1.3em;
  margin-bottom: 30px;
  color: #f0f0f0;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.6);
}

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

.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, transform 0.2s ease;
  white-space: nowrap;
}

.page-live-baccarat__button--primary {
  background-color: #FFD700; /* Accent color */
  color: #0A2E36; /* Main color as text */
  border: 2px solid #FFD700;
}

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

.page-live-baccarat__button--secondary {
  background-color: transparent;
  color: #FFD700;
  border: 2px solid #FFD700;
}

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

.page-live-baccarat__section-title {
  font-size: 2.5em;
  color: #0A2E36; /* Main color */
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
}

.page-live-baccarat__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #FFD700; /* Accent color */
  border-radius: 2px;
}

.page-live-baccarat__sub-title {
  font-size: 1.8em;
  color: #0A2E36;
  margin-top: 30px;
  margin-bottom: 15px;
}

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

.page-live-baccarat__introduction-section,
.page-live-baccarat__why-choose-section,
.page-live-baccarat__gameplay-guide,
.page-live-baccarat__strategies-section,
.page-live-baccarat__promotions-section,
.page-live-baccarat__login-register-section,
.page-live-baccarat__mobile-section,
.page-live-baccarat__security-section,
.page-live-baccarat__faq-section,
.page-live-baccarat__cta-section {
  padding: 60px 0;
  margin-bottom: 20px;
}

.page-live-baccarat__why-choose-section {
  background-color: rgba(10, 46, 54, 0.05); /* Light tint of main color */
}

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

.page-live-baccarat__feature-card,
.page-live-baccarat__promo-card,
.page-live-baccarat__step-card {
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-live-baccarat__feature-card:hover,
.page-live-baccarat__promo-card:hover,
.page-live-baccarat__step-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

.page-live-baccarat__feature-image,
.page-live-baccarat__promo-image {
  width: 100%;
  height: 250px; /* Fixed height for consistency */
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  filter: none; /* Ensure no CSS filter changes image color */
}

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

.page-live-baccarat__card-description {
  font-size: 1em;
  color: #555555;
  margin-bottom: 20px;
}

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

.page-live-baccarat__list-item {
  background-color: rgba(255, 215, 0, 0.1); /* Light tint of accent color */
  border-left: 5px solid #FFD700;
  padding: 15px 20px;
  margin-bottom: 10px;
  border-radius: 8px;
  font-size: 1.05em;
  color: #333333;
}

.page-live-baccarat__numbered-list .page-live-baccarat__list-item {
  counter-increment: list-counter;
  background-color: rgba(10, 46, 54, 0.05);
  border-left: 5px solid #0A2E36;
}

.page-live-baccarat__numbered-list .page-live-baccarat__list-item::before {
  content: counter(list-counter) ". ";
  font-weight: bold;
  color: #0A2E36;
  margin-right: 10px;
}

.page-live-baccarat__security-list .page-live-baccarat__list-item {
  border-left: 5px solid #FFD700;
  background-color: rgba(255, 215, 0, 0.1);
}

.page-live-baccarat__button--tertiary {
  background-color: #0A2E36;
  color: #ffffff;
  border: 2px solid #0A2E36;
  margin-top: 20px;
}

.page-live-baccarat__button--tertiary:hover {
  background-color: #1a4a55;
  transform: translateY(-2px);
}

.page-live-baccarat__strategy-image,
.page-live-baccarat__mobile-image {
  width: 100%;
  max-width: 800px;
  height: auto;
  display: block;
  margin: 30px auto;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  filter: none; /* Ensure no CSS filter changes image color */
}

.page-live-baccarat__button--small {
  padding: 10px 20px;
  font-size: 0.9em;
  border-radius: 6px;
  background-color: #0A2E36;
  color: #FFD700;
  border: none;
}

.page-live-baccarat__button--small:hover {
  background-color: #1a4a55;
  transform: translateY(-2px);
}

.page-live-baccarat__button--register,
.page-live-baccarat__button--login,
.page-live-baccarat__button--deposit,
.page-live-baccarat__button--download,
.page-live-baccarat__button--play-mobile {
  background-color: #FFD700;
  color: #0A2E36;
  border: 2px solid #FFD700;
  margin-top: 15px;
}

.page-live-baccarat__button--register:hover,
.page-live-baccarat__button--login:hover,
.page-live-baccarat__button--deposit:hover,
.page-live-baccarat__button--download:hover,
.page-live-baccarat__button--play-mobile:hover {
  background-color: #e6c200;
  transform: translateY(-2px);
}

.page-live-baccarat__faq-item {
  background-color: #ffffff;
  border: 1px solid #eeeeee;
  border-radius: 8px;
  margin-bottom: 15px;
  padding: 20px;
}

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

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

.page-live-baccarat__cta-section {
  text-align: center;
  background-color: #0A2E36;
  color: #ffffff;
  padding: 80px 0;
  margin-bottom: 0; /* No margin at the bottom before footer */
}

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

.page-live-baccarat__cta-section .page-live-baccarat__text-content {
  color: #f0f0f0;
  max-width: 800px;
  margin: 0 auto 40px auto;
}

.page-live-baccarat__cta-section .page-live-baccarat__button {
  margin: 0 10px;
}

/* 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;
  }
}

@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-actions {
    flex-direction: column;
    gap: 15px;
  }
  .page-live-baccarat__button {
    width: 80%;
    max-width: 300px;
  }
  .page-live-baccarat__section-title {
    font-size: 1.8em;
  }
  .page-live-baccarat__sub-title {
    font-size: 1.5em;
  }
  .page-live-baccarat__text-content,
  .page-live-baccarat__list-item,
  .page-live-baccarat__card-description,
  .page-live-baccarat__faq-answer {
    font-size: 0.95em;
  }
  .page-live-baccarat__features-grid,
  .page-live-baccarat__promo-grid,
  .page-live-baccarat__steps-grid {
    grid-template-columns: 1fr;
  }
  .page-live-baccarat__feature-image,
  .page-live-baccarat__promo-image,
  .page-live-baccarat__strategy-image,
  .page-live-baccarat__mobile-image {
    max-width: 100%;
    height: auto;
  }
  .page-live-baccarat__container {
    padding: 0 15px;
  }
  .page-live-baccarat {
    overflow-x: hidden;
  }
}

@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__button {
    width: 90%;
    padding: 12px 20px;
    font-size: 1em;
  }
  .page-live-baccarat__section-title {
    font-size: 1.6em;
  }
  .page-live-baccarat__sub-title {
    font-size: 1.3em;
  }
  .page-live-baccarat__card-title {
    font-size: 1.3em;
  }
  .page-live-baccarat__faq-question {
    font-size: 1.1em;
  }
}