/* style/game-guides-baccarat-strategy.css */
.page-game-guides-baccarat-strategy {
  font-family: 'Arial', 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-section {
  background: linear-gradient(135deg, #0A246A 0%, #3a5b9e 100%); /* Dark blue gradient */
  color: #fff;
  padding: 100px 0;
  text-align: center;
}

.page-game-guides-baccarat-strategy__hero-title {
  font-size: 2.8em;
  margin-bottom: 20px;
  color: #FFD700; /* Gold for emphasis */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-game-guides-baccarat-strategy__hero-description {
  font-size: 1.2em;
  max-width: 800px;
  margin: 0 auto 30px;
}

.page-game-guides-baccarat-strategy__btn {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.page-game-guides-baccarat-strategy__btn--primary {
  background-color: #FFD700; /* Gold */
  color: #0A246A; /* Dark blue text */
  border: 2px solid #FFD700;
}

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

.page-game-guides-baccarat-strategy__content-section {
  padding: 60px 0;
  background-color: #fff;
}

.page-game-guides-baccarat-strategy__section-title {
  font-size: 2.2em;
  color: #0A246A; /* Dark blue */
  margin-top: 40px;
  margin-bottom: 25px;
  text-align: center;
  position: relative;
  padding-bottom: 10px;
}

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

.page-game-guides-baccarat-strategy__sub-section-title {
  font-size: 1.6em;
  color: #0A246A;
  margin-top: 30px;
  margin-bottom: 15px;
  border-left: 5px solid #FFD700;
  padding-left: 15px;
}

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

.page-game-guides-baccarat-strategy ul {
  list-style-type: disc;
  margin-left: 25px;
  margin-bottom: 15px;
}

.page-game-guides-baccarat-strategy ul li {
  margin-bottom: 8px;
  color: #444;
}

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

.page-game-guides-baccarat-strategy__cta-section {
  background-color: #0A246A;
  color: #fff;
  padding: 50px;
  border-radius: 10px;
  text-align: center;
  margin-top: 60px;
}

.page-game-guides-baccarat-strategy__cta-title {
  font-size: 2em;
  margin-bottom: 20px;
  color: #FFD700;
}

.page-game-guides-baccarat-strategy__cta-section p {
  font-size: 1.1em;
  margin-bottom: 30px;
  color: #f0f0f0;
}

.page-game-guides-baccarat-strategy__btn--secondary {
  background-color: #FFD700;
  color: #0A246A;
  border: 2px solid #FFD700;
  margin: 0 10px;
}

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

.page-game-guides-baccarat-strategy__btn--text {
  background-color: transparent;
  color: #FFD700;
  border: 2px solid #FFD700;
  margin: 0 10px;
}

.page-game-guides-baccarat-strategy__btn--text:hover {
  background-color: #FFD700;
  color: #0A246A;
  transform: translateY(-2px);
}

.page-game-guides-baccarat-strategy a {
  color: #0A246A;
  text-decoration: none;
  font-weight: bold;
}

.page-game-guides-baccarat-strategy a:hover {
  text-decoration: underline;
  color: #FFD700;
}

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

  .page-game-guides-baccarat-strategy__hero-description {
    font-size: 1em;
  }

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

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

  .page-game-guides-baccarat-strategy__cta-section {
    padding: 30px;
  }

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

  .page-game-guides-baccarat-strategy__btn {
    padding: 10px 20px;
    font-size: 0.9em;
    margin: 5px;
  }
}

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

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

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

  .page-game-guides-baccarat-strategy__btn {
    display: block;
    width: fit-content;
    margin: 10px auto;
  }
}