/* style/game-strategies-baccarat.css */
.page-game-strategies-baccarat {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #ffffff; /* Body background is dark #1a1a2e, so text should be light */
  background-color: #1a1a2e;
}

.page-game-strategies-baccarat__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
  text-align: center;
  background: linear-gradient(135deg, #017439, #00562a);
  color: #ffffff;
  position: relative;
  overflow: hidden;
  padding-top: var(--header-offset, 120px);
}

.page-game-strategies-baccarat__hero-content {
  max-width: 900px;
  z-index: 1;
}

.page-game-strategies-baccarat__main-title {
  font-size: 2.8em;
  margin-bottom: 20px;
  color: #FFFF00; /* Use specific yellow for impact */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-game-strategies-baccarat__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: #f0f0f0;
}

.page-game-strategies-baccarat__hero-image-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
}

.page-game-strategies-baccarat__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
}

.page-game-strategies-baccarat__content-area {
  max-width: 1000px;
  margin: 0 auto;
  padding: 40px 20px;
  background-color: #2a2a4a; /* Slightly lighter dark background for content */
  border-radius: 8px;
  margin-bottom: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-game-strategies-baccarat__section-title {
  font-size: 2.2em;
  color: #017439;
  margin-bottom: 25px;
  text-align: center;
  border-bottom: 3px solid #FFFF00;
  padding-bottom: 15px;
}

.page-game-strategies-baccarat__section-title--light {
  color: #ffffff;
  border-bottom-color: #FFFF00;
}

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

.page-game-strategies-baccarat__sub-sub-title {
  font-size: 1.4em;
  color: #f0f0f0;
  margin-top: 20px;
  margin-bottom: 10px;
}

.page-game-strategies-baccarat p {
  margin-bottom: 15px;
  color: #f0f0f0;
}

.page-game-strategies-baccarat ul {
  list-style-type: disc;
  margin-left: 25px;
  margin-bottom: 15px;
  color: #f0f0f0;
}

.page-game-strategies-baccarat li {
  margin-bottom: 8px;
  color: #f0f0f0;
}

.page-game-strategies-baccarat a {
  color: #FFFF00;
  text-decoration: none;
}

.page-game-strategies-baccarat a:hover {
  text-decoration: underline;
}

.page-game-strategies-baccarat__btn-primary,
.page-game-strategies-baccarat__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  font-weight: bold;
  text-transform: uppercase;
  transition: background-color 0.3s ease, transform 0.3s ease;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  margin: 10px;
}

.page-game-strategies-baccarat__btn-primary {
  background-color: #C30808; /* Specific 'Đăng ký' color */
  color: #FFFF00; /* Specific 'Đăng ký' font color */
  border: 2px solid #FFFF00;
}

.page-game-strategies-baccarat__btn-primary:hover {
  background-color: #a00606;
  transform: translateY(-3px);
}

.page-game-strategies-baccarat__btn-secondary {
  background-color: transparent;
  color: #FFFF00;
  border: 2px solid #FFFF00;
}

.page-game-strategies-baccarat__btn-secondary:hover {
  background-color: #FFFF00;
  color: #C30808;
  transform: translateY(-3px);
}

.page-game-strategies-baccarat__cta-buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 30px;
}

.page-game-strategies-baccarat__cta-buttons--centered {
  margin-top: 40px;
}

.page-game-strategies-baccarat__content-image {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 30px auto;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.page-game-strategies-baccarat__faq-list {
  margin-top: 30px;
}

.page-game-strategies-baccarat__faq-item {
  background-color: #1a1a2e; /* Darker background for FAQ items */
  border: 1px solid #017439;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-game-strategies-baccarat__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  background-color: #017439; /* Primary color for question background */
  color: #ffffff;
  cursor: pointer;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.page-game-strategies-baccarat__faq-question:hover {
  background-color: #00562a;
}

.page-game-strategies-baccarat__faq-question h3 {
  margin: 0;
  font-size: 1.1em;
  color: #ffffff;
}

.page-game-strategies-baccarat__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  transition: transform 0.3s ease;
}

.page-game-strategies-baccarat__faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 25px;
  background-color: #2a2a4a; /* Content background for answer */
  color: #f0f0f0;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.page-game-strategies-baccarat__faq-item.active .page-game-strategies-baccarat__faq-answer {
  max-height: 1000px !important; /* Sufficiently large to show content */
  padding: 15px 25px;
}

.page-game-strategies-baccarat__faq-item.active .page-game-strategies-baccarat__faq-toggle {
  transform: rotate(45deg);
}

.page-game-strategies-baccarat__video-section {
  background-color: #017439;
  padding: 60px 20px;
  text-align: center;
}

.page-game-strategies-baccarat__section-description--light {
  color: #f0f0f0;
  font-size: 1.1em;
  margin-bottom: 30px;
}

.page-game-strategies-baccarat__video-wrapper {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
  overflow: hidden;
  max-width: 100%;
  background: #000;
  border-radius: 8px;
  margin: 0 auto 30px auto;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

.page-game-strategies-baccarat__video,
.page-game-strategies-baccarat__video-link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  cursor: pointer;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-game-strategies-baccarat__main-title {
    font-size: 2.4em;
  }
  .page-game-strategies-baccarat__hero-description {
    font-size: 1.1em;
  }
  .page-game-strategies-baccarat__section-title {
    font-size: 2em;
  }
  .page-game-strategies-baccarat__sub-title {
    font-size: 1.6em;
  }
}

@media (max-width: 768px) {
  .page-game-strategies-baccarat__hero-section {
    flex-direction: column;
    padding: 40px 15px;
  }
  .page-game-strategies-baccarat__main-title {
    font-size: 2em;
    margin-bottom: 15px;
  }
  .page-game-strategies-baccarat__hero-description {
    font-size: 1em;
    margin-bottom: 20px;
  }
  .page-game-strategies-baccarat__btn-primary,
  .page-game-strategies-baccarat__btn-secondary {
    padding: 12px 20px;
    font-size: 0.9em;
    margin: 8px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }
  .page-game-strategies-baccarat__cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  .page-game-strategies-baccarat__cta-buttons,
  .page-game-strategies-baccarat__button-group,
  .page-game-strategies-baccarat__btn-container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    flex-wrap: wrap !important;
    gap: 10px;
  }
  .page-game-strategies-baccarat__content-area {
    padding: 30px 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
  .page-game-strategies-baccarat__section-title {
    font-size: 1.8em;
    margin-bottom: 20px;
  }
  .page-game-strategies-baccarat__sub-title {
    font-size: 1.4em;
  }
  .page-game-strategies-baccarat__sub-sub-title {
    font-size: 1.2em;
  }
  .page-game-strategies-baccarat img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .page-game-strategies-baccarat__section,
  .page-game-strategies-baccarat__card,
  .page-game-strategies-baccarat__container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-game-strategies-baccarat__video-section {
    padding-top: var(--header-offset, 120px) !important;
    padding-left: 15px;
    padding-right: 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }
  .page-game-strategies-baccarat video,
  .page-game-strategies-baccarat__video {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .page-game-strategies-baccarat__video-section,
  .page-game-strategies-baccarat__video-container,
  .page-game-strategies-baccarat__video-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 0px;
    padding-right: 0px;
    overflow: hidden !important;
  }
  .page-game-strategies-baccarat__video-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
  .page-game-strategies-baccarat__faq-question,
  .page-game-strategies-baccarat__faq-answer {
    padding-left: 15px;
    padding-right: 15px;
  }
}

@media (max-width: 480px) {
  .page-game-strategies-baccarat__main-title {
    font-size: 1.8em;
  }
  .page-game-strategies-baccarat__section-title {
    font-size: 1.6em;
  }
  .page-game-strategies-baccarat__sub-title {
    font-size: 1.3em;
  }
  .page-game-strategies-baccarat__faq-question h3 {
    font-size: 1em;
  }
  .page-game-strategies-baccarat__faq-toggle {
    font-size: 1.2em;
  }
}