.page-bn-c {
  font-family: 'Arial', sans-serif;
  color: #333;
  line-height: 1.6;
  background-color: #f8f8f8;
}

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

.page-bn-c h1, .page-bn-c h2, .page-bn-c h3 {
  color: #2D3E50;
  margin-bottom: 20px;
  font-weight: bold;
}

.page-bn-c h1 {
  font-size: 2.8em;
  text-align: center;
  color: #E7B10A;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-bn-c h2 {
  font-size: 2.2em;
  text-align: center;
  margin-top: 40px;
  margin-bottom: 30px;
  position: relative;
}

.page-bn-c h2::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: #E7B10A;
  margin: 15px auto 0;
  border-radius: 2px;
}

.page-bn-c h3 {
  font-size: 1.6em;
  color: #2D3E50;
}

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

.page-bn-c a {
  color: #E7B10A;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-bn-c a:hover {
  color: #c99a07;
  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, #2D3E50, #1a2a3a);
  color: #ffffff;
}

.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;
}

.page-bn-c .hero-image img {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

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

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

.page-bn-c .cta-button {
  display: inline-block;
  padding: 18px 45px;
  background: #E7B10A;
  color: #2D3E50;
  text-decoration: none;
  border-radius: 50px;
  font-size: 1.3em;
  font-weight: bold;
  margin-top: 20px;
  transition: all 0.3s ease;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
  text-transform: uppercase;
}

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

/* General Section Styling */
.page-bn-c section {
  padding: 60px 0;
  background-color: #fff;
  margin-bottom: 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  border-radius: 8px;
}

.page-bn-c section:nth-of-type(even) {
  background-color: #f2f4f7;
}

/* Game Versions Section */
.page-bn-c .game-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

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

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

.page-bn-c .game-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  border-bottom: 1px solid #eee;
}

.page-bn-c .game-card h3 {
  font-size: 1.4em;
  margin: 20px 15px 10px;
  color: #2D3E50;
}

.page-bn-c .game-card h3 a {
  color: #2D3E50;
  text-decoration: none;
}

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

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

/* Guide Section */
.page-bn-c .guide-section ol {
  list-style: none;
  padding: 0;
  margin-top: 30px;
}

.page-bn-c .guide-section ol li {
  background: #fff;
  padding: 25px;
  margin-bottom: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  counter-increment: step-counter;
  position: relative;
  padding-left: 70px;
}

.page-bn-c .guide-section ol li::before {
  content: counter(step-counter);
  position: absolute;
  left: 20px;
  top: 20px;
  background-color: #E7B10A;
  color: #2D3E50;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5em;
  font-weight: bold;
}

.page-bn-c .guide-section ol li h3 {
  margin-top: 0;
  margin-bottom: 10px;
  color: #2D3E50;
}

.page-bn-c .guide-section img {
  width: 100%;
  max-width: 800px;
  height: auto;
  display: block;
  margin: 40px auto 0;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Strategies Section */
.page-bn-c .strategies-section ul {
  list-style: none;
  padding: 0;
  margin-top: 30px;
}

.page-bn-c .strategies-section ul li {
  background: #fff;
  padding: 25px;
  margin-bottom: 20px;
  border-left: 5px solid #E7B10A;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.page-bn-c .strategies-section ul li h3 {
  margin-top: 0;
  margin-bottom: 10px;
  color: #2D3E50;
}

.page-bn-c .strategies-section img {
  width: 100%;
  max-width: 800px;
  height: auto;
  display: block;
  margin: 40px auto 0;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Offers Section */
.page-bn-c .offer-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.page-bn-c .offer-card {
  background: linear-gradient(145deg, #2D3E50, #1a2a3a);
  color: #ffffff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-bn-c .offer-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.page-bn-c .offer-card h3 {
  color: #E7B10A;
  font-size: 1.5em;
  margin-bottom: 15px;
}

.page-bn-c .offer-card h3 a {
  color: #E7B10A;
}

.page-bn-c .offer-card h3 a:hover {
  color: #ffffff;
  text-decoration: underline;
}

.page-bn-c .offer-card p {
  color: #f0f0f0;
  font-size: 1em;
  margin-bottom: 25px;
}

.page-bn-c .btn-offer {
  display: inline-block;
  padding: 12px 30px;
  background: #E7B10A;
  color: #2D3E50;
  text-decoration: none;
  border-radius: 50px;
  font-weight: bold;
  transition: all 0.3s ease;
}

.page-bn-c .btn-offer:hover {
  background: #c99a07;
  color: #ffffff;
  transform: translateY(-2px);
}

.page-bn-c .offers-section img {
  width: 100%;
  max-width: 800px;
  height: auto;
  display: block;
  margin: 40px auto 0;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Why Choose Section */
.page-bn-c .why-choose-section ul {
  list-style: none;
  padding: 0;
  margin-top: 30px;
}

.page-bn-c .why-choose-section ul li {
  background: #ffffff;
  padding: 25px;
  margin-bottom: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.page-bn-c .why-choose-section ul li h3 {
  margin-top: 0;
  margin-bottom: 10px;
  color: #2D3E50;
  position: relative;
  padding-left: 35px;
}

.page-bn-c .why-choose-section ul li h3::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  color: #E7B10A;
  font-size: 1.5em;
  font-weight: bold;
}

/* FAQ Section */
.page-bn-c .faq-list {
  margin-top: 30px;
}

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

.page-bn-c .faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  background: #2D3E50;
  color: #ffffff;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

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

.page-bn-c .faq-question h3 {
  margin: 0;
  font-size: 1.2em;
  color: #ffffff;
}

.page-bn-c .faq-toggle {
  font-size: 24px;
  font-weight: bold;
  transition: transform 0.3s ease;
  color: #E7B10A;
}

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

.page-bn-c .faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, padding 0.4s ease-out;
  padding: 0 20px;
  background: #f9f9f9;
  color: #333;
}

.page-bn-c .faq-item.active .faq-answer {
  max-height: 500px; /* Sufficient height for content */
  padding: 20px;
  border-top: 1px solid #eee;
}

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

/* Latest News Section */
.page-bn-c .news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.page-bn-c .news-card {
  background: #ffffff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-bn-c .news-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

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

.page-bn-c .news-card h3 {
  font-size: 1.3em;
  margin: 20px 20px 10px;
  color: #2D3E50;
}

.page-bn-c .news-card h3 a {
  color: #2D3E50;
  text-decoration: none;
}

.page-bn-c .news-card h3 a:hover {
  color: #E7B10A;
  text-decoration: underline;
}

.page-bn-c .news-card p {
  font-size: 0.95em;
  color: #666;
  padding: 0 20px;
  margin-bottom: 15px;
}

.page-bn-c .news-card .read-more {
  display: inline-block;
  margin: 0 20px 20px;
  color: #E7B10A;
  font-weight: bold;
}

.page-bn-c .news-card .read-more: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 .cta-button {
    padding: 15px 35px;
    font-size: 1.1em;
  }
  .page-bn-c .game-grid, .page-bn-c .offer-cards, .page-bn-c .news-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
}

@media (max-width: 768px) {
  .page-bn-c .hero-section {
    padding: 40px 15px;
  }
  .page-bn-c h1 {
    font-size: 2em;
  }
  .page-bn-c h2 {
    font-size: 1.6em;
  }
  .page-bn-c h3 {
    font-size: 1.4em;
  }
  .page-bn-c p {
    font-size: 1em;
  }
  .page-bn-c .cta-button {
    padding: 12px 30px;
    font-size: 1em;
  }
  .page-bn-c .container {
    padding: 15px;
  }
  .page-bn-c .guide-section ol li {
    padding-left: 60px;
  }
  .page-bn-c .guide-section ol li::before {
    width: 35px;
    height: 35px;
    font-size: 1.3em;
    left: 15px;
    top: 18px;
  }
  .page-bn-c .faq-question {
    padding: 15px;
  }
  .page-bn-c .faq-question h3 {
    font-size: 1.1em;
  }
  .page-bn-c .faq-toggle {
    font-size: 20px;
  }
  .page-bn-c .faq-item.active .faq-answer {
    padding: 15px;
  }
}

@media (max-width: 480px) {
  .page-bn-c h1 {
    font-size: 1.8em;
  }
  .page-bn-c h2 {
    font-size: 1.4em;
  }
  .page-bn-c h3 {
    font-size: 1.2em;
  }
  .page-bn-c .game-grid, .page-bn-c .offer-cards, .page-bn-c .news-grid {
    grid-template-columns: 1fr;
  }
  .page-bn-c .game-card img, .page-bn-c .news-card img {
    height: 180px;
  }
}