.page-ban-ca {
  font-family: 'Arial', sans-serif;
  color: var(--text-main, #FFF3E6);
  background-color: var(--background-color, #0D0E12);
}

.page-ban-ca__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  text-align: center;
  overflow: hidden;
  padding-bottom: 40px;
  padding-top: 10px; /* Small top padding, relying on body for header offset */
}

.page-ban-ca__hero-image-wrapper {
  width: 100%;
  max-height: 700px;
  overflow: hidden;
  position: relative;
}

.page-ban-ca__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  filter: brightness(0.7); /* Slightly darken image for text readability */
}

.page-ban-ca__hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  max-width: 900px;
  width: 100%;
  padding: 20px;
  box-sizing: border-box;
  background: rgba(0, 0, 0, 0.4); /* Semi-transparent background for text */
  border-radius: 10px;
}

.page-ban-ca__main-title {
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 700;
  color: #FFF3E6;
  margin-bottom: 15px;
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.page-ban-ca__description {
  font-size: 1.1rem;
  color: #f0f0f0;
  margin-bottom: 30px;
  line-height: 1.6;
}

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

.page-ban-ca__btn-primary,
.page-ban-ca__btn-secondary,
.page-ban-ca__btn-small,
.page-ban-ca__btn-promo {
  display: inline-block;
  padding: 14px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1rem;
  transition: all 0.3s ease;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
  text-align: center;
}

.page-ban-ca__btn-primary {
  background: linear-gradient(180deg, #FFA53A 0%, #D96800 100%);
  color: #ffffff;
  border: none;
  box-shadow: 0 4px 15px rgba(255, 132, 0, 0.4);
}

.page-ban-ca__btn-primary:hover {
  background: linear-gradient(180deg, #FFB04D 0%, #E67A00 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 132, 0, 0.6);
}

.page-ban-ca__btn-secondary {
  background: #17191F; /* Card BG */
  color: #FFA53A;
  border: 2px solid #FFA53A;
  box-shadow: 0 4px 15px rgba(255, 165, 58, 0.2);
}

.page-ban-ca__btn-secondary:hover {
  background: #2a2d34;
  color: #FFB04D;
  border-color: #FFB04D;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 165, 58, 0.4);
}

.page-ban-ca__btn-small {
  display: inline-block;
  padding: 8px 18px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  background: linear-gradient(180deg, #FFA53A 0%, #D96800 100%);
  color: #ffffff;
  border: none;
  transition: all 0.3s ease;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
  text-align: center;
}

.page-ban-ca__btn-small:hover {
  background: linear-gradient(180deg, #FFB04D 0%, #E67A00 100%);
  transform: translateY(-1px);
}

.page-ban-ca__btn-promo {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 7px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  background: linear-gradient(180deg, #FFA53A 0%, #D96800 100%);
  color: #ffffff;
  border: none;
  transition: all 0.3s ease;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
  text-align: center;
}

.page-ban-ca__btn-promo:hover {
  background: linear-gradient(180deg, #FFB04D 0%, #E67A00 100%);
  transform: translateY(-1px);
}

.page-ban-ca__section {
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}

.page-ban-ca__introduction-section {
  background-color: var(--background-color, #0D0E12);
}

.page-ban-ca__game-types-section,
.page-ban-ca__strategy-section,
.page-ban-ca__benefits-section,
.page-ban-ca__conclusion-section {
  background-color: var(--card-b-g, #17191F);
}

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

.page-ban-ca__section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  color: #FF8C1A;
  text-align: center;
  margin-bottom: 40px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.page-ban-ca__description {
  font-size: 1.1rem;
  color: #f0f0f0;
  margin-bottom: 30px;
  line-height: 1.6;
}

.page-ban-ca__content-wrapper {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-bottom: 40px;
}

.page-ban-ca__text-block {
  flex: 1;
}

.page-ban-ca__text-block p {
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 15px;
  color: var(--text-main, #FFF3E6);
}

.page-ban-ca__highlight {
  color: #FFA53A;
  font-weight: 700;
}

.page-ban-ca__content-image {
  flex-shrink: 0;
  width: 500px;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  max-width: 100%;
  display: block;
}

.page-ban-ca__cta-block {
  text-align: center;
  margin-top: 40px;
}

.page-ban-ca__cta-block p {
  font-size: 1.2rem;
  margin-bottom: 25px;
  font-weight: 600;
  color: #FFF3E6;
}

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

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

.page-ban-ca__game-card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  margin-bottom: 15px;
}

.page-ban-ca__game-card-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: #FFA53A;
  margin-bottom: 10px;
  padding: 0 15px;
}

.page-ban-ca__game-card-text {
  font-size: 0.95rem;
  color: #f0f0f0;
  line-height: 1.6;
  margin-bottom: 20px;
  flex-grow: 1;
  padding: 0 15px;
}

.page-ban-ca__game-trial-section {
  background: var(--background-color, #0D0E12);
  border: 1px solid var(--border-color, #A84F0C);
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
}

.page-ban-ca__game-trial-title {
  font-size: 1.8rem;
  color: #FF8C1A;
  margin-bottom: 15px;
}

.page-ban-ca__game-trial-description {
  font-size: 1.05rem;
  color: #f0f0f0;
  margin-bottom: 30px;
}

.page-ban-ca__iframe-wrapper {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  background: #000;
  border-radius: 8px;
  overflow: hidden;
}

.page-ban-ca__game-trial-frame {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

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

.page-ban-ca__guide-item {
  background: var(--card-b-g, #17191F);
  border: 1px solid var(--border-color, #A84F0C);
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
}

.page-ban-ca__guide-item-title {
  font-size: 1.5rem;
  color: #FFA53A;
  margin-bottom: 15px;
}

.page-ban-ca__guide-item p {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-main, #FFF3E6);
}

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

.page-ban-ca__strategy-card {
  background: var(--background-color, #0D0E12);
  border: 1px solid var(--border-color, #A84F0C);
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
}

.page-ban-ca__strategy-card-title {
  font-size: 1.4rem;
  color: #FFA53A;
  margin-bottom: 10px;
}

.page-ban-ca__strategy-card-text {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #f0f0f0;
}

.page-ban-ca__strategy-image {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  max-width: 100%;
  display: block;
  margin-top: 30px;
}

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

.page-ban-ca__promo-card {
  background: var(--card-b-g, #17191F);
  border: 1px solid var(--border-color, #A84F0C);
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-ban-ca__promo-card-title {
  font-size: 1.5rem;
  color: #FF8C1A;
  margin-bottom: 15px;
}

.page-ban-ca__promo-card-text {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-main, #FFF3E6);
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-ban-ca__promo-image {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  max-width: 100%;
  display: block;
  margin-top: 30px;
}

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