/* style/ban-ca.css */

/* Base styles for the page content, inheriting from body if needed */
.page-ban-ca {
  color: #FFF6D6; /* Main text color for dark body background */
  background-color: #0A0A0A; /* Ensure consistent dark background for main content */
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

.page-ban-ca__container {
  max-width: 1170px;
  margin: 0 auto;
  padding: 40px 16px;
  box-sizing: border-box;
}

.page-ban-ca__section-title {
  font-size: 2.8em;
  color: #F2C14E; /* Primary brand color for titles */
  text-align: center;
  margin-bottom: 20px;
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: 0.02em;
}

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

/* --- Hero Section --- */
.page-ban-ca__hero-section {
  padding-top: 10px; /* Small top padding, relying on body for header offset */
  padding-bottom: 60px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column; /* Image on top, content below */
  align-items: center;
  background-color: #0A0A0A; /* Ensure background matches body */
}

.page-ban-ca__hero-image-wrapper {
  width: 100%;
  max-width: 1920px; /* Max width for the image container */
  margin-bottom: 30px; /* Space between image and text */
}

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

.page-ban-ca__hero-content-wrapper {
  text-align: center;
  max-width: 900px;
  padding: 0 16px;
  box-sizing: border-box;
}

.page-ban-ca__hero-title {
  font-size: clamp(2.5em, 4vw, 3.5em); /* Responsive font size */
  color: #FFD36B; /* Auxiliary color for main title */
  margin-bottom: 20px;
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: 0.03em;
  text-shadow: 0 0 10px rgba(255, 211, 107, 0.5); /* Subtle glow */
}

.page-ban-ca__hero-description {
  font-size: 1.2em;
  color: #FFF6D6;
  margin-bottom: 40px;
  line-height: 1.5;
}

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

.page-ban-ca__cta-button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  white-space: normal; /* Allow text wrap */
  word-wrap: break-word; /* Allow text wrap */
  box-sizing: border-box;
  max-width: 100%;
}

.page-ban-ca__cta-button--primary {
  background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
  color: #111111; /* Dark text for light button */
  border: none;
}

.page-ban-ca__cta-button--primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(255, 211, 107, 0.4);
}

.page-ban-ca__cta-button--secondary {
  background: transparent;
  color: #FFD36B;
  border: 2px solid #FFD36B;
}

.page-ban-ca__cta-button--secondary:hover {
  background: rgba(255, 211, 107, 0.1);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(255, 211, 107, 0.2);
}

/* --- Intro Section --- */
.page-ban-ca__intro-section {
  background-color: #111111; /* Card BG color */
  padding: 60px 0;
  border-top: 1px solid #3A2A12;
}

.page-ban-ca__intro-features {
  display: flex;
  justify-content: space-around;
  gap: 30px;
  flex-wrap: wrap;
  margin-top: 40px;
}

.page-ban-ca__feature-item {
  flex: 1 1 300px; /* Allows items to grow/shrink, min width 300px */
  text-align: center;
  padding: 20px;
  border-radius: 12px;
  background-color: #0A0A0A; /* Darker background for features */
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  border: 1px solid #3A2A12;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-ban-ca__feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(255, 211, 107, 0.2);
}

.page-ban-ca__icon-box-media {
  width: 200px; /* Fixed width for desktop */
  height: 200px; /* Fixed height for desktop */
  aspect-ratio: 1 / 1;
  margin: 0 auto 25px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid #F2C14E;
  box-shadow: 0 0 15px rgba(242, 193, 78, 0.6);
}

.page-ban-ca__icon-box-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 50%; /* Ensure image is round */
}

.page-ban-ca__feature-title {
  font-size: 1.8em;
  color: #FFD36B;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-ban-ca__feature-text {
  font-size: 1em;
  color: #FFF6D6;
}

/* --- Features Section (List) --- */
.page-ban-ca__features-section {
  background-color: #0A0A0A;
  padding: 60px 0;
}

.page-ban-ca__features-list {
  list-style: none;
  padding: 0;
  max-width: 900px;
  margin: 0 auto;
}

.page-ban-ca__features-list li {
  background-color: #111111;
  border: 1px solid #3A2A12;
  border-radius: 8px;
  padding: 20px 25px;
  margin-bottom: 15px;
  font-size: 1.1em;
  color: #FFF6D6;
  position: relative;
  padding-left: 45px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-ban-ca__features-list li::before {
  content: '✓';
  color: #F2C14E;
  font-size: 1.4em;
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  font-weight: bold;
}

.page-ban-ca__features-list li strong {
  color: #FFD36B;
}

/* --- Game Types Section --- */
.page-ban-ca__game-types-section {
  background-color: #111111;
  padding: 60px 0;
  border-top: 1px solid #3A2A12;
}

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

.page-ban-ca__game-card {
  background-color: #0A0A0A;
  border: 1px solid #3A2A12;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-ban-ca__game-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(255, 211, 107, 0.2);
}

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

.page-ban-ca__game-card-content {
  padding: 20px;
}

.page-ban-ca__game-card-title {
  font-size: 1.6em;
  margin-bottom: 10px;
  font-weight: bold;
}

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

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

.page-ban-ca__game-card-description {
  font-size: 0.95em;
  color: #FFF6D6;
  margin-bottom: 20px;
}

.page-ban-ca__cta-button--small {
  padding: 10px 20px;
  font-size: 0.9em;
  border-radius: 6px;
  background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
  color: #111111;
  border: none;
}

.page-ban-ca__cta-button--small:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(255, 211, 107, 0.3);
}

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

.page-ban-ca__guide-content {
  display: flex;
  gap: 40px;
  align-items: flex-start;
  flex-wrap: wrap;
}

.page-ban-ca__guide-steps {
  flex: 1 1 500px;
}

.page-ban-ca__guide-steps ol {
  list-style: none;
  counter-reset: guide-counter;
  padding: 0;
}

.page-ban-ca__guide-steps li {
  counter-increment: guide-counter;
  margin-bottom: 25px;
  position: relative;
  padding-left: 50px;
  font-size: 1.1em;
  color: #FFF6D6;
}

.page-ban-ca__guide-steps li::before {
  content: counter(guide-counter);
  position: absolute;
  left: 0;
  top: 0;
  background-color: #F2C14E;
  color: #0A0A0A;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: bold;
  font-size: 1.2em;
  box-shadow: 0 2px 8px rgba(242, 193, 78, 0.4);
}

.page-ban-ca__guide-steps li strong {
  color: #FFD36B;
  display: block;
  margin-bottom: 5px;
  font-size: 1.2em;
}

.page-ban-ca__guide-steps li p {
  font-size: 1em;
  color: #FFF6D6;
}

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

.page-ban-ca__guide-image {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
  border: 1px solid #3A2A12;
}

/* --- Tips Section --- */
.page-ban-ca__tips-section {
  background-color: #111111;
  padding: 60px 0;
  border-top: 1px solid #3A2A12;
}

.page-ban-ca__tips-content {
  display: flex;
  gap: 40px;
  align-items: flex-start;
  flex-wrap: wrap;
}

.page-ban-ca__tips-list-wrapper {
  flex: 1 1 500px;
}

.page-ban-ca__tips-list {
  list-style: none;
  padding: 0;
}

.page-ban-ca__tips-list li {
  background-color: #0A0A0A;
  border: 1px solid #3A2A12;
  border-radius: 8px;
  padding: 18px 20px;
  margin-bottom: 15px;
  font-size: 1.1em;
  color: #FFF6D6;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  transition: transform 0.2s ease;
}

.page-ban-ca__tips-list li:hover {
  transform: translateX(5px);
}

.page-ban-ca__tips-list li strong {
  color: #FFD36B;
}

.page-ban-ca__tips-image-wrapper {
  flex: 1 1 400px;
  text-align: center;
}

.page-ban-ca__tips-image {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
  border: 1px solid #3A2A12;
}

/* --- Promo Section --- */
.page-ban-ca__promo-section {
  background-color: #0A0A0A;
  padding: 60px 0;
}

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

.page-ban-ca__promo-card {
  background-color: #111111;
  border: 1px solid #3A2A12;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}