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

.page-bn-c__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.page-bn-c__hero {
  background: linear-gradient(135deg, #FFD700 0%, #1E90FF 100%);
  color: #fff;
  text-align: center;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
  border-bottom-left-radius: 50px;
  border-bottom-right-radius: 50px;
}

.page-bn-c__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  color: #fff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-bn-c__hero-description {
  font-size: 1.2em;
  max-width: 800px;
  margin: 0 auto 30px;
  color: #eee;
}

.page-bn-c__btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  cursor: pointer;
  font-size: 1.1em;
}

.page-bn-c__btn--primary {
  background-color: #FFD700; /* Gold */
  color: #1E90FF; /* Deep Blue */
  border: 2px solid #FFD700;
}

.page-bn-c__btn--primary:hover {
  background-color: #e6c200;
  color: #1565b3;
  transform: translateY(-3px);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

.page-bn-c__btn--secondary {
  background-color: #1E90FF; /* Deep Blue */
  color: #FFD700; /* Gold */
  border: 2px solid #1E90FF;
}

.page-bn-c__btn--secondary:hover {
  background-color: #1565b3;
  color: #e6c200;
  transform: translateY(-3px);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

.page-bn-c__btn--transparent {
  background-color: transparent;
  color: #FFD700;
  border: 2px solid #FFD700;
}

.page-bn-c__btn--transparent:hover {
  background-color: #FFD700;
  color: #1E90FF;
  transform: translateY(-3px);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

.page-bn-c__features, .page-bn-c__how-to-play, .page-bn-c__tips-tricks, .page-bn-c__responsible-gaming {
  padding: 60px 0;
  background-color: #fff;
  margin-bottom: 20px;
  border-radius: 15px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.page-bn-c__features {
  background-color: #f0f8ff; /* Light blue background */
}

.page-bn-c__section-title {
  font-size: 2.5em;
  color: #1E90FF; /* Deep Blue */
  text-align: center;
  margin-bottom: 40px;
  position: relative;
}

.page-bn-c__section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: #FFD700; /* Gold accent */
  margin: 15px auto 0;
  border-radius: 2px;
}

.page-bn-c__feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-bn-c__feature-item {
  background-color: #fff;
  border-radius: 15px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-bn-c__feature-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  object-fit: contain;
  border-radius: 50%; /* Make icons circular */
  background-color: #1E90FF; /* Deep Blue background for icons */
  padding: 10px;
}

.page-bn-c__feature-heading {
  font-size: 1.5em;
  color: #FFD700; /* Gold */
  margin-bottom: 15px;
}

.page-bn-c__feature-text {
  color: #555;
  font-size: 0.95em;
}

.page-bn-c__cta-bottom {
  text-align: center;
  margin-top: 50px;
}

.page-bn-c__how-to-play {
  background-color: #fff;
}

.page-bn-c__steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-bn-c__step-item {
  background-color: #fdfdfd;
  border: 1px solid #eee;
  border-radius: 10px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  position: relative;
}

.page-bn-c__step-number {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  background-color: #FFD700; /* Gold */
  color: #1E90FF; /* Deep Blue */
  border-radius: 50%;
  font-size: 1.8em;
  font-weight: bold;
  margin-bottom: 20px;
  box-shadow: 0 4px 10px rgba(255, 215, 0, 0.4);
}

.page-bn-c__step-heading {
  font-size: 1.3em;
  color: #1E90FF; /* Deep Blue */
  margin-bottom: 10px;
}

.page-bn-c__step-text {
  color: #666;
  font-size: 0.9em;
}

.page-bn-c__tips-tricks {
  background-color: #f0f8ff;
}

.page-bn-c__intro-text, .page-bn-c__outro-text, .page-bn-c__responsible-text {
  font-size: 1.1em;
  color: #444;
  text-align: center;
  margin-bottom: 30px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-bn-c__tip-list {
  list-style: none;
  padding: 0;
  margin: 0 auto 40px;
  max-width: 900px;
}

.page-bn-c__tip-list li {
  background-color: #fff;
  border-left: 5px solid #FFD700; /* Gold accent */
  margin-bottom: 15px;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  font-size: 1em;
  color: #333;
  transition: transform 0.2s ease;
}

.page-bn-c__tip-list li:hover {
  transform: translateX(5px);
}

.page-bn-c__tip-list li strong {
  color: #1E90FF; /* Deep Blue */
  font-size: 1.1em;
}

.page-bn-c__cta-final {
  text-align: center;
  margin-top: 40px;
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.page-bn-c__responsible-gaming {
  background-color: #fff;
  border-top: 1px dashed #eee;
  padding-bottom: 80px;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .page-bn-c__hero-title {
    font-size: 2.5em;
  }
  .page-bn-c__section-title {
    font-size: 2em;
  }
  .page-bn-c__feature-grid, .page-bn-c__steps {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
}

@media (max-width: 768px) {
  .page-bn-c__hero {
    padding: 60px 0;
  }
  .page-bn-c__hero-title {
    font-size: 2em;
  }
  .page-bn-c__hero-description {
    font-size: 1em;
  }
  .page-bn-c__btn {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-bn-c__section-title {
    font-size: 1.8em;
  }
  .page-bn-c__features, .page-bn-c__how-to-play, .page-bn-c__tips-tricks, .page-bn-c__responsible-gaming {
    padding: 40px 0;
  }
  .page-bn-c__cta-final {
    flex-direction: column;
    align-items: center;
  }
  .page-bn-c__tip-list li {
    font-size: 0.95em;
  }
}

@media (max-width: 576px) {
  .page-bn-c__hero {
    border-bottom-left-radius: 30px;
    border-bottom-right-radius: 30px;
  }
  .page-bn-c__hero-title {
    font-size: 1.8em;
  }
  .page-bn-c__feature-grid, .page-bn-c__steps {
    grid-template-columns: 1fr;
  }
  .page-bn-c__tip-list li {
    padding: 15px;
  }
  .page-bn-c__intro-text, .page-bn-c__outro-text, .page-bn-c__responsible-text {
    font-size: 0.95em;
  }
}