/* style/live-baccarat.css */
.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); /* Ensure content is not hidden by fixed header */
}

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

.page-live-baccarat__section-title {
  font-size: 2.5em;
  color: #000000; /* Main brand color */
  text-align: center;
  margin-bottom: 30px;
  position: relative;
  padding-bottom: 10px;
}

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

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

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

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

.page-live-baccarat__button--register:hover {
  background-color: #FCBC45;
  color: #FFFFFF;
  transform: translateY(-3px);
}

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

.page-live-baccarat__button--login:hover,
.page-live-baccarat__button--play-now:hover,
.page-live-baccarat__button--register-cta:hover,
.page-live-baccarat__button--play-now-cta:hover {
  background-color: #e0a73a;
  transform: translateY(-3px);
}

.page-live-baccarat__button--learn-more {
  background-color: #000000;
  color: #FFFFFF;
  border: 2px solid #000000;
  margin-top: 40px;
}

.page-live-baccarat__button--learn-more:hover {
  background-color: #333333;
  transform: translateY(-3px);
}

/* Hero Section */
.page-live-baccarat__hero-section {
  position: relative;
  overflow: hidden;
  background-color: #000000;
  padding: 0;
}

.page-live-baccarat__hero-container {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  min-height: 600px;
}

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

.page-live-baccarat__hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: #FFFFFF;
  max-width: 900px;
  padding: 40px;
  background: rgba(0, 0, 0, 0.4);
  border-radius: 10px;
}

.page-live-baccarat__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  line-height: 1.2;
  color: #FCBC45;
}

.page-live-baccarat__hero-description {
  font-size: 1.4em;
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

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

/* About Section */
.page-live-baccarat__about-section {
  padding: 80px 0;
  background-color: #f8f8f8;
}

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

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

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

.page-live-baccarat__about-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

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

.page-live-baccarat__item-text {
  color: #666666;
}

/* How to Play Section */
.page-live-baccarat__how-to-play-section {
  padding: 80px 0;
  background-color: #FFFFFF;
}

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

.page-live-baccarat__step-item {
  background-color: #f0f0f0;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-live-baccarat__step-title {
  font-size: 1.8em;
  color: #FCBC45;
  margin-bottom: 15px;
}

.page-live-baccarat__step-description {
  color: #666666;
}

.page-live-baccarat__how-to-play-section .page-live-baccarat__button {
  margin-top: 50px;
  display: block;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

/* Strategy Section */
.page-live-baccarat__strategy-section {
  padding: 80px 0;
  background-color: #f8f8f8;
}

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

.page-live-baccarat__strategy-card {
  background-color: #FFFFFF;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  text-align: left;
}

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

.page-live-baccarat__card-text {
  color: #666666;
}

.page-live-baccarat__strategy-section .page-live-baccarat__button {
  margin-top: 50px;
  display: block;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

/* Call to Action Section */
.page-live-baccarat__cta-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #000000 0%, #333333 100%);
  color: #FFFFFF;
  text-align: center;
}

.page-live-baccarat__cta-image {
  max-width: 600px;
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 10px;
  margin: 0 auto 40px auto;
  display: block;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

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

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

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

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

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

@media (max-width: 768px) {
  .page-live-baccarat__hero-title {
    font-size: 2.5em;
  }
  .page-live-baccarat__hero-description {
    font-size: 1em;
  }
  .page-live-baccarat__hero-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-live-baccarat__button {
    width: 100%;
    padding: 12px 20px;
  }
  .page-live-baccarat__about-grid,
  .page-live-baccarat__play-steps,
  .page-live-baccarat__strategy-grid {
    grid-template-columns: 1fr;
  }
  .page-live-baccarat__section-title {
    font-size: 1.8em;
  }
  .page-live-baccarat__section-text {
    font-size: 0.95em;
  }
  .page-live-baccarat__about-image,
  .page-live-baccarat__cta-image {
    height: auto;
    max-width: 100%;
  }
  .page-live-baccarat__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
  /* Mobile content area image constraint */
  .page-live-baccarat img {
    max-width: 100%;
    height: auto;
  }
}

@media (max-width: 480px) {
  .page-live-baccarat__hero-content {
    padding: 20px;
  }
  .page-live-baccarat__hero-title {
    font-size: 2em;
  }
  .page-live-baccarat__hero-description {
    font-size: 0.9em;
  }
  .page-live-baccarat__section-title {
    font-size: 1.5em;
  }
  .page-live-baccarat__section-text {
    font-size: 0.9em;
  }
  .page-live-baccarat__button {
    font-size: 1em;
  }
}