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

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

.page-ban-ca__section {
  padding: 60px 0;
}

.page-ban-ca__section--about {
  background-color: #11271B;
}

.page-ban-ca__section-title {
  font-size: 38px;
  font-weight: 700;
  text-align: center;
  color: #F2C14E;
  margin-bottom: 40px;
  line-height: 1.2;
}

.page-ban-ca__text-block {
  font-size: 17px;
  text-align: center;
  margin-bottom: 30px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  color: #A7D9B8;
}

.page-ban-ca__text-block a {
  color: #57E38D;
  text-decoration: underline;
}

/* Hero Section */
.page-ban-ca__hero-section {
  position: relative;
  padding-top: 10px; /* Small top padding */
  padding-bottom: 60px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: #08160F;
}

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

.page-ban-ca__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 8px;
}

.page-ban-ca__hero-content-wrapper {
  max-width: 900px;
  margin-top: 40px;
  padding: 0 15px;
}

.page-ban-ca__main-title {
  font-size: 52px;
  font-weight: 800;
  color: #F2FFF6;
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-ban-ca__hero-description {
  font-size: 20px;
  color: #A7D9B8;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-ban-ca__cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
}

.page-ban-ca__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 30px;
  border-radius: 50px;
  font-size: 18px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  white-space: nowrap;
  cursor: pointer;
  box-sizing: border-box;
}

.page-ban-ca__btn--primary {
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  color: #F2FFF6;
  border: none;
  box-shadow: 0 4px 15px rgba(42, 209, 111, 0.4);
}

.page-ban-ca__btn--primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(42, 209, 111, 0.6);
}

.page-ban-ca__btn--secondary {
  background: #11271B;
  color: #57E38D;
  border: 2px solid #57E38D;
}

.page-ban-ca__btn--secondary:hover {
  background: #57E38D;
  color: #11271B;
  transform: translateY(-3px);
}

/* Features Grid */
.page-ban-ca__features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.page-ban-ca__feature-item {
  background-color: #0A4B2C;
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  border: 1px solid #2E7A4E;
}

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

.page-ban-ca__feature-title {
  font-size: 24px;
  color: #F2C14E;
  margin-bottom: 15px;
  font-weight: 700;
}

.page-ban-ca__feature-description {
  font-size: 16px;
  color: #A7D9B8;
}

/* Game Cards Grid */
.page-ban-ca__section--games {
  background-color: #08160F;
}

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

.page-ban-ca__game-card {
  background-color: #11271B;
  padding: 25px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  border: 1px solid #2E7A4E;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.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: 22px;
  color: #F2FFF6;
  margin-bottom: 15px;
  font-weight: 700;
}

.page-ban-ca__game-title a {
  color: #F2FFF6;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-ban-ca__game-title a:hover {
  color: #F2C14E;
}

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

.page-ban-ca__btn--play {
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  color: #F2FFF6;
  border: none;
  padding: 10px 20px;
  font-size: 16px;
  border-radius: 50px;
  box-shadow: 0 2px 10px rgba(42, 209, 111, 0.3);
  width: fit-content;
  margin: 0 auto;
}

.page-ban-ca__btn--play:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(42, 209, 111, 0.5);
}

/* Guide Steps */
.page-ban-ca__section--guide {
  background-color: #11271B;
}

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

.page-ban-ca__step-item {
  background-color: #0A4B2C;
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  border: 1px solid #2E7A4E;
}

.page-ban-ca__step-title {
  font-size: 26px;
  color: #F2C14E;
  margin-bottom: 15px;
  font-weight: 700;
}

.page-ban-ca__step-description {
  font-size: 16px;
  color: #A7D9B8;
  margin-bottom: 25px;
}

.page-ban-ca__step-description a {
  color: #57E38D;
  text-decoration: underline;
}

.page-ban-ca__btn--small {
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  color: #F2FFF6;
  border: none;
  padding: 10px 20px;
  font-size: 15px;
  border-radius: 50px;
  box-shadow: 0 2px 10px rgba(42, 209, 111, 0.3);
  width: fit-content;
  margin: 0 auto;
}

.page-ban-ca__btn--small:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(42, 209, 111, 0.5);
}

/* Strategy Grid */
.page-ban-ca__section--strategy {
  background-color: #08160F;
}

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

.page-ban-ca__strategy-item {
  background-color: #11271B;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  border: 1px solid #2E7A4E;
}

.page-ban-ca__strategy-title {
  font-size: 22px;
  color: #F2FFF6;
  margin-bottom: 15px;
  font-weight: 700;
}

.page-ban-ca__strategy-description {
  font-size: 16px;
  color: #A7D9B8;
}

.page-ban-ca__cta-block {
  text-align: center;
  margin-top: 60px;
  padding: 30px;
  background-color: #0A4B2C;
  border-radius: 12px;
  border: 1px solid #2E7A4E;
}

.page-ban-ca__cta-text {
  font-size: 22px;
  color: #F2FFF6;
  margin-bottom: 30px;
  font-weight: 600;
}

/* Advantages Section */
.page-ban-ca__section--advantages {
  background-color: #11271B;
}

.page-ban-ca__advantage-list {
  list-style: none;
  padding: 0;
  margin-top: 50px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.page-ban-ca__advantage-item {
  background-color: #0A4B2C;
  padding: 25px;
  border-radius: 10px;
  font-size: 17px;
  color: #A7D9B8;
  border-left: 5px solid #F2C14E;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-ban-ca__advantage-item a {
  color: #57E38D;
  text-decoration: underline;
}

/* FAQ Section */
.page-ban-ca__section--faq {
  background-color: #08160F;
}

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

details.page-ban-ca__faq-item {
  margin-bottom: 15px;
  border-radius: 5px;
  border: 1px solid #2E7A4E;
  overflow: hidden;
  background: #11271B;
}

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: #0A4B2C;
}

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

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

details.page-ban-ca__faq-item .page-ban-ca__faq-answer {
  padding: 0 20px 20px;
  background: #0A4B2C;
  border-radius: 0 0 5px 5px;
  color: #A7D9B8;
}

.page-ban-ca__faq-answer p {
  margin: 0;
  font-size: 16px;
}

.page-ban-ca__faq-answer a {
  color: #57E38D;
  text-decoration: underline;
}

/* Conclusion Section */
.page-ban-ca__section--conclusion {
  background-color: #11271B;
}

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

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-ban-ca__main-title {
    font-size: 44px;
  }
  .page-ban-ca__hero-description {
    font-size: 18px;
  }
  .page-ban-ca__section-title {
    font-size: 34px;
  }
  .page-ban-ca__btn {
    padding: 12px 25px;
    font-size: 16px;
  }
  .page-ban-ca__game-card, .page-ban-ca__feature-item, .page-ban-ca__step-item {
    padding: 20px;
  }
  .page-ban-ca__faq-qtext {
    font-size: 17px;
  }
}

@media (max-width: 768px) {
  .page-ban-ca__hero-section {
    padding-top: 10px; /* Ensure small top padding */
    padding-bottom: 40px;
  }
  .page-ban-ca__hero-image-wrapper {
    max-height: 400px;
  }
  .page-ban-ca__hero-image {
    object-fit: contain !important; /* Prevent cropping on mobile */
    aspect-ratio: unset !important; /* Allow natural aspect ratio */
    height: auto !important;
  }
  .page-ban-ca__hero-content-wrapper {
    margin-top: 30px;
  }
  .page-ban-ca__main-title {
    font-size: 32px;
    margin-bottom: 15px;
  }
  .page-ban-ca__hero-description {
    font-size: 16px;
    margin-bottom: 30px;
  }
  .page-ban-ca__cta-buttons {
    flex-direction: column;
    gap: 15px;
    max-width: 100% !important;
    width: 100% !important;
    padding: 0 15px;
    box-sizing: border-box !important;
  }
  .page-ban-ca__btn {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-ban-ca__section {
    padding: 40px 0;
  }
  .page-ban-ca__section-title {
    font-size: 28px;
    margin-bottom: 30px;
  }
  .page-ban-ca__text-block {
    font-size: 15px;
    margin-bottom: 20px;
    padding: 0 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
  .page-ban-ca__features-grid,
  .page-ban-ca__game-cards-grid,
  .page-ban-ca__guide-steps,
  .page-ban-ca__strategy-grid {
    grid-template-columns: 1fr;
    gap: 25px;
    margin-top: 30px;
  }
  .page-ban-ca__feature-image,
  .page-ban-ca__game-image {
    height: 200px;
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    box-sizing: border-box !important;
  }
  .page-ban-ca__feature-item, .page-ban-ca__game-card, .page-ban-ca__step-item, .page-ban-ca__strategy-item {
    padding: 20px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
  .page-ban-ca__feature-title,
  .page-ban-ca__game-title,
  .page-ban-ca__step-title,
  .page-ban-ca__strategy-title {
    font-size: 20px;
  }
  .page-ban-ca__feature-description,
  .page-ban-ca__game-description,
  .page-ban-ca__step-description,
  .page-ban-ca__strategy-description {
    font-size: 15px;
  }
  .page-ban-ca__btn--small {
    padding: 8px 18px;
    font-size: 14px;
  }
  .page-ban-ca__cta-block {
    margin-top: 40px;
    padding: 25px;
  }
  .page-ban-ca__cta-text {
    font-size: 18px;
    margin-bottom: 25px;
  }
  .page-ban-ca__advantage-list {
    margin-top: 30px;
    padding: 0 15px;
  }
  .page-ban-ca__advantage-item {
    font-size: 15px;
    padding: 20px;
  }
  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: 20px;
    width: 24px;
    margin-left: 10px;
  }
  details.page-ban-ca__faq-item .page-ban-ca__faq-answer {
    padding: 0 15px 15px;
  }
  .page-ban-ca__faq-answer p {
    font-size: 15px;
  }
  .page-ban-ca__cta-final {
    margin-top: 30px;
  }
  .page-ban-ca__products-section,
  .page-ban-ca__container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-ban-ca img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    box-sizing: border-box !important;
  }
  .page-ban-ca__game-cards-grid {
    overflow-x: hidden;
  }
}