.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;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 20px;
  overflow: hidden;
  background-color: #000000; /* Main color as background for hero text */
  color: #FFFFFF; /* White text for dark background */
}

.page-live-baccarat__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  object-fit: cover;
}

.page-live-baccarat__hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.4; /* Slightly dim the background image for text readability */
}

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

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

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

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

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

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

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

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

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

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

.page-live-baccarat__section-text {
  font-size: 1.1em;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 50px auto;
  color: #333333;
}

.page-live-baccarat__about-section,
.page-live-baccarat__how-to-play-section,
.page-live-baccarat__why-choose-section,
.page-live-baccarat__promo-section,
.page-live-baccarat__faq-section,
.page-live-baccarat__cta-section {
  padding: 80px 0;
  background-color: #FFFFFF; /* Light background for content sections */
}

.page-live-baccarat__about-section {
  background-color: #f8f8f8;
}

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

.page-live-baccarat__feature-item,
.page-live-baccarat__benefit-item {
  background-color: #FFFFFF;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease;
}

.page-live-baccarat__feature-item:hover,
.page-live-baccarat__benefit-item:hover {
  transform: translateY(-10px);
}

.page-live-baccarat__feature-item img,
.page-live-baccarat__benefit-item img {
  width: 100%;
  height: auto;
  max-height: 250px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  min-width: 200px; /* Enforce minimum size */
  min-height: 200px; /* Enforce minimum size */
}

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

.page-live-baccarat__feature-description,
.page-live-baccarat__benefit-description {
  font-size: 1em;
  color: #555555;
}

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

.page-live-baccarat__steps-list li {
  background-color: #f8f8f8;
  border-left: 5px solid #FCBC45;
  padding: 25px;
  border-radius: 8px;
  position: relative;
  text-align: left;
}

.page-live-baccarat__step-number {
  position: absolute;
  top: -15px;
  left: 20px;
  background-color: #FCBC45;
  color: #000000;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.2em;
}

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

.page-live-baccarat__steps-list p {
  color: #555555;
}

.page-live-baccarat__button--strategy {
  background-color: #000000;
  color: #FCBC45;
  border: 2px solid #000000;
  margin-top: 60px;
  display: block;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

.page-live-baccarat__button--strategy:hover {
  background-color: #FCBC45;
  color: #000000;
  border-color: #FCBC45;
}

.page-live-baccarat__promo-section {
  background-color: #000000; /* Dark background for promo section */
  color: #FFFFFF;
  text-align: center;
}

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

.page-live-baccarat__promo-section .page-live-baccarat__section-text {
  color: #f0f0f0;
}

.page-live-baccarat__button--promo {
  background-color: #FCBC45;
  color: #000000;
  border: 2px solid #FCBC45;
  margin: 20px 10px;
}

.page-live-baccarat__button--promo:hover {
  background-color: transparent;
  color: #FCBC45;
}

.page-live-baccarat__button--join {
  background-color: #FFFFFF;
  color: #000000;
  border: 2px solid #FFFFFF;
  margin: 20px 10px;
}

.page-live-baccarat__button--join:hover {
  background-color: transparent;
  color: #FFFFFF;
}

.page-live-baccarat__faq-item {
  background-color: #f8f8f8;
  border-radius: 8px;
  padding: 25px;
  margin-bottom: 20px;
  text-align: left;
}

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

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

.page-live-baccarat__button--faq {
  background-color: #000000;
  color: #FCBC45;
  border: 2px solid #000000;
  margin-top: 40px;
  display: block;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

.page-live-baccarat__button--faq:hover {
  background-color: #FCBC45;
  color: #000000;
  border-color: #FCBC45;
}

.page-live-baccarat__cta-section {
  background-color: #FCBC45; /* Login color for CTA background */
  color: #000000;
  text-align: center;
}

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

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

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

.page-live-baccarat__button--play-now:hover {
  background-color: transparent;
  color: #000000;
  border-color: #000000;
}

/* 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-section {
    padding: 60px 15px;
  }
  .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: 80%;
    margin: 0 auto;
  }
  .page-live-baccarat__section-title {
    font-size: 1.8em;
  }
  .page-live-baccarat__section-text {
    font-size: 0.95em;
  }
  .page-live-baccarat__feature-item,
  .page-live-baccarat__benefit-item {
    padding: 20px;
  }
  .page-live-baccarat__feature-title,
  .page-live-baccarat__benefit-title {
    font-size: 1.5em;
  }
  .page-live-baccarat__steps-list li {
    padding: 20px;
  }
  .page-live-baccarat__step-number {
    left: 15px;
  }
  .page-live-baccarat__step-title {
    font-size: 1.3em;
  }
  .page-live-baccarat__promo-section .page-live-baccarat__button {
    width: 80%;
  }
  .page-live-baccarat__cta-title {
    font-size: 2em;
  }

  /* Mobile content area image prevention overflow */
  .page-live-baccarat img {
    max-width: 100%;
    height: auto;
  }
  .page-live-baccarat__features-grid img,
  .page-live-baccarat__benefits-grid img {
    max-width: 100%;
    height: auto;
  }
}