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

.page-live-baccarat__hero-section {
  position: relative;
  width: 100%;
  overflow: hidden;
  background-color: #003366; /* Dark blue background for hero */
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 500px;
}

.page-live-baccarat__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.6; /* Slightly dim the image for text readability */
  filter: brightness(0.8); /* Darken slightly without changing color */
}

.page-live-baccarat__hero-container {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
  text-align: center;
  color: #ffffff;
}

.page-live-baccarat__hero-content {
  max-width: 800px;
  margin: 0 auto;
}

.page-live-baccarat__hero-title {
  font-size: 3.2em;
  font-weight: bold;
  margin-bottom: 20px;
  color: #FFCC00; /* Gold for main title */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

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

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

.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;
  white-space: nowrap;
}

.page-live-baccarat__button--primary {
  background-color: #FFCC00; /* Gold button */
  color: #003366; /* Dark blue text */
  border: 2px solid #FFCC00;
}

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

.page-live-baccarat__button--secondary {
  background-color: transparent;
  color: #FFCC00; /* Gold text */
  border: 2px solid #FFCC00;
}

.page-live-baccarat__button--secondary:hover {
  background-color: rgba(255, 204, 0, 0.1);
  transform: translateY(-2px);
}

.page-live-baccarat__section {
  max-width: 1200px;
  margin: 60px auto;
  padding: 40px 20px;
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-live-baccarat__section-title {
  font-size: 2.5em;
  color: #003366; /* Dark blue title */
  text-align: center;
  margin-bottom: 40px;
  position: relative;
}

.page-live-baccarat__section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: #FFCC00;
  margin: 15px auto 0;
  border-radius: 2px;
}

.page-live-baccarat__features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  text-align: center;
}

.page-live-baccarat__feature-card {
  background-color: #f8f8f8;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.page-live-baccarat__feature-card:hover {
  transform: translateY(-5px);
}

.page-live-baccarat__feature-icon {
  width: 100%; /* Ensure images are not small icons */
  max-width: 400px;
  height: auto;
  margin-bottom: 20px;
  border-radius: 5px;
}

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

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

.page-live-baccarat__content-wrapper {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-bottom: 40px;
}

.page-live-baccarat__content-wrapper--reversed {
  flex-direction: row-reverse;
}

.page-live-baccarat__text-content {
  flex: 1;
}

.page-live-baccarat__image-content {
  flex: 1;
  min-width: 300px; /* Ensure images are not small */
}

.page-live-baccarat__content-image {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  min-width: 200px; /* Enforce minimum size */
  min-height: 200px;
}

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

.page-live-baccarat__list {
  list-style-type: disc;
  margin-left: 25px;
  margin-bottom: 20px;
  color: #444444;
}

.page-live-baccarat__list li {
  margin-bottom: 10px;
  font-size: 1.05em;
}

.page-live-baccarat__promo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  text-align: center;
}

.page-live-baccarat__promo-card {
  background-color: #f8f8f8;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.page-live-baccarat__promo-card:hover {
  transform: translateY(-5px);
}

.page-live-baccarat__promo-image {
  width: 100%;
  max-width: 400px;
  height: auto;
  margin-bottom: 20px;
  border-radius: 5px;
  min-width: 200px; /* Enforce minimum size */
  min-height: 200px;
}

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

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

.page-live-baccarat__cta-section {
  background-color: #003366;
  color: #ffffff;
  text-align: center;
  padding: 80px 20px;
  border-radius: 10px;
  margin-top: 80px;
}

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

.page-live-baccarat__cta-description {
  font-size: 1.3em;
  margin-bottom: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

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

/* Responsive Design */
@media (max-width: 992px) {
  .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__content-wrapper {
    flex-direction: column;
    gap: 30px;
  }

  .page-live-baccarat__content-wrapper--reversed {
    flex-direction: column;
  }

  .page-live-baccarat__cta-title {
    font-size: 2.2em;
  }
}

@media (max-width: 768px) {
  .page-live-baccarat {
    padding-top: var(--header-offset, 120px); /* Ensure mobile content is below fixed header */
  }
  .page-live-baccarat__hero-section {
    min-height: 400px;
    padding: 40px 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: 100%;
    max-width: 300px;
  }

  .page-live-baccarat__section {
    margin: 40px auto;
    padding: 30px 15px;
  }

  .page-live-baccarat__section-title {
    font-size: 1.8em;
  }

  .page-live-baccarat__feature-icon,
  .page-live-baccarat__content-image,
  .page-live-baccarat__promo-image {
    max-width: 100%;
    height: auto;
    min-width: 200px; /* Enforce minimum size */
    min-height: 200px;
  }

  .page-live-baccarat__cta-section {
    padding: 60px 15px;
  }

  .page-live-baccarat__cta-title {
    font-size: 1.8em;
  }

  .page-live-baccarat__cta-description {
    font-size: 1em;
  }
}

/* Ensure content area images are never smaller than 200px */
.page-live-baccarat img {
  min-width: 200px;
  min-height: 200px;
  object-fit: cover; /* Maintain aspect ratio */
}

/* Override specific small icon classes if they exist, to ensure minimum size */
.page-live-baccarat__feature-icon,
.page-live-baccarat__promo-image {
  width: 100%; /* Ensure they scale */
  max-width: none; /* Allow larger sizes */
  height: auto;
}

/* Ensure no filter properties are used on images */
.page-live-baccarat img:not(.page-live-baccarat__hero-image) {
  filter: none; /* Explicitly remove any potential filter */
}