/* style/bn-c.css */
:root {
  --primary-color: #3A0CA3;
  --secondary-color: #FFD700;
  --text-dark: #333333;
  --text-light: #ffffff;
  --bg-light: #f4f4f4;
  --bg-dark: #1a0640;
  --accent-light: #ffeb3b;
  --border-color: #e0e0e0;
}

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

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

.page-bn-c h1, .page-bn-c h2, .page-bn-c h3 {
  color: var(--primary-color);
  margin-bottom: 20px;
  text-align: center;
}

.page-bn-c h1 {
  font-size: 2.8em;
  color: var(--text-light);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
}

.page-bn-c h2 {
  font-size: 2.2em;
  margin-top: 40px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--secondary-color);
  display: inline-block;
  text-align: center;
  width: 100%;
}

.page-bn-c h3 {
  font-size: 1.6em;
  color: var(--primary-color);
}

.page-bn-c p {
  margin-bottom: 15px;
  text-align: justify;
}

.page-bn-c ul {
  list-style-type: disc;
  margin-left: 20px;
  margin-bottom: 15px;
}

.page-bn-c li {
  margin-bottom: 8px;
}

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

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

/* Hero Section */
.page-bn-c .hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  background: linear-gradient(135deg, var(--primary-color) 0%, #0c022e 100%);
  color: var(--text-light);
  box-shadow: inset 0 -10px 20px rgba(0, 0, 0, 0.3);
}

.page-bn-c .hero-container {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.page-bn-c .hero-image {
  width: 100%;
  margin-bottom: 30px;
  max-height: 500px;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
}

.page-bn-c .hero-image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.page-bn-c .hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
}

.page-bn-c .hero-content p {
  font-size: 1.1em;
  max-width: 800px;
  margin: 0 auto 30px auto;
  color: #e0e0e0;
}

.page-bn-c .cta-button {
  display: inline-block;
  padding: 15px 40px;
  background: var(--secondary-color);
  color: var(--primary-color);
  text-decoration: none;
  border-radius: 8px;
  font-size: 1.2em;
  font-weight: bold;
  margin-top: 30px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  border: none;
  cursor: pointer;
}

.page-bn-c .cta-button:hover {
  background: #ffc107;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  color: var(--primary-color);
  text-decoration: none;
}

.page-bn-c .btn-small {
  display: inline-block;
  padding: 8px 20px;
  background: var(--primary-color);
  color: var(--text-light);
  text-decoration: none;
  border-radius: 5px;
  font-size: 0.9em;
  font-weight: bold;
  margin-top: 15px;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-bn-c .btn-small:hover {
  background: #5a27c7;
  transform: translateY(-1px);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  color: var(--text-light);
  text-decoration: none;
}

.page-bn-c .btn-secondary {
  display: inline-block;
  padding: 10px 25px;
  background: var(--primary-color);
  color: var(--text-light);
  text-decoration: none;
  border-radius: 5px;
  font-size: 1em;
  font-weight: bold;
  margin-top: 20px;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-bn-c .btn-secondary:hover {
  background: #5a27c7;
  transform: translateY(-1px);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  color: var(--text-light);
  text-decoration: none;
}

/* General Section Styling */
.page-bn-c section {
  padding: 60px 0;
  background-color: var(--bg-light);
  border-bottom: 1px solid var(--border-color);
}

.page-bn-c section:last-of-type {
  border-bottom: none;
}

.page-bn-c .introduction-section .features-grid,
.page-bn-c .game-cards-grid,
.page-bn-c .guide-steps,
.page-bn-c .security-items {
  display: grid;
  gap: 30px;
  margin-top: 40px;
}

.page-bn-c .introduction-section .features-grid {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  text-align: center;
}

.page-bn-c .feature-item {
  background: #ffffff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.page-bn-c .feature-item:hover {
  transform: translateY(-5px);
}

.page-bn-c .feature-item img {
  width: 100%;
  max-width: 300px;
  height: auto;
  margin-bottom: 20px;
  border-radius: 8px;
  object-fit: cover;
}

.page-bn-c .feature-item h3 {
  color: var(--primary-color);
  font-size: 1.4em;
  margin-bottom: 10px;
}

/* Games Showcase */
.page-bn-c .game-cards-grid {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.page-bn-c .game-card {
  background: #ffffff;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  text-align: center;
  padding-bottom: 20px;
  transition: transform 0.3s ease;
}

.page-bn-c .game-card:hover {
  transform: translateY(-5px);
}

.page-bn-c .game-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  margin-bottom: 15px;
}

.page-bn-c .game-card h3 {
  font-size: 1.5em;
  margin-bottom: 10px;
  padding: 0 15px;
}

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

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

.page-bn-c .game-card p {
  padding: 0 15px;
  font-size: 0.95em;
  color: #555;
  text-align: center;
}

.page-bn-c .more-games-text {
  margin-top: 30px;
  text-align: center;
  font-style: italic;
  color: #666;
}

/* Guide Section */
.page-bn-c .guide-section {
  background-color: var(--bg-dark);
  color: var(--text-light);
}

.page-bn-c .guide-section h2 {
  color: var(--secondary-color);
  border-bottom-color: var(--text-light);
}

.page-bn-c .guide-section p {
  color: #e0e0e0;
}

.page-bn-c .guide-steps {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

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

.page-bn-c .step-item img {
  width: 100%;
  max-width: 150px;
  height: auto;
  margin-bottom: 20px;
  border-radius: 50%;
  border: 4px solid var(--secondary-color);
  object-fit: cover;
}

.page-bn-c .step-item h3 {
  color: var(--secondary-color);
  font-size: 1.3em;
  margin-bottom: 10px;
}

.page-bn-c .step-item p {
  font-size: 0.9em;
  color: #cccccc;
}

/* Strategy Section */
.page-bn-c .strategy-section ul {
  list-style-type: decimal;
  padding-left: 25px;
}

.page-bn-c .strategy-section li {
  margin-bottom: 10px;
  font-size: 1.05em;
}

.page-bn-c .strategy-section li strong {
  color: var(--primary-color);
}

/* Promotions Section */
.page-bn-c .promotions-section ul {
  list-style-type: '🌟 ';
  margin-left: 20px;
}

.page-bn-c .promotions-section li {
  margin-bottom: 10px;
  font-size: 1.1em;
}

.page-bn-c .promotions-section li strong {
  color: var(--primary-color);
}

/* Security & Support Section */
.page-bn-c .security-support-section {
  background-color: var(--bg-light);
}

.page-bn-c .security-items {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  text-align: center;
}

.page-bn-c .security-item {
  background: #ffffff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.page-bn-c .security-item:hover {
  transform: translateY(-5px);
}

.page-bn-c .security-item img {
  width: 100%;
  max-width: 150px;
  height: auto;
  margin-bottom: 20px;
  border-radius: 8px;
  object-fit: cover;
}

.page-bn-c .security-item h3 {
  color: var(--primary-color);
  font-size: 1.4em;
  margin-bottom: 10px;
}

.page-bn-c .security-item p {
  font-size: 0.95em;
  color: #555;
}

.page-bn-c .support-cta-text {
  margin-top: 40px;
  text-align: center;
  font-style: italic;
  color: #666;
}

/* FAQ Section */
.page-bn-c .faq-section {
  background-color: var(--bg-dark);
  color: var(--text-light);
}

.page-bn-c .faq-section h2 {
  color: var(--secondary-color);
  border-bottom-color: var(--text-light);
}

.page-bn-c .faq-section p {
  color: #e0e0e0;
}

.page-bn-c .faq-list {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.page-bn-c .faq-item {
  background: #2a0c64;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.page-bn-c .faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  background: var(--primary-color);
  color: var(--text-light);
  cursor: pointer;
  transition: background-color 0.3s ease;
}

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

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

.page-bn-c .faq-toggle {
  font-size: 1.8em;
  font-weight: bold;
  color: var(--secondary-color);
  transition: transform 0.3s ease;
  line-height: 1;
}

.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: #2a0c64;
  color: #e0e0e0;
}

.page-bn-c .faq-item.active .faq-answer {
  max-height: 500px; /* Sufficient height to contain content */
  padding: 20px 25px;
  transition: max-height 0.5s ease-in, padding 0.5s ease-in;
}

.page-bn-c .faq-answer p {
  margin: 0;
  text-align: justify;
  color: #e0e0e0;
}

/* Conclusion Section */
.page-bn-c .conclusion-section {
  text-align: center;
  background-color: var(--primary-color);
  color: var(--text-light);
}

.page-bn-c .conclusion-section h2 {
  color: var(--secondary-color);
  border-bottom-color: var(--text-light);
}

.page-bn-c .conclusion-section p {
  font-size: 1.1em;
  max-width: 900px;
  margin: 0 auto 30px auto;
  color: #e0e0e0;
}

.page-bn-c .conclusion-section p a {
  color: var(--secondary-color);
  font-weight: bold;
}

.page-bn-c .conclusion-section p a:hover {
  text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-bn-c h1 {
    font-size: 2.4em;
  }
  .page-bn-c h2 {
    font-size: 1.8em;
  }
  .page-bn-c h3 {
    font-size: 1.4em;
  }
  .page-bn-c .cta-button {
    padding: 12px 30px;
    font-size: 1.1em;
  }
  .page-bn-c .hero-image {
    max-height: 400px;
  }
}

@media (max-width: 768px) {
  .page-bn-c .container {
    padding: 0 15px;
  }
  .page-bn-c h1 {
    font-size: 2em;
  }
  .page-bn-c h2 {
    font-size: 1.6em;
  }
  .page-bn-c h3 {
    font-size: 1.2em;
  }
  .page-bn-c section {
    padding: 40px 0;
  }
  .page-bn-c .introduction-section .features-grid,
  .page-bn-c .game-cards-grid,
  .page-bn-c .guide-steps,
  .page-bn-c .security-items {
    grid-template-columns: 1fr;
  }
  .page-bn-c .hero-image {
    max-height: 300px;
  }
  .page-bn-c .hero-content p {
    font-size: 1em;
  }
  .page-bn-c .faq-question {
    padding: 15px 20px;
  }
  .page-bn-c .faq-question h3 {
    font-size: 1.1em;
  }
  .page-bn-c .faq-answer {
    padding: 0 20px;
  }
  .page-bn-c .faq-item.active .faq-answer {
    padding: 15px 20px;
  }
}

@media (max-width: 480px) {
  .page-bn-c h1 {
    font-size: 1.6em;
  }
  .page-bn-c h2 {
    font-size: 1.4em;
  }
  .page-bn-c .cta-button {
    padding: 10px 25px;
    font-size: 1em;
  }
  .page-bn-c .hero-image {
    max-height: 250px;
  }
  .page-bn-c .feature-item img,
  .page-bn-c .step-item img,
  .page-bn-c .security-item img {
    max-width: 120px;
  }
}