/* style/bn-c.css */
:root {
  --primary-color: #FFD700;
  --secondary-color: #8B0000;
  --dark-bg: #1a1a1a;
  --light-text: #f0f0f0;
  --dark-text: #333333;
  --card-bg: #282828;
  --border-color: #444444;
}

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

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

.page-bn-c section {
  padding: 80px 0;
  text-align: center;
}

.page-bn-c section:nth-child(even) {
  background-color: #222222;
}

.page-bn-c .section-title {
  font-size: 2.8em;
  color: var(--primary-color);
  margin-bottom: 40px;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.page-bn-c .sub-section-title {
  font-size: 2em;
  color: var(--light-text);
  margin-top: 50px;
  margin-bottom: 25px;
  font-weight: 600;
}

.page-bn-c p {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: #cccccc;
}

.page-bn-c a {
  color: var(--primary-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-bn-c a:hover {
  color: #ffd700;
  text-decoration: underline;
}

/* Buttons */
.page-bn-c .btn {
  display: inline-block;
  padding: 15px 35px;
  border-radius: 5px;
  font-size: 1.1em;
  font-weight: bold;
  text-transform: uppercase;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  margin: 10px;
}

.page-bn-c .btn-primary {
  background-color: var(--primary-color);
  color: var(--dark-text);
}

.page-bn-c .btn-primary:hover {
  background-color: #ffd700;
  box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
  transform: translateY(-2px);
}

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

.page-bn-c .btn-secondary:hover {
  background-color: #a00000;
  border-color: #a00000;
  box-shadow: 0 5px 15px rgba(139, 0, 0, 0.4);
  transform: translateY(-2px);
}

.page-bn-c .btn-sm {
  padding: 10px 25px;
  font-size: 0.95em;
}

/* Hero Banner */
.page-bn-c .hero-banner {
  background: linear-gradient(135deg, #1a1a1a 0%, #333333 100%);
  padding: 100px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 600px;
}

.page-bn-c .hero-banner .container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  text-align: left;
}

.page-bn-c .hero-content {
  flex: 1;
  min-width: 300px;
  padding-right: 40px;
}

.page-bn-c .hero-content .main-title {
  font-size: 3.8em;
  color: var(--primary-color);
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.6);
}

.page-bn-c .hero-content .subtitle {
  font-size: 1.4em;
  color: #e0e0e0;
  margin-bottom: 40px;
  line-height: 1.5;
}

.page-bn-c .hero-image {
  flex: 1;
  min-width: 400px;
  text-align: right;
}

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

/* Feature Lists */
.page-bn-c .list-features,
.page-bn-c .list-tips,
.page-bn-c .list-payment {
  list-style: none;
  padding: 0;
  margin: 30px 0;
  text-align: left;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.page-bn-c .list-features li,
.page-bn-c .list-tips li,
.page-bn-c .list-payment li {
  background-color: var(--card-bg);
  padding: 20px;
  border-radius: 8px;
  border-left: 5px solid var(--primary-color);
  font-size: 1.05em;
  color: #ccc;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.page-bn-c .list-features li strong,
.page-bn-c .list-tips li strong,
.page-bn-c .list-payment li strong {
  color: var(--primary-color);
}

/* Image styles */
.page-bn-c .img-fluid {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-top: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.page-bn-c .feature-img, .page-bn-c .guide-img, .page-bn-c .safety-img {
  margin-top: 40px;
  margin-bottom: 40px;
}

/* Game Grid / Promo Grid / Blog Grid */
.page-bn-c .game-grid,
.page-bn-c .promo-grid,
.page-bn-c .blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-bn-c .game-card,
.page-bn-c .promo-card,
.page-bn-c .blog-card {
  background-color: var(--card-bg);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-bn-c .card-img-top {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.page-bn-c .card-body {
  padding: 25px;
}

.page-bn-c .card-title {
  font-size: 1.5em;
  margin-bottom: 15px;
  color: var(--primary-color);
  line-height: 1.3;
}

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

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

.page-bn-c .card-text {
  font-size: 1em;
  color: #b0b0b0;
  margin-bottom: 20px;
}

/* Step List */
.page-bn-c .step-list {
  list-style: none;
  counter-reset: step-counter;
  padding: 0;
  margin: 30px 0;
  text-align: left;
}

.page-bn-c .step-list li {
  counter-increment: step-counter;
  background-color: var(--card-bg);
  padding: 20px 25px;
  border-radius: 8px;
  margin-bottom: 15px;
  position: relative;
  padding-left: 60px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.page-bn-c .step-list li::before {
  content: counter(step-counter);
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  background-color: var(--primary-color);
  color: var(--dark-text);
  width: 35px;
  height: 35px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.2em;
}

/* FAQ Section */
.page-bn-c .faq-list {
  margin-top: 40px;
  text-align: left;
}

.page-bn-c .faq-item {
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

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

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

.page-bn-c .faq-question h3 {
  margin: 0;
  font-size: 1.2em;
  color: var(--light-text);
  font-weight: 600;
}

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

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

.page-bn-c .faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, padding 0.4s ease-out;
  padding: 0 25px;
  background: #2a2a2a;
  border-radius: 0 0 8px 8px;
}

.page-bn-c .faq-item.active .faq-answer {
  max-height: 500px; /* Sufficient height for content */
  padding: 20px 25px;
}

.page-bn-c .faq-answer p {
  margin: 0;
  color: #cccccc;
  font-size: 1em;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-bn-c .hero-banner .container {
    flex-direction: column;
    text-align: center;
  }

  .page-bn-c .hero-content {
    padding-right: 0;
    margin-bottom: 40px;
  }

  .page-bn-c .hero-image {
    text-align: center;
  }

  .page-bn-c .hero-content .main-title {
    font-size: 3em;
  }

  .page-bn-c .hero-content .subtitle {
    font-size: 1.2em;
  }

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

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

  .page-bn-c .game-grid, .page-bn-c .promo-grid, .page-bn-c .blog-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .page-bn-c section {
    padding: 60px 0;
  }

  .page-bn-c .hero-banner {
    padding: 80px 0;
    min-height: auto;
  }

  .page-bn-c .hero-content .main-title {
    font-size: 2.5em;
  }

  .page-bn-c .hero-content .subtitle {
    font-size: 1em;
  }

  .page-bn-c .btn {
    padding: 12px 25px;
    font-size: 1em;
    margin: 8px;
  }

  .page-bn-c .section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
  }

  .page-bn-c .sub-section-title {
    font-size: 1.5em;
    margin-top: 40px;
    margin-bottom: 20px;
  }

  .page-bn-c p {
    font-size: 0.95em;
  }

  .page-bn-c .list-features li, .page-bn-c .list-tips li, .page-bn-c .list-payment li {
    padding: 15px;
    font-size: 0.95em;
  }

  .page-bn-c .card-body {
    padding: 20px;
  }

  .page-bn-c .card-title {
    font-size: 1.3em;
  }

  .page-bn-c .card-text {
    font-size: 0.9em;
  }

  .page-bn-c .step-list li {
    padding-left: 50px;
  }

  .page-bn-c .step-list li::before {
    width: 30px;
    height: 30px;
    font-size: 1.1em;
  }

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

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

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

  .page-bn-c .faq-answer {
    padding: 0 20px;
  }

  .page-bn-c .faq-item.active .faq-answer {
    padding: 15px 20px;
  }
}