.page-ban-ca {
  color: #F2FFF6; /* Text Main */
  background-color: #08160F; /* Background */
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

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

.page-ban-ca__section-title {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  color: #F2FFF6; /* Text Main */
  text-align: center;
  margin-bottom: 30px;
  line-height: 1.2;
}

.page-ban-ca__section-description {
  font-size: 18px;
  color: #A7D9B8; /* Text Secondary */
  text-align: center;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-ban-ca__text-block p {
  font-size: 17px;
  margin-bottom: 15px;
  color: #F2FFF6; /* Text Main */
  text-align: justify;
}

.page-ban-ca__text-block strong {
  color: #F2C14E; /* Gold */
}

.page-ban-ca__btn-primary,
.page-ban-ca__btn-secondary,
.page-ban-ca__btn-play,
.page-ban-ca__btn-claim {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  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: linear-gradient(180deg, #2AD16F 0%, #13994A 100%); /* Button */
  color: #ffffff;
  border: none;
}

.page-ban-ca__btn-primary:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

.page-ban-ca__btn-secondary {
  background: transparent;
  color: #F2FFF6; /* Text Main */
  border: 2px solid #2E7A4E; /* Border */
}

.page-ban-ca__btn-secondary:hover {
  background: rgba(46, 122, 78, 0.2); /* Border color with opacity */
  transform: translateY(-2px);
}

/* HERO Section */
.page-ban-ca__hero-section {
  position: relative;
  padding-top: 10px;
  padding-bottom: 60px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.page-ban-ca__hero-image {
  position: relative;
  width: 100%;
  height: 600px;
  overflow: hidden;
  margin-bottom: 40px;
}

.page-ban-ca__hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.page-ban-ca__hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: 0 20px;
}

.page-ban-ca__hero-title {
  font-size: clamp(38px, 5vw, 56px);
  font-weight: 900;
  color: #F2FFF6; /* Text Main */
  margin-bottom: 20px;
  line-height: 1.1;
}

.page-ban-ca__hero-description {
  font-size: 20px;
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 40px;
}

.page-ban-ca__hero-cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
}

/* Introduction Section */
.page-ban-ca__introduction-section {
  padding: 80px 0;
  background-color: #08160F;
}

/* Featured Games Section */
.page-ban-ca__featured-games-section {
  padding: 80px 0;
  background-color: #08160F;
}

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

.page-ban-ca__game-card {
  background: #11271B; /* Card BG */
  border-radius: 12px;
  overflow: hidden;
  padding: 25px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  border: 1px solid #2E7A4E; /* Border */
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-ban-ca__game-image {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

.page-ban-ca__game-title {
  font-size: 24px;
  font-weight: 700;
  color: #F2C14E; /* Gold */
  margin-bottom: 10px;
}

.page-ban-ca__game-description {
  font-size: 16px;
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-ban-ca__btn-play {
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%); /* Button */
  color: #ffffff;
  border: none;
  width: fit-content;
  padding: 10px 25px;
  font-size: 16px;
}

.page-ban-ca__btn-play:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

/* Guide Section */
.page-ban-ca__guide-section {
  padding: 80px 0;
  background-color: #0A4B2C; /* Deep Green */
}

.page-ban-ca__flex-container {
  display: flex;
  gap: 40px;
  align-items: center;
}

.page-ban-ca__guide-content,
.page-ban-ca__strategy-content {
  flex: 1;
}

.page-ban-ca__guide-image-wrapper,
.page-ban-ca__strategy-image-wrapper {
  flex: 1;
  text-align: center;
}

.page-ban-ca__guide-image,
.page-ban-ca__strategy-image {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
  display: block;
  margin: 0 auto;
}

.page-ban-ca__guide-list {
  list-style-type: none;
  padding: 0;
  margin-top: 25px;
}

.page-ban-ca__guide-list li {
  background: #11271B; /* Card BG */
  margin-bottom: 15px;
  padding: 18px 20px;
  border-radius: 8px;
  font-size: 17px;
  color: #F2FFF6; /* Text Main */
  border-left: 5px solid #2AD16F;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-ban-ca__guide-list li strong {
  color: #F2C14E; /* Gold */
}

/* Strategy Section */
.page-ban-ca__strategy-section {
  padding: 80px 0;
  background-color: #08160F;
}

.page-ban-ca__strategy-list {
  list-style-type: none;
  padding: 0;
  margin-top: 25px;
}

.page-ban-ca__strategy-list li {
  background: #11271B; /* Card BG */
  margin-bottom: 15px;
  padding: 18px 20px;
  border-radius: 8px;
  font-size: 17px;
  color: #F2FFF6; /* Text Main */
  border-left: 5px solid #F2C14E; /* Gold */
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-ban-ca__strategy-list li strong {
  color: #2AD16F;
}

/* Promotions Section */
.page-ban-ca__promotions-section {
  padding: 80px 0;
  background-color: #0A4B2C;
}

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

.page-ban-ca__promo-card {
  background: #11271B; /* Card BG */
  border-radius: 12px;
  overflow: hidden;
  padding: 25px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  border: 1px solid #2E7A4E; /* Border */
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-ban-ca__promo-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

.page-ban-ca__promo-title {
  font-size: 22px;
  font-weight: 700;
  color: #F2C14E; /* Gold */
  margin-bottom: 10px;
}

.page-ban-ca__promo-description {
  font-size: 16px;
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-ban-ca__btn-claim {
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%); /* Button */
  color: #ffffff;
  border: none;
  width: fit-content;
  padding: 10px 25px;
  font-size: 16px;
}

.page-ban-ca__btn-claim:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

.page-ban-ca__promo-footer {
  font-size: 16px;
  color: #A7D9B8; /* Text Secondary */
  text-align: center;
  margin-top: 40px;
}

/* Benefits Section */
.page-ban-ca__benefits-section {
  padding: 80px 0;
  background-color: #08160F;
}

.page-ban-ca__benefits-list {
  list-style-type: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  margin-top: 40px;
}

.page-ban-ca__benefits-list li {
  background: #11271B; /* Card BG */
  padding: 25px;
  border-radius: 12px;
  font-size: 17px;
  color: #F2FFF6; /* Text Main */
  border-left: 5px solid #57E38D; /* Glow */
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  position: relative;
  padding-left: 35px;
}

.page-ban-ca__benefits-list li::before {
  content: '✓';
  color: #57E38D; /* Glow */
  font-size: 20px;
  position: absolute;
  left: 10px;
  top: 23px;
}

.page-ban-ca__benefits-list li strong {
  color: #F2C14E; /* Gold */
}

.page-ban-ca__benefits-cta {
  text-align: center;
  margin-top: 50px;
  font-size: 18px;
  color: #A7D9B8; /* Text Secondary */
}

/* FAQ Section */
.page-ban-ca__faq-section {
  padding: 80px 0;
  background-color: #0A4B2C;
}

.page-ban-ca__faq-list {
  margin-top: 40px;
}

details.page-ban-ca__faq-item {
  margin-bottom: 15px;
  border-radius: 10px;
  border: 1px solid #2E7A4E; /* Border */
  overflow: hidden;
  background: #11271B; /* Card BG */
}

details.page-ban-ca__faq-item summary.page-ban-ca__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  cursor: pointer;
  user-select: none;
  list-style: none;
  transition: background-color 0.3s ease;
}

details.page-ban-ca__faq-item summary.page-ban-ca__faq-question::-webkit-details-marker {
  display: none;
}

details.page-ban-ca__faq-item summary.page-ban-ca__faq-question:hover {
  background: #1E3A2A; /* Divider */
}

.page-ban-ca__faq-qtext {
  flex: 1;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.5;
  text-align: left;
  color: #F2FFF6; /* Text Main */
}

.page-ban-ca__faq-toggle {
  font-size: 28px;
  font-weight: bold;
  color: #F2C14E; /* Gold */
  flex-shrink: 0;
  margin-left: 15px;
  width: 30px;
  text-align: center;
}

details.page-ban-ca__faq-item .page-ban-ca__faq-answer {
  padding: 0 20px 20px;
  background: #1E3A2A; /* Divider */
  border-radius: 0 0 10px 10px;
  color: #A7D9B8; /* Text Secondary */
  font-size: 16px;
}

/* Conclusion Section */
.page-ban-ca__conclusion-section {
  padding: 80px 0;
  text-align: center;
  background-color: #08160F;
}

.page-ban-ca__conclusion-cta {
  margin-top: 40px;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-ban-ca__hero-image {
    height: 500px;
  }
  .page-ban-ca__hero-title {
    font-size: clamp(32px, 4.5vw, 48px);
  }
  .page-ban-ca__hero-description {
    font-size: 18px;
  }
  .page-ban-ca__section-title {
    font-size: clamp(26px, 3.5vw, 38px);
  }
  .page-ban-ca__game-title {
    font-size: 22px;
  }
  .page-ban-ca__promo-title {
    font-size: 20px;
  }
}

@media (max-width: 849px) {
  .page-ban-ca__hero-image img {
    object-fit: contain !important;
    aspect-ratio: unset !important;
  }
}

@media (max-width: 768px) {
  .page-ban-ca__container {
    padding: 15px;
  }

  /* HERO Section */
  .page-ban-ca__hero-section {
    padding-top: 10px; /* Small top padding for mobile */
    padding-bottom: 40px;
  }
  .page-ban-ca__hero-image {
    height: 300px;
    margin-bottom: 20px;
  }
  .page-ban-ca__hero-image img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    object-fit: contain !important; /* Ensure image is not cropped */
    aspect-ratio: unset !important;
  }
  .page-ban-ca__hero-title {
    font-size: clamp(28px, 8vw, 40px);
    margin-bottom: 15px;
  }
  .page-ban-ca__hero-description {
    font-size: 16px;
    margin-bottom: 30px;
  }
  .page-ban-ca__hero-cta-buttons {
    flex-direction: column;
    gap: 15px;
    width: 100%;
    padding: 0 15px;
    box-sizing: border-box;
  }

  /* Buttons general mobile rules */
  .page-ban-ca__btn-primary,
  .page-ban-ca__btn-secondary,
  .page-ban-ca__btn-play,
  .page-ban-ca__btn-claim {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding: 12px 20px;
    font-size: 16px;
  }
  .page-ban-ca__hero-cta-buttons .page-ban-ca__btn-primary,
  .page-ban-ca__hero-cta-buttons .page-ban-ca__btn-secondary {
    margin: 0 auto;
  }
  .page-ban-ca__conclusion-cta .page-ban-ca__btn-primary {
    margin: 0 auto;
  }

  /* Sections */
  .page-ban-ca__introduction-section,
  .page-ban-ca__featured-games-section,
  .page-ban-ca__guide-section,
  .page-ban-ca__strategy-section,
  .page-ban-ca__promotions-section,
  .page-ban-ca__benefits-section,
  .page-ban-ca__faq-section,
  .page-ban-ca__conclusion-section {
    padding: 40px 0;
  }

  .page-ban-ca__section-title {
    font-size: clamp(24px, 7vw, 32px);
    margin-bottom: 20px;
  }
  .page-ban-ca__section-description {
    font-size: 15px;
    margin-bottom: 30px;
  }
  .page-ban-ca__text-block p {
    font-size: 16px;
  }

  /* Featured Games */
  .page-ban-ca__games-grid {
    grid-template-columns: 1fr 1fr; /* Two columns for product cards */
    gap: 20px;
    overflow-x: hidden; /* Prevent horizontal scroll */
  }
  .page-ban-ca__game-card {
    padding: 15px;
  }
  .page-ban-ca__game-image {
    height: 150px;
    margin-bottom: 15px;
  }
  .page-ban-ca__game-title {
    font-size: 18px;
  }
  .page-ban-ca__game-description {
    font-size: 14px;
  }
  .page-ban-ca__btn-play {
    font-size: 14px;
    padding: 8px 15px;
  }

  /* Guide & Strategy Sections */
  .page-ban-ca__flex-container {
    flex-direction: column;
    gap: 30px;
  }
  .page-ban-ca__flex-container--reverse-mobile {
    flex-direction: column-reverse;
  }
  .page-ban-ca__guide-list li,
  .page-ban-ca__strategy-list li {
    font-size: 16px;
    padding: 15px;
  }

  /* General image containers mobile */
  .page-ban-ca__guide-image-wrapper,
  .page-ban-ca__strategy-image-wrapper,
  .page-ban-ca__promo-image {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }
  .page-ban-ca__guide-image,
  .page-ban-ca__strategy-image,
  .page-ban-ca__promo-image,
  .page-ban-ca img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  /* Promotions Section */
  .page-ban-ca__promos-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .page-ban-ca__promo-card {
    padding: 15px;
  }
  .page-ban-ca__promo-image {
    height: 180px;
    margin-bottom: 15px;
  }
  .page-ban-ca__promo-title {
    font-size: 18px;
  }
  .page-ban-ca__promo-description {
    font-size: 14px;
  }

  /* Benefits Section */
  .page-ban-ca__benefits-list {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  .page-ban-ca__benefits-list li {
    font-size: 16px;
    padding: 15px 15px 15px 35px;
  }
  .page-ban-ca__benefits-list li::before {
    top: 18px;
  }

  /* FAQ Section */
  details.page-ban-ca__faq-item summary.page-ban-ca__faq-question {
    padding: 15px;
  }
  .page-ban-ca__faq-qtext {
    font-size: 16px;
  }
  .page-ban-ca__faq-toggle {
    font-size: 24px;
    width: 24px;
  }
  details.page-ban-ca__faq-item .page-ban-ca__faq-answer {
    padding: 0 15px 15px;
    font-size: 15px;
  }
}