/* style/game-guides-baccarat-strategy.css */
.page-game-guides-baccarat-strategy {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #ffffff; /* Body background is #0a0a0a (dark), so text color should be light */
}

.page-game-guides-baccarat-strategy__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
  padding-top: 10px; /* Small top padding, body handles header offset */
  text-align: center;
  overflow: hidden;
  background: #0a0a0a; /* Ensure a dark background for the hero section */
}

.page-game-guides-baccarat-strategy__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.page-game-guides-baccarat-strategy__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3; /* Darken image to ensure text contrast */
}

.page-game-guides-baccarat-strategy__hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
  color: #ffffff;
}

.page-game-guides-baccarat-strategy__main-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
  color: #ffffff;
}

.page-game-guides-baccarat-strategy__description {
  font-size: 1.2rem;
  margin-bottom: 30px;
  color: #f0f0f0;
}

.page-game-guides-baccarat-strategy__cta-button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.3s ease;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-game-guides-baccarat-strategy__btn-primary {
  background-color: #26A9E0;
  color: #ffffff;
  border: 2px solid #26A9E0;
}

.page-game-guides-baccarat-strategy__btn-primary:hover {
  background-color: #1e87c0;
  transform: translateY(-2px);
}

.page-game-guides-baccarat-strategy__content-area {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  background-color: #0a0a0a; /* Match body background */
  color: #ffffff; /* Ensure light text on dark background */
}

.page-game-guides-baccarat-strategy__section-title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  margin-top: 40px;
  margin-bottom: 25px;
  text-align: center;
  color: #26A9E0; /* Brand color for titles */
}

.page-game-guides-baccarat-strategy__content-area p {
  margin-bottom: 20px;
  font-size: 1.05rem;
  color: #f0f0f0;
}

.page-game-guides-baccarat-strategy__content-area h3 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 600;
  margin-top: 30px;
  margin-bottom: 15px;
  color: #26A9E0;
}

.page-game-guides-baccarat-strategy__content-image {
  width: 100%;
  height: auto;
  display: block;
  margin: 30px auto;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-game-guides-baccarat-strategy__features-grid,
.page-game-guides-baccarat-strategy__strategy-card-grid,
.page-game-guides-baccarat-strategy__tips-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 30px;
  margin-bottom: 40px;
}

.page-game-guides-baccarat-strategy__feature-item,
.page-game-guides-baccarat-strategy__strategy-card,
.page-game-guides-baccarat-strategy__tip-item {
  background-color: rgba(255, 255, 255, 0.08); /* Slightly lighter background for cards */
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease;
  color: #ffffff;
}

.page-game-guides-baccarat-strategy__feature-item:hover,
.page-game-guides-baccarat-strategy__strategy-card:hover,
.page-game-guides-baccarat-strategy__tip-item:hover {
  transform: translateY(-5px);
}

.page-game-guides-baccarat-strategy__feature-title,
.page-game-guides-baccarat-strategy__card-title,
.page-game-guides-baccarat-strategy__tip-title {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: #26A9E0;
}

.page-game-guides-baccarat-strategy__sub-title {
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  font-weight: 600;
  margin-top: 30px;
  margin-bottom: 15px;
  color: #26A9E0;
}

.page-game-guides-baccarat-strategy__checklist {
  list-style: none;
  padding: 0;
  margin: 30px 0;
}

.page-game-guides-baccarat-strategy__checklist li {
  background-color: rgba(255, 255, 255, 0.05);
  margin-bottom: 10px;
  padding: 15px 20px;
  border-left: 5px solid #26A9E0;
  border-radius: 5px;
  font-size: 1.05rem;
  color: #f0f0f0;
}

.page-game-guides-baccarat-strategy__faq-list {
  margin-top: 30px;
  margin-bottom: 50px;
}

.page-game-guides-baccarat-strategy__faq-item {
  background-color: rgba(255, 255, 255, 0.08);
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  color: #ffffff;
}

.page-game-guides-baccarat-strategy__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  font-size: 1.15rem;
  font-weight: 600;
  cursor: pointer;
  background-color: rgba(255, 255, 255, 0.15);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  color: #26A9E0; /* Question text color */
}

.page-game-guides-baccarat-strategy__faq-question::-webkit-details-marker {
  display: none;
}

.page-game-guides-baccarat-strategy__faq-question::marker {
  display: none;
}

.page-game-guides-baccarat-strategy__faq-toggle {
  font-size: 1.5rem;
  line-height: 1;
  color: #ffffff; /* Toggle icon color */
}

.page-game-guides-baccarat-strategy__faq-answer {
  padding: 15px 25px;
  font-size: 1rem;
  color: #f0f0f0;
}

.page-game-guides-baccarat-strategy__faq-item[open] .page-game-guides-baccarat-strategy__faq-question {
  border-bottom: 1px solid transparent;
}

.page-game-guides-baccarat-strategy__cta-wrapper {
  text-align: center;
  margin-top: 50px;
  margin-bottom: 30px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .page-game-guides-baccarat-strategy {
    font-size: 16px;
    line-height: 1.6;
  }

  .page-game-guides-baccarat-strategy__hero-section {
    padding: 40px 15px;
    padding-top: 10px !important;
  }

  .page-game-guides-baccarat-strategy__main-title {
    font-size: 2.2rem;
  }

  .page-game-guides-baccarat-strategy__description {
    font-size: 1rem;
  }

  .page-game-guides-baccarat-strategy__cta-button {
    padding: 12px 25px;
    font-size: 1rem;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  .page-game-guides-baccarat-strategy__content-area {
    padding: 30px 15px;
  }

  .page-game-guides-baccarat-strategy__section-title {
    font-size: 2rem;
    margin-top: 30px;
    margin-bottom: 20px;
  }

  .page-game-guides-baccarat-strategy__content-area h3 {
    font-size: 1.3rem;
  }

  .page-game-guides-baccarat-strategy__features-grid,
  .page-game-guides-baccarat-strategy__strategy-card-grid,
  .page-game-guides-baccarat-strategy__tips-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-game-guides-baccarat-strategy__feature-item,
  .page-game-guides-baccarat-strategy__strategy-card,
  .page-game-guides-baccarat-strategy__tip-item {
    padding: 20px;
  }

  .page-game-guides-baccarat-strategy__faq-question {
    padding: 15px 20px;
    font-size: 1.05rem;
  }

  .page-game-guides-baccarat-strategy__faq-answer {
    padding: 10px 20px;
  }

  /* Ensure images are responsive */
  .page-game-guides-baccarat-strategy img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }

  /* Containers for responsive images/buttons/videos */
  .page-game-guides-baccarat-strategy__section,
  .page-game-guides-baccarat-strategy__card,
  .page-game-guides-baccarat-strategy__container,
  .page-game-guides-baccarat-strategy__hero-section,
  .page-game-guides-baccarat-strategy__content-area,
  .page-game-guides-baccarat-strategy__cta-wrapper,
  .page-game-guides-baccarat-strategy__features-grid,
  .page-game-guides-baccarat-strategy__strategy-card-grid,
  .page-game-guides-baccarat-strategy__tips-grid,
  .page-game-guides-baccarat-strategy__faq-list {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow-x: hidden;
  }

  .page-game-guides-baccarat-strategy__cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
}