:root {
  --primary-color: #e53e3e; /* Đỏ tươi */
  --secondary-color: #1a202c; /* Xám xanh đậm */
  --text-light: #ffffff;
  --text-dark: #cbd5e0; /* Xám nhạt hơn cho nội dung */
  --background-dark: #1a202c;
  --background-light: #2d3748; /* Nền xám xanh nhẹ */
  --border-color: #4a5568;
  --accent-color: #f6ad55; /* Vàng cam cho điểm nhấn */
}

.page-bn-c {
  font-family: 'Arial', sans-serif;
  color: var(--text-dark);
  background-color: var(--background-dark);
  line-height: 1.6;
}

.page-bn-c .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-bn-c .section-title {
  font-size: 3em;
  color: var(--text-light);
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
  line-height: 1.2;
}

.page-bn-c .section-description {
  font-size: 1.1em;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 60px auto;
  color: var(--text-dark);
}

.page-bn-c .highlight-text {
  color: var(--primary-color);
}

.page-bn-c .cta-button {
  display: inline-block;
  padding: 15px 35px;
  border-radius: 8px;
  font-size: 1.1em;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
  text-align: center;
}

.page-bn-c .cta-button.primary {
  background-color: var(--primary-color);
  color: var(--text-light);
  border: 2px solid var(--primary-color);
}

.page-bn-c .cta-button.primary:hover {
  background-color: #c53030;
  border-color: #c53030;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-bn-c .cta-button.secondary {
  background-color: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

.page-bn-c .cta-button.secondary:hover {
  background-color: var(--primary-color);
  color: var(--text-light);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-bn-c .cta-button.large {
  padding: 18px 45px;
  font-size: 1.3em;
}

.page-bn-c .cta-button.small {
  padding: 10px 20px;
  font-size: 0.9em;
  margin-top: 15px;
}

/* Hero Section */
.page-bn-c .hero-banca-section {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #000000 100%);
  padding: 80px 0;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-bn-c .hero-banca-section .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

.page-bn-c .hero-banca-section .hero-content {
  max-width: 900px;
}

.page-bn-c .hero-banca-section .main-title {
  font-size: 4em;
  color: var(--text-light);
  margin-bottom: 20px;
  line-height: 1.1;
}

.page-bn-c .hero-banca-section .intro-text {
  font-size: 1.3em;
  color: var(--text-dark);
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-bn-c .hero-banca-section .cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.page-bn-c .hero-banca-section .hero-image {
  width: 100%;
  max-width: 1000px;
}

.page-bn-c .hero-banca-section .hero-image img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  object-fit: cover;
}

/* About Bắn Cá Section */
.page-bn-c .about-banca-section {
  padding: 100px 0;
  background-color: var(--background-light);
}

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

.page-bn-c .feature-item {
  background-color: #2d3748;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-bn-c .feature-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.4);
}

.page-bn-c .feature-icon {
  width: 100%; /* Make sure it's not a small icon, use a full image */
  max-width: 250px; 
  height: auto; 
  margin-bottom: 20px;
  border-radius: 8px;
}

.page-bn-c .feature-title {
  font-size: 1.8em;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.page-bn-c .feature-text {
  font-size: 1em;
  color: var(--text-dark);
}

/* How to Play Section */
.page-bn-c .how-to-play-section {
  padding: 100px 0;
  background-color: var(--background-dark);
}

.page-bn-c .step-list {
  list-style: none;
  padding: 0;
  counter-reset: step-counter;
}

.page-bn-c .step-list li {
  background-color: var(--background-light);
  padding: 30px;
  margin-bottom: 20px;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-bn-c .step-list li::before {
  counter-increment: step-counter;
  content: "0" counter(step-counter);
  font-size: 2.5em;
  font-weight: bold;
  color: var(--primary-color);
  position: absolute;
  left: 20px;
  top: 20px;
  opacity: 0.2;
}

.page-bn-c .step-title {
  font-size: 1.8em;
  color: var(--text-light);
  margin-bottom: 10px;
  padding-left: 70px; /* Space for step number */
}

.page-bn-c .step-text {
  font-size: 1em;
  color: var(--text-dark);
  padding-left: 70px;
}

/* Game Variety Section */
.page-bn-c .game-variety-section {
  padding: 100px 0;
  background-color: var(--background-light);
}

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

.page-bn-c .game-card {
  background-color: #2d3748;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-bn-c .game-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.4);
}

.page-bn-c .game-card .card-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
}

.page-bn-c .game-card .card-title {
  font-size: 1.5em;
  color: var(--primary-color);
  padding: 20px 20px 10px 20px;
}

.page-bn-c .game-card .card-title a {
  color: var(--primary-color);
  text-decoration: none;
}

.page-bn-c .game-card .card-title a:hover {
  text-decoration: underline;
}

.page-bn-c .game-card .card-text {
  font-size: 0.95em;
  color: var(--text-dark);
  padding: 0 20px 20px 20px;
}

/* Promotion Section */
.page-bn-c .promotion-section {
  padding: 100px 0;
  background-color: var(--background-dark);
}

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

.page-bn-c .promo-list li {
  background-color: var(--background-light);
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-bn-c .promo-icon {
  width: 100%; /* Not a small icon */
  max-width: 200px; 
  height: auto; 
  margin-bottom: 20px;
  border-radius: 8px;
}

.page-bn-c .promo-title {
  font-size: 1.8em;
  color: var(--text-light);
  margin-bottom: 15px;
}

.page-bn-c .promo-text {
  font-size: 1em;
  color: var(--text-dark);
  flex-grow: 1;
}

/* Safety Section */
.page-bn-c .safety-section {
  padding: 100px 0;
  background-color: var(--background-light);
}

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

.page-bn-c .safety-item {
  background-color: #2d3748;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-bn-c .safety-icon {
  width: 100%; /* Not a small icon */
  max-width: 200px; 
  height: auto; 
  margin-bottom: 20px;
  border-radius: 8px;
}

.page-bn-c .safety-title {
  font-size: 1.8em;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.page-bn-c .safety-text {
  font-size: 1em;
  color: var(--text-dark);
}

/* FAQ Section */
.page-bn-c .faq-section {
  padding: 100px 0;
  background-color: var(--background-dark);
}

.page-bn-c .faq-list {
  max-width: 900px;
  margin: 0 auto;
}

.page-bn-c .faq-item {
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
}

.page-bn-c .faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  background: var(--background-light);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.page-bn-c .faq-question:hover {
  background: #3a475c;
}

.page-bn-c .faq-question h3 {
  margin: 0;
  font-size: 1.2em;
  color: var(--text-light);
  flex-grow: 1;
  text-align: left;
}

.page-bn-c .faq-toggle {
  font-size: 24px;
  font-weight: bold;
  color: var(--primary-color);
  transition: transform 0.3s ease;
  margin-left: 15px;
}

.page-bn-c .faq-item.active .faq-toggle {
  transform: rotate(45deg);
}

.page-bn-c .faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, padding 0.4s ease-out;
  background: #232a35;
  color: var(--text-dark);
  padding: 0 20px;
  border-radius: 0 0 8px 8px;
}

.page-bn-c .faq-item.active .faq-answer {
  max-height: 500px; /* Adjust as needed for content */
  padding: 20px;
  border: 1px solid var(--border-color);
  border-top: none;
}

.page-bn-c .faq-answer p {
  margin: 0;
  line-height: 1.8;
}

/* Call to Action Bottom Section */
.page-bn-c .cta-bottom-section {
  padding: 80px 0;
  background-color: var(--secondary-color);
  text-align: center;
}

.page-bn-c .cta-bottom-section .section-title {
  font-size: 3em;
  color: var(--text-light);
  margin-bottom: 20px;
}

.page-bn-c .cta-bottom-section .section-description {
  color: var(--text-dark);
  margin-bottom: 40px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-bn-c .hero-banca-section .main-title {
    font-size: 3.5em;
  }

  .page-bn-c .section-title {
    font-size: 2.5em;
  }
}

@media (max-width: 768px) {
  .page-bn-c .hero-banca-section .main-title {
    font-size: 2.5em;
  }

  .page-bn-c .hero-banca-section .intro-text {
    font-size: 1.1em;
  }

  .page-bn-c .hero-banca-section .cta-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .page-bn-c .cta-button {
    width: 100%;
  }

  .page-bn-c .section-title {
    font-size: 2em;
  }

  .page-bn-c .section-description {
    font-size: 1em;
  }

  .page-bn-c .feature-title,
  .page-bn-c .game-card .card-title,
  .page-bn-c .promo-title,
  .page-bn-c .safety-title {
    font-size: 1.5em;
  }

  .page-bn-c .step-title {
    font-size: 1.5em;
    padding-left: 0;
  }
  .page-bn-c .step-text {
    padding-left: 0;
  }
  .page-bn-c .step-list li::before {
    position: static;
    display: block;
    text-align: left;
    margin-bottom: 10px;
  }

  .page-bn-c .faq-question {
    padding: 15px;
  }

  .page-bn-c .faq-question h3 {
    font-size: 1em;
  }

  .page-bn-c .faq-toggle {
    font-size: 20px;
  }

  .page-bn-c .cta-bottom-section .section-title {
    font-size: 2.2em;
  }
}

@media (max-width: 480px) {
  .page-bn-c .hero-banca-section .main-title {
    font-size: 2em;
  }

  .page-bn-c .section-title {
    font-size: 1.8em;
  }

  .page-bn-c .cta-button.large {
    font-size: 1.1em;
    padding: 15px 30px;
  }
}