/* General Styling for Bắn Cá Page */
.page-ban-ca {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #FFF5E1; /* Text Main */
  background: #B71C1C; /* Nền */
}

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

.page-ban-ca__section-title {
  font-size: 38px;
  font-weight: bold;
  color: #FFD86A; /* Gold-like from button gradient for emphasis */
  text-align: center;
  margin-bottom: 30px;
  padding-top: 20px;
}

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

/* Hero Section */
.page-ban-ca__hero-section {
  position: relative;
  padding-top: 10px; /* Small top padding, relies on body padding-top */
  background: linear-gradient(180deg, #C91F17 0%, #7A0E0E 100%); /* Deep Red gradient */
  padding-bottom: 50px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.page-ban-ca__hero-image {
  width: 100%;
  max-width: 1920px;
  margin-bottom: 30px;
}

.page-ban-ca__hero-image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
}

.page-ban-ca__hero-content {
  text-align: center;
  max-width: 900px;
  padding: 0 20px;
  z-index: 1;
}

.page-ban-ca__main-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem); /* Clamp for H1 */
  font-weight: 900;
  color: #F4D34D; /* Gold */
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 0 0 10px rgba(255, 204, 102, 0.8); /* Glow */
}

.page-ban-ca__main-description {
  font-size: 20px;
  color: #FFF5E1; /* Text Main */
  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;
  margin-top: 50px;
}

.page-ban-ca__btn-primary,
.page-ban-ca__btn-secondary,
.page-ban-ca__btn-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 30px;
  border-radius: 50px;
  font-size: 18px;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
  min-width: 180px;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
  text-align: center;
}

.page-ban-ca__btn-primary {
  background: linear-gradient(180deg, #FFD86A 0%, #E6B800 100%); /* Button gradient */
  color: #7A0E0E; /* Deep Red for contrast */
  border: 2px solid #F2B544; /* Border */
  box-shadow: 0 4px 15px rgba(255, 216, 106, 0.4);
}

.page-ban-ca__btn-primary:hover {
  background: linear-gradient(180deg, #E6B800 0%, #FFD86A 100%);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(255, 216, 106, 0.6);
}

.page-ban-ca__btn-secondary {
  background: transparent;
  color: #FFD86A; /* Gold-like */
  border: 2px solid #FFD86A; /* Gold-like */
  box-shadow: 0 4px 15px rgba(255, 216, 106, 0.2);
}

.page-ban-ca__btn-secondary:hover {
  background: rgba(255, 216, 106, 0.1);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(255, 216, 106, 0.4);
}

.page-ban-ca__btn-link {
  background: linear-gradient(180deg, #FFD86A 0%, #E6B800 100%); /* Button gradient */
  color: #7A0E0E; /* Deep Red for contrast */
  border: 1px solid #F2B544; /* Border */
  padding: 10px 20px;
  font-size: 16px;
  border-radius: 25px;
  margin-top: 20px;
}

.page-ban-ca__btn-link:hover {
  background: linear-gradient(180deg, #E6B800 0%, #FFD86A 100%);
}

/* Dark Section Styling */
.page-ban-ca__dark-section {
  background: #B71C1C; /* Nền */
  padding: 60px 0;
  color: #FFF5E1; /* Text Main */
}

/* Introduction Section */
.page-ban-ca__introduction-section .page-ban-ca__text-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 900px;
  margin: 0 auto;
  font-size: 17px;
}

.page-ban-ca__introduction-section .page-ban-ca__text-block p {
  margin-bottom: 20px;
  text-align: justify;
}

.page-ban-ca__introduction-section .page-ban-ca__text-block img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 30px 0;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

/* Games Section */
.page-ban-ca__games-section {
  padding: 60px 0;
  background: #7A0E0E; /* Deep Red */
  color: #FFF5E1;
}

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

.page-ban-ca__game-card {
  background: #D32F2F; /* Card B G */
  border-radius: 12px;
  overflow: hidden;
  text-align: center;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid #F2B544; /* Border */
}

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

.page-ban-ca__game-card .page-ban-ca__card-title {
  font-size: 24px;
  font-weight: bold;
  color: #FFD86A;
  margin: 20px 15px 10px;
}

.page-ban-ca__game-card .page-ban-ca__card-text {
  font-size: 15px;
  color: #FFF5E1;
  padding: 0 15px 20px;
  flex-grow: 1;
}

/* Guide Section */
.page-ban-ca__guide-section {
  padding: 60px 0;
}

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

.page-ban-ca__step-card {
  background: #D32F2F; /* Card B G */
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
  text-align: center;
  border: 1px solid #F2B544; /* Border */
}

.page-ban-ca__step-card .page-ban-ca__step-title {
  font-size: 22px;
  font-weight: bold;
  color: #FFD86A;
  margin-bottom: 15px;
}

.page-ban-ca__step-card p {
  font-size: 16px;
  color: #FFF5E1;
  margin-bottom: 20px;
}

.page-ban-ca__step-card .page-ban-ca__card-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-top: 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

/* Strategy Section */
.page-ban-ca__strategy-section {
  padding: 60px 0;
  background: #7A0E0E; /* Deep Red */
  color: #FFF5E1;
}

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

.page-ban-ca__article-body h3 {
  font-size: 26px;
  color: #FFD86A;
  margin-top: 35px;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-ban-ca__article-body p {
  margin-bottom: 20px;
  text-align: justify;
}

.page-ban-ca__article-body .page-ban-ca__image-content {
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 30px 0;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

/* Promotions Section */
.page-ban-ca__promotions-section {
  padding: 60px 0;
}

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

.page-ban-ca__promo-card {
  background: #D32F2F; /* Card B G */
  border-radius: 12px;
  overflow: hidden;
  text-align: center;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid #F2B544; /* Border */
}

.page-ban-ca__promo-card .page-ban-ca__card-image {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.page-ban-ca__promo-card .page-ban-ca__card-title {
  font-size: 24px;
  font-weight: bold;
  color: #FFD86A;
  margin: 20px 15px 10px;
}

.page-ban-ca__promo-card .page-ban-ca__card-text {
  font-size: 15px;
  color: #FFF5E1;
  padding: 0 15px 20px;
  flex-grow: 1;
}

/* FAQ Section */
.page-ban-ca__faq-section {
  padding: 60px 0;
  background: #7A0E0E; /* Deep Red */
  color: #FFF5E1;
}

.page-ban-ca__faq-list {
  max-width: 900px;
  margin: 0 auto;
}

details.page-ban-ca__faq-item {
  margin-bottom: 15px;
  border-radius: 10px;
  border: 1px solid #F2B544; /* Border */
  overflow: hidden;
  background: #D32F2F; /* Card B G */
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}
details.page-ban-ca__faq-item summary.page-ban-ca__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  cursor: pointer;
  user-select: none;
  list-style: none;
  transition: background-color 0.3s ease;
  color: #FFD86A; /* Gold-like */
}
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: #E53935; /* Auxiliary color */
}
.page-ban-ca__faq-qtext {
  flex: 1;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.5;
  text-align: left;
}