/* style/bn-c.css */
:root {
  --primary-color: #003366;
  --secondary-color: #FFCC00;
  --text-dark: #333333;
  --text-light: #ffffff;
  --background-light: #f4f7f6;
  --background-dark: #002244;
  --border-color: #e0e0e0;
}

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

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

.page-bn-c section {
  padding: 60px 0;
  margin-bottom: 20px;
}

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

.page-bn-c .section-title {
  font-size: 2.5em;
  color: var(--primary-color);
  text-align: center;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 15px;
}

.page-bn-c .section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: var(--secondary-color);
  border-radius: 2px;
}

.page-bn-c .section-description {
  font-size: 1.1em;
  text-align: center;
  color: #555555;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-bn-c .cta-button, .page-bn-c .btn-primary, .page-bn-c .btn-secondary, .page-bn-c .btn-read-more, .page-bn-c .btn-app-download {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  text-align: center;
  white-space: nowrap;
}

.page-bn-c .cta-button {
  background-color: var(--secondary-color);
  color: var(--primary-color);
  font-size: 1.1em;
  box-shadow: 0 4px 10px rgba(255, 204, 0, 0.4);
}

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

.page-bn-c .btn-primary {
  background-color: var(--primary-color);
  color: var(--text-light);
  font-size: 0.95em;
}

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

.page-bn-c .btn-secondary {
  background-color: #6699CC;
  color: var(--text-light);
  font-size: 0.95em;
}

.page-bn-c .btn-secondary:hover {
  background-color: #5588BB;
  transform: translateY(-2px);
}

.page-bn-c .btn-read-more {
  background-color: #cccccc;
  color: var(--text-dark);
  padding: 10px 20px;
  font-size: 0.9em;
}

.page-bn-c .btn-read-more:hover {
  background-color: #bbbbbb;
}

.page-bn-c .text-center {
  text-align: center;
  margin-top: 40px;
}

/* Hero Section */
.page-bn-c .hero-banca {
  position: relative;
  width: 100%;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background-color: var(--background-dark);
}

.page-bn-c .hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  opacity: 0.6;
}

.page-bn-c .hero-container {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--text-light);
  padding: 20px;
  max-width: 900px;
}

.page-bn-c .hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: var(--secondary-color);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.page-bn-c .hero-description {
  font-size: 1.3em;
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

/* Intro Section */
.page-bn-c .intro-grid {
  display: flex;
  gap: 40px;
  align-items: center;
}

.page-bn-c .intro-text {
  flex: 1;
}

.page-bn-c .intro-text p {
  margin-bottom: 20px;
  font-size: 1.05em;
  line-height: 1.8;
}

.page-bn-c .intro-image {
  flex: 1;
  text-align: center;
}

.page-bn-c .intro-image .image-responsive {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

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

.page-bn-c .game-card, .page-bn-c .promo-card, .page-bn-c .blog-card {
  background-color: var(--text-light);
  border-radius: 12px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

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

.page-bn-c .card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-bottom: 1px solid var(--border-color);
}

.page-bn-c .game-card .card-title, .page-bn-c .promo-card .card-title, .page-bn-c .blog-card .card-title {
  font-size: 1.4em;
  color: var(--primary-color);
  margin: 20px 20px 10px;
  flex-grow: 1;
}

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

.page-bn-c .game-card .card-title a:hover, .page-bn-c .promo-card .card-title a:hover, .page-bn-c .blog-card .card-title a:hover {
  color: var(--secondary-color);
}

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

.page-bn-c .game-card .btn-primary {
  margin: 0 20px 20px;
  align-self: flex-start;
}

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

.page-bn-c .step-item {
  background-color: var(--text-light);
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  text-align: center;
}

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

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

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

.page-bn-c .tip-item {
  background-color: var(--text-light);
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.07);
  border-left: 5px solid var(--secondary-color);
}

.page-bn-c .tip-title {
  font-size: 1.3em;
  color: var(--primary-color);
  margin-bottom: 10px;
}

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

/* Security & Support Section */
.page-bn-c .support-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.page-bn-c .support-item {
  background-color: var(--text-light);
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  text-align: center;
}

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

/* App Download Section */
.page-bn-c .section-app-download {
  background-color: var(--background-dark);
  color: var(--text-light);
}

.page-bn-c .section-app-download .section-title {
  color: var(--secondary-color);
}

.page-bn-c .section-app-download .section-description {
  color: #cccccc;
}

.page-bn-c .app-download-content {
  display: flex;
  align-items: center;
  gap: 50px;
}

.page-bn-c .app-text {
  flex: 1;
}

.page-bn-c .app-text p {
  margin-bottom: 20px;
  font-size: 1.05em;
  line-height: 1.8;
  color: #e0e0e0;
}

.page-bn-c .app-buttons {
  display: flex;
  gap: 20px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.page-bn-c .btn-app-download {
  background-color: var(--secondary-color);
  color: var(--primary-color);
  padding: 12px 25px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1em;
}

.page-bn-c .btn-app-download:hover {
  background-color: #e6b800;
  transform: translateY(-2px);
}

.page-bn-c .app-icon {
  width: 32px;
  height: 32px;
  vertical-align: middle;
  object-fit: contain;
}

.page-bn-c .app-image {
  flex: 1;
  text-align: center;
}

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

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

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

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

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

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

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

.page-bn-c .faq-item.active .faq-toggle {
  transform: rotate(45deg);
  color: var(--primary-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: #555555;
}

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

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

/* Blog Section */
.page-bn-c .blog-card .card-image {
  height: 180px;
}

.page-bn-c .blog-card .btn-read-more {
  margin: 0 20px 20px;
  align-self: flex-start;
}

/* Floating Buttons */
.page-bn-c .floating-buttons {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.page-bn-c .floating-btn {
  background-color: var(--secondary-color);
  color: var(--primary-color);
  padding: 12px 25px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  text-align: center;
}

.page-bn-c .floating-btn:hover {
  background-color: #e6b800;
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

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

.page-bn-c .btn-register:hover {
  background-color: #004488;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-bn-c .hero-title {
    font-size: 2.8em;
  }
  .page-bn-c .hero-description {
    font-size: 1.1em;
  }
  .page-bn-c .section-title {
    font-size: 2em;
  }
  .page-bn-c .intro-grid, .page-bn-c .app-download-content {
    flex-direction: column;
  }
  .page-bn-c .intro-text, .page-bn-c .intro-image, .page-bn-c .app-text, .page-bn-c .app-image {
    flex: none;
    width: 100%;
  }
  .page-bn-c .intro-image, .page-bn-c .app-image {
    order: -1; /* Image first on mobile */
  }
  .page-bn-c .app-buttons {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .page-bn-c section {
    padding: 40px 0;
  }
  .page-bn-c .hero-title {
    font-size: 2.2em;
  }
  .page-bn-c .hero-description {
    font-size: 1em;
  }
  .page-bn-c .cta-button {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-bn-c .section-title {
    font-size: 1.8em;
  }
  .page-bn-c .section-description {
    font-size: 0.95em;
  }
  .page-bn-c .game-cards-grid, .page-bn-c .promo-cards-grid, .page-bn-c .blog-cards-grid, .page-bn-c .guide-steps, .page-bn-c .tips-grid, .page-bn-c .support-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .page-bn-c .card-image {
    height: 160px;
  }
  .page-bn-c .card-title {
    font-size: 1.2em;
  }
  .page-bn-c .floating-buttons {
    bottom: 15px;
    right: 15px;
    flex-direction: row;
    gap: 8px;
  }
  .page-bn-c .floating-btn {
    padding: 10px 20px;
    font-size: 0.9em;
  }
  .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 .hero-title {
    font-size: 1.8em;
  }
  .page-bn-c .hero-description {
    font-size: 0.9em;
  }
  .page-bn-c .section-title {
    font-size: 1.5em;
  }
  .page-bn-c .app-buttons {
    flex-direction: column;
    gap: 10px;
  }
  .page-bn-c .floating-buttons {
    left: 15px;
    right: 15px;
    width: auto;
    justify-content: space-around;
  }
  .page-bn-c .floating-btn {
    flex: 1;
  }
}