/* style/game-guides-baccarat-strategy.css */
.page-game-guides-baccarat-strategy {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #f8f8f8;
}

.page-game-guides-baccarat-strategy__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-game-guides-baccarat-strategy__hero {
  background: linear-gradient(135deg, #003366, #1a4a7e);
  color: #ffffff;
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-game-guides-baccarat-strategy__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  font-weight: 700;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  color: #FFCC00; /* High contrast with dark blue background */
}

.page-game-guides-baccarat-strategy__hero-subtitle {
  font-size: 1.4em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #e0e0e0; /* Good contrast with dark blue */
}

.page-game-guides-baccarat-strategy__section {
  padding: 60px 0;
  background-color: #ffffff;
  border-bottom: 1px solid #eee;
}

.page-game-guides-baccarat-strategy__section--dark {
  background-color: #e6eef5; /* Lighter shade of primary for section background */
  color: #333;
}

.page-game-guides-baccarat-strategy__section--highlight {
  background-color: #fff8e1; /* Light yellow from secondary color for highlight section */
  color: #333;
}

.page-game-guides-baccarat-strategy__section-title {
  font-size: 2.5em;
  color: #003366; /* Primary color for main titles */
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
}

.page-game-guides-baccarat-strategy__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #FFCC00; /* Secondary color for accent */
  border-radius: 2px;
}

.page-game-guides-baccarat-strategy__sub-title {
  font-size: 1.8em;
  color: #003366; /* Primary color for sub-titles */
  margin-top: 30px;
  margin-bottom: 15px;
  border-left: 5px solid #FFCC00; /* Secondary color for accent */
  padding-left: 15px;
}

.page-game-guides-baccarat-strategy p {
  font-size: 1.1em;
  margin-bottom: 15px;
  color: #555;
}

.page-game-guides-baccarat-strategy .highlight {
  color: #003366;
  font-weight: bold;
}

.page-game-guides-baccarat-strategy__list {
  list-style-type: disc;
  margin-left: 25px;
  margin-bottom: 20px;
  color: #555;
}

.page-game-guides-baccarat-strategy__list li {
  margin-bottom: 10px;
  font-size: 1.1em;
}

.page-game-guides-baccarat-strategy__image-wrapper {
  text-align: center;
  margin: 40px 0;
}

.page-game-guides-baccarat-strategy__image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.page-game-guides-baccarat-strategy figcaption {
  font-style: italic;
  color: #777;
  margin-top: 10px;
  font-size: 0.95em;
}

.page-game-guides-baccarat-strategy__btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: all 0.3s ease;
  cursor: pointer;
  text-align: center;
  margin: 10px;
}

.page-game-guides-baccarat-strategy__btn--primary {
  background-color: #FFCC00; /* Secondary color for primary action */
  color: #003366; /* Primary color for text, high contrast */
  border: 2px solid #FFCC00;
}

.page-game-guides-baccarat-strategy__btn--primary:hover {
  background-color: #e6b800;
  border-color: #e6b800;
  transform: translateY(-3px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

.page-game-guides-baccarat-strategy__btn--secondary {
  background-color: #003366; /* Primary color for secondary action */
  color: #FFCC00; /* Secondary color for text, high contrast */
  border: 2px solid #003366;
}

.page-game-guides-baccarat-strategy__btn--secondary:hover {
  background-color: #002244;
  border-color: #002244;
  transform: translateY(-3px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

.page-game-guides-baccarat-strategy__link {
  color: #003366;
  text-decoration: none;
  font-weight: bold;
}

.page-game-guides-baccarat-strategy__link:hover {
  text-decoration: underline;
  color: #FFCC00;
}

.page-game-guides-baccarat-strategy__cta {
  background: linear-gradient(135deg, #003366, #002244);
  color: #ffffff;
  padding: 80px 0;
  text-align: center;
}

.page-game-guides-baccarat-strategy__cta-title {
  font-size: 2.8em;
  margin-bottom: 20px;
  color: #FFCC00; /* Secondary color for CTA title */
}

.page-game-guides-baccarat-strategy__cta-subtitle {
  font-size: 1.3em;
  margin-bottom: 40px;
  color: #e0e0e0;
}

.page-game-guides-baccarat-strategy__cta-buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .page-game-guides-baccarat-strategy__hero-title {
    font-size: 2.5em;
  }

  .page-game-guides-baccarat-strategy__hero-subtitle,
  .page-game-guides-baccarat-strategy p,
  .page-game-guides-baccarat-strategy__list li {
    font-size: 1em;
  }

  .page-game-guides-baccarat-strategy__section-title {
    font-size: 2em;
  }

  .page-game-guides-baccarat-strategy__sub-title {
    font-size: 1.5em;
  }

  .page-game-guides-baccarat-strategy__btn {
    padding: 12px 25px;
    font-size: 1em;
  }

  .page-game-guides-baccarat-strategy__cta-title {
    font-size: 2.2em;
  }

  .page-game-guides-baccarat-strategy__cta-subtitle {
    font-size: 1.1em;
  }
}

@media (max-width: 480px) {
  .page-game-guides-baccarat-strategy__hero-title {
    font-size: 2em;
  }

  .page-game-guides-baccarat-strategy__section-title {
    font-size: 1.8em;
  }

  .page-game-guides-baccarat-strategy__sub-title {
    font-size: 1.3em;
  }

  .page-game-guides-baccarat-strategy__btn {
    width: 100%;
    margin: 10px 0;
  }

  .page-game-guides-baccarat-strategy__cta-buttons {
    flex-direction: column;
  }
}