/* Base styles for the Bắn Cá page */
.page-ban-ca {
  font-family: 'Arial', sans-serif;
  color: #333333; /* Default text color for light background */
  background-color: #ffffff; /* Explicitly set for clarity */
  line-height: 1.6;
}

.page-ban-ca__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.page-ban-ca__section-title {
  font-size: 36px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 40px;
  color: #017439;
}

.page-ban-ca__section-title--white {
  color: #ffffff;
}

.page-ban-ca__description {
  font-size: 18px;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 30px;
  line-height: 1.7;
}

.page-ban-ca__description--white {
  color: #f0f0f0;
}

.page-ban-ca__article-body {
  max-width: 900px;
  margin: 0 auto;
  font-size: 17px;
  line-height: 1.8;
}

.page-ban-ca__article-body p {
  margin-bottom: 1em;
}

.page-ban-ca__article-body a {
  color: #017439;
  text-decoration: underline;
}

.page-ban-ca__article-body--white p,
.page-ban-ca__article-body--white li {
  color: #f0f0f0;
}

.page-ban-ca__article-body--white a {
  color: #FFFF00; /* Yellow for links on dark background */
}

/* Buttons */
.page-ban-ca__btn-primary,
.page-ban-ca__btn-secondary,
.page-ban-ca__btn-play,
.page-ban-ca__btn-promo,
.page-ban-ca__btn-download {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 30px;
  border-radius: 8px;
  font-size: 18px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-ban-ca__btn-primary {
  background-color: #017439;
  color: #ffffff;
  border: 2px solid #017439;
}

.page-ban-ca__btn-primary:hover {
  background-color: #005a2e;
  border-color: #005a2e;
}

.page-ban-ca__btn-secondary {
  background-color: #ffffff;
  color: #017439;
  border: 2px solid #017439;
}

.page-ban-ca__btn-secondary:hover {
  background-color: #f0f0f0;
  color: #005a2e;
  border-color: #005a2e;
}

.page-ban-ca__btn-play {
  background-color: #C30808; /* Login/Register color */
  color: #FFFF00; /* Login/Register font color */
  border: 2px solid #C30808;
  padding: 10px 20px;
  font-size: 16px;
  border-radius: 5px;
}

.page-ban-ca__btn-play:hover {
  background-color: #a00606;
  border-color: #a00606;
}

.page-ban-ca__btn-promo {
  background-color: #017439;
  color: #ffffff;
  border: 2px solid #017439;
  padding: 12px 25px;
  font-size: 17px;
  border-radius: 5px;
}

.page-ban-ca__btn-promo:hover {
  background-color: #005a2e;
  border-color: #005a2e;
}

/* HERO Section */
.page-ban-ca__hero-section {
  position: relative;
  overflow: hidden;
  padding-top: 10px; /* Small top padding */
  padding-bottom: 60px;
  background-color: #017439; /* Fallback background */
}

.page-ban-ca__hero-image-wrapper {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 56.25%; /* 16:9 aspect ratio for hero image */
  overflow: hidden;
}

.page-ban-ca__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.page-ban-ca__hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 900px;
  margin: 40px auto 0;
  padding: 0 20px;
  color: #ffffff;
}

.page-ban-ca__main-title {
  font-size: clamp(32px, 5vw, 48px); /* Responsive font size */
  font-weight: 900;
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-ban-ca__hero-content .page-ban-ca__description {
  color: #f0f0f0;
  font-size: 20px;
  margin-bottom: 40px;
}

.page-ban-ca__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
}

.page-ban-ca__cta-buttons--center {
  justify-content: center;
}

/* Introduction Section */
.page-ban-ca__introduction-section,
.page-ban-ca__guide-section,
.page-ban-ca__promotions-section,
.page-ban-ca__download-section,
.page-ban-ca__faq-section {
  padding: 60px 0;
  background-color: #f9f9f9;
}

.page-ban-ca__image-content {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 30px auto;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Games Section */
.page-ban-ca__games-section,
.page-ban-ca__strategy-section,
.page-ban-ca__benefits-section,
.page-ban-ca__conclusion-section {
  padding: 60px 0;
  background-color: #017439;
}

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

.page-ban-ca__game-card {
  background-color: #ffffff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  text-align: center;
  padding-bottom: 20px;
  display: flex;
  flex-direction: column;
}

.page-ban-ca__game-image {
  width: 100%;
  height: 200px; /* Fixed height for consistency */
  object-fit: cover;
  display: block;
  margin-bottom: 15px;
}

.page-ban-ca__game-title {
  font-size: 22px;
  font-weight: 700;
  color: #017439;
  margin-bottom: 10px;
  padding: 0 15px;
}

.page-ban-ca__game-description {
  font-size: 16px;
  color: #555555;
  margin-bottom: 20px;
  flex-grow: 1;
  padding: 0 15px;
}

.page-ban-ca__btn-play {
  margin: 0 15px;
}

.page-ban-ca__cta-full-width {
  text-align: center;
  margin-top: 50px;
}

/* Guide Section */
.page-ban-ca__guide-list {
  list-style-type: decimal;
  padding-left: 25px;
  margin-top: 20px;
}

.page-ban-ca__guide-list li {
  margin-bottom: 15px;
  font-size: 17px;
}

.page-ban-ca__guide-list strong {
  color: #017439;
}

/* Strategy Section */
.page-ban-ca__strategy-list {
  list-style-type: disc;
  padding-left: 25px;
  margin-top: 20px;
}

.page-ban-ca__strategy-list li {
  margin-bottom: 15px;
  font-size: 17px;
  color: #f0f0f0;
}

.page-ban-ca__strategy-list strong {
  color: #FFFF00; /* Yellow for emphasis on dark background */
}

/* Promotions Section */
.page-ban-ca__promotions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-ban-ca__promotion-card {
  background-color: #ffffff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  text-align: center;
  padding-bottom: 20px;
  display: flex;
  flex-direction: column;
}

.page-ban-ca__promotion-image {
  width: 100%;
  height: 200px; /* Fixed height for consistency */
  object-fit: cover;
  display: block;
  margin-bottom: 15px;
}

.page-ban-ca__promotion-title {
  font-size: 22px;
  font-weight: 700;
  color: #017439;
  margin-bottom: 10px;
  padding: 0 15px;
}

.page-ban-ca__promotion-text {
  font-size: 16px;
  color: #555555;
  margin-bottom: 20px;
  flex-grow: 1;
  padding: 0 15px;
}

.page-ban-ca__btn-promo {
  margin: 0 15px;
}

/* Benefits Section */
.page-ban-ca__benefits-list {
  list-style-type: disc;
  padding-left: 25px;
  margin-top: 20px;
}

.page-ban-ca__benefits-list li {
  margin-bottom: 15px;
  font-size: 17px;
  color: #f0f0f0;
}

.page-ban-ca__benefits-list strong {
  color: #FFFF00; /* Yellow for emphasis on dark background */
}

/* Download Section */
.page-ban-ca__download-options {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  margin-top: 40px;
}

.page-ban-ca__qr-code {
  width: 250px;
  height: 250px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}