/* style/bn-c.css */
:root {
  --primary-color: #0A192F;
  --secondary-color: #FFD700;
  --text-dark: #222222;
  --text-light: #f0f0f0;
  --background-light: #ffffff;
  --background-dark: #1A2A43;
  --border-color: #e0e0e0;
}

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

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

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

.page-bn-c-section:nth-child(odd) {
  background-color: var(--background-light);
}

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

.page-bn-c h1,
.page-bn-c h2 {
  color: var(--primary-color);
  margin-bottom: 30px;
  font-weight: bold;
  line-height: 1.2;
}

.page-bn-c h1 {
  font-size: 3.2em;
}

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

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

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

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

.page-bn-c-cta-button:hover {
  background: #e6c200;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.6);
}

.page-bn-c-cta-button-secondary {
  display: inline-block;
  padding: 12px 30px;
  background: transparent;
  color: var(--primary-color);
  text-decoration: none;
  border: 2px solid var(--primary-color);
  border-radius: 50px;
  font-size: 1em;
  font-weight: bold;
  margin-top: 20px;
  transition: all 0.3s ease;
}

.page-bn-c-cta-button-secondary:hover {
  background: var(--primary-color);
  color: var(--text-light);
}

/* Hero Banner */
.page-bn-c-hero-banner {
  background-color: var(--background-dark);
  padding: 80px 0 40px;
  text-align: center;
  color: var(--text-light);
}

.page-bn-c-hero-banner h1 {
  color: var(--secondary-color);
  font-size: 3.8em;
  margin-bottom: 20px;
}

.page-bn-c-hero-banner p {
  font-size: 1.3em;
  max-width: 900px;
  margin: 0 auto 30px;
}

.page-bn-c-hero-image {
  margin-top: 40px;
}

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

/* Intro Section */
.page-bn-c-intro p {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

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

.page-bn-c-card {
  background-color: var(--background-light);
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  padding: 30px;
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

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

.page-bn-c-card-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

.page-bn-c-card h3 {
  font-size: 1.5em;
  margin-top: 0;
  color: var(--primary-color);
}

.page-bn-c-card p {
  font-size: 1em;
  color: var(--text-dark);
  margin-bottom: 0;
}

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

.page-bn-c-game-item {
  background-color: var(--background-light);
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  padding: 25px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-bn-c-game-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.page-bn-c-game-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 15px;
}

.page-bn-c-game-item h3 a {
  color: var(--primary-color);
  text-decoration: none;
  font-size: 1.4em;
  transition: color 0.3s ease;
}

.page-bn-c-game-item h3 a:hover {
  color: var(--secondary-color);
}

/* Guide Section */
.page-bn-c-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
  text-align: left;
}

.page-bn-c-step-item {
  background-color: var(--background-light);
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  position: relative;
  min-height: 220px;
}

.page-bn-c-step-number {
  background-color: var(--secondary-color);
  color: var(--primary-color);
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5em;
  font-weight: bold;
  position: absolute;
  top: -20px;
  left: 20px;
  box-shadow: 0 3px 10px rgba(255, 215, 0, 0.5);
}

.page-bn-c-step-item h3 {
  margin-top: 20px;
  font-size: 1.6em;
}

.page-bn-c-step-item .page-bn-c-link {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: bold;
  display: inline-block;
  margin-top: 10px;
  transition: color 0.3s ease;
}

.page-bn-c-step-item .page-bn-c-link:hover {
  color: var(--secondary-color);
}

.page-bn-c ul {
  list-style: none;
  padding: 0;
  max-width: 800px;
  margin: 30px auto;
  text-align: left;
}

.page-bn-c ul li {
  background-color: #f0f5f9;
  margin-bottom: 10px;
  padding: 15px 20px;
  border-left: 5px solid var(--secondary-color);
  border-radius: 5px;
  font-size: 1.1em;
  color: var(--text-dark);
}

.page-bn-c-full-width-img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  margin-top: 40px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

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

.page-bn-c-offer-card {
  background-color: var(--background-light);
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-bn-c-offer-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

.page-bn-c-offer-card h3 a {
  color: var(--primary-color);
  text-decoration: none;
  font-size: 1.5em;
  margin-bottom: 15px;
  transition: color 0.3s ease;
}

.page-bn-c-offer-card h3 a:hover {
  color: var(--secondary-color);
}

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

.page-bn-c-offer-button:hover {
  background: var(--secondary-color);
  color: var(--primary-color);
}

/* Why Choose Section */
.page-bn-c-why-choose ul {
  list-style: none;
  padding: 0;
  max-width: 900px;
  margin: 30px auto;
  text-align: left;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.page-bn-c-why-choose ul li {
  background-color: var(--background-light);
  border: 1px solid var(--border-color);
  padding: 20px;
  border-radius: 8px;
  font-size: 1.1em;
  color: var(--text-dark);
  transition: all 0.3s ease;
  border-left: 5px solid var(--primary-color);
}

.page-bn-c-why-choose ul li:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  border-left-color: var(--secondary-color);
}

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

.page-bn-c .faq-item {
  margin-bottom: 15px;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  overflow: hidden;
}

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

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

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

.page-bn-c .faq-toggle {
  font-size: 1.8em;
  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: #f9f9f9;
  color: var(--text-dark);
}

.page-bn-c .faq-item.active .faq-answer {
  max-height: 500px; /* Adjust as needed */
  padding: 15px 25px;
}

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

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

.page-bn-c-blog-card {
  background-color: var(--background-light);
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  text-align: left;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-bn-c-blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.page-bn-c-blog-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

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

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

.page-bn-c-blog-card h3 a:hover {
  color: var(--secondary-color);
}

.page-bn-c-blog-card p {
  padding: 0 20px;
  font-size: 0.95em;
  color: #555;
}

.page-bn-c-blog-date {
  display: block;
  font-size: 0.85em;
  color: #999;
  padding: 0 20px 15px;
}

.page-bn-c-read-more {
  display: inline-block;
  padding: 8px 15px;
  background: var(--secondary-color);
  color: var(--primary-color);
  text-decoration: none;
  border-radius: 20px;
  font-size: 0.9em;
  font-weight: bold;
  margin: 0 20px 20px;
  transition: all 0.3s ease;
}

.page-bn-c-read-more:hover {
  background: #e6c200;
}

/* Call to Action Section */
.page-bn-c-call-to-action {
  background-color: var(--background-dark);
  color: var(--text-light);
  padding: 80px 0;
}

.page-bn-c-flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.page-bn-c-cta-img {
  max-width: 400px;
  width: 100%;
  height: auto;
  margin-right: 50px;
  border-radius: 10px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.page-bn-c-cta-content {
  max-width: 600px;
  text-align: left;
}

.page-bn-c-cta-content h2 {
  color: var(--secondary-color);
  font-size: 2.8em;
  margin-bottom: 20px;
}

.page-bn-c-cta-content p {
  font-size: 1.2em;
  color: var(--text-light);
  margin-bottom: 30px;
}

.page-bn-c-cta-button-large {
  padding: 18px 45px;
  font-size: 1.4em;
  border-radius: 50px;
  background: var(--secondary-color);
  color: var(--primary-color);
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.5);
}

.page-bn-c-cta-button-large:hover {
  background: #e6c200;
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.7);
}

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

/* Responsive Design */
@media (max-width: 1024px) {
  .page-bn-c h1 {
    font-size: 2.8em;
  }
  .page-bn-c h2 {
    font-size: 2em;
  }
  .page-bn-c-hero-banner h1 {
    font-size: 3.2em;
  }
  .page-bn-c-cta-img {
    margin-right: 30px;
    max-width: 350px;
  }
  .page-bn-c-cta-content h2 {
    font-size: 2.4em;
  }
  .page-bn-c-why-choose ul {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .page-bn-c-section {
    padding: 40px 0;
  }
  .page-bn-c h1 {
    font-size: 2.2em;
  }
  .page-bn-c h2 {
    font-size: 1.8em;
    margin-bottom: 20px;
  }
  .page-bn-c h3 {
    font-size: 1.4em;
  }
  .page-bn-c p {
    font-size: 1em;
  }
  .page-bn-c-hero-banner {
    padding: 60px 0 30px;
  }
  .page-bn-c-hero-banner h1 {
    font-size: 2.5em;
  }
  .page-bn-c-hero-banner p {
    font-size: 1.1em;
  }
  .page-bn-c-cta-button,
  .page-bn-c-cta-button-large {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-bn-c-grid-3,
  .page-bn-c-game-list,
  .page-bn-c-steps,
  .page-bn-c-offer-grid,
  .page-bn-c-blog-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .page-bn-c-card,
  .page-bn-c-game-item,
  .page-bn-c-step-item,
  .page-bn-c-offer-card,
  .page-bn-c-blog-card {
    padding: 20px;
  }
  .page-bn-c-step-item {
    min-height: auto;
    padding-top: 40px;
  }
  .page-bn-c-step-number {
    top: -15px;
    left: 15px;
    width: 40px;
    height: 40px;
    font-size: 1.3em;
  }
  .page-bn-c-faq-list {
    margin: 20px auto;
  }
  .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: 1.5em;
  }
  .page-bn-c .faq-item.active .faq-answer {
    padding: 10px 20px;
  }
  .page-bn-c-cta-img {
    margin-right: 0;
    margin-bottom: 30px;
  }
  .page-bn-c-cta-content {
    text-align: center;
  }
  .page-bn-c-cta-content h2 {
    font-size: 2em;
  }
  .page-bn-c-why-choose ul li {
    padding: 15px;
    font-size: 1em;
  }
  .page-bn-c-read-more {
    margin-bottom: 15px;
  }
}

@media (max-width: 480px) {
  .page-bn-c h1 {
    font-size: 1.8em;
  }
  .page-bn-c-hero-banner h1 {
    font-size: 2em;
  }
  .page-bn-c-hero-banner p {
    font-size: 1em;
  }
  .page-bn-c-cta-button,
  .page-bn-c-cta-button-large,
  .page-bn-c-cta-button-secondary {
    width: 100%;
    box-sizing: border-box;
  }
  .page-bn-c-cta-img {
    max-width: 90%;
  }
}