/* Outer container */
.channel-banner-wrap {
  width: 100%;
  max-width: 100%;
  margin-bottom: 20px;
}

/* Ratio box (16:9 safe everywhere) */
.channel-banner-inner {
  position: relative;
  width: 100%;
  padding-top: 56.25%; /* 16:9 */
  overflow: hidden;
  border-radius: 16px;
  background: #eee;
}

/* Image */
.channel-banner-inner img {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  transform: translate(-50%, -50%);
  object-fit: cover;
  display: block;
}

/* Ultra-wide screens */
@media (min-width: 1400px) {
  .channel-banner-inner {
    padding-top: 42%; /* cinematic */
  }
}

/* FAQ Accordion Style */
.faq-item {
  margin: 10px 0;
  border: 1px solid #ddd;
  border-radius: 12px;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  text-align: left;
  padding: 14px 16px;
  background: #007aff;
  border: none;
  outline: none;
  cursor: pointer;
  font-size: 15px;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: white;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  background: rgba(0, 174, 205, 0.1);
  padding: 0 16px;
}

.faq-answer p {
  margin: 12px 0;
}

.faq-item.active .faq-answer {
  max-height: 1000px; 
  /* Adjust based on answer length */
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

/* exploremore Section */
.exploremore {
  margin: 30px 0;
  padding: 20px;
  border-radius: 16px;
  /*background: linear-gradient(135deg, #f9f9ff, #f1f5ff);*/
  background: rgba(0, 174, 205, 0.1);
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

.exploremore h3 {
  font-size: 18px;
  margin-bottom: 16px;
  text-align: center;
  color: #333;
}

/* Button Container */
.exploremore-buttons {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 14px;
}

/* Buttons */
.exploremore-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px;
  border-radius: 14px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  color: #fff;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

/* Game Button */
.exploremore-btn.game {
  background: linear-gradient(135deg, #ff7a18, #ffb347);
}

/* Quiz Button */
.exploremore-btn.quiz {
  background: linear-gradient(135deg, #4facfe, #00f2fe);
}

/* Hover Effect */
.exploremore-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 22px rgba(0,0,0,0.15);
}






.channel-banner-wrap img {
  width: 100%;
  max-height: 280px;
  object-fit: cover;
  border-radius: 16px;
}

.channel-profile-box {
  display: flex;
  gap: 15px;
  align-items: center;
  margin: 20px 0;
  flex-wrap: wrap;
}

.channel-thumb {
  width: 90px;
  height: 90px;
  border-radius: 50%;
}

.content-box {
  background: #fff;
  padding: 18px;
  border-radius: 14px;
  margin: 18px 0;
  box-shadow: 0 3px 10px rgba(0,0,0,0.06);
}

.btn-primary {
  display: inline-block;
  padding: 10px 16px;
  background: #007aff;
  color: #fff;
  border-radius: 10px;
  text-decoration: none;
  margin-top: 10px;
  margin-bottom: 10px;
}

.btn-secondary {
  display: inline-block;
  padding: 10px 16px;
  background: #eee;
  border-radius: 10px;
  text-decoration: none;
  margin-left: 10px;
}

.faq-answer {
  display: none;
}

.faq-item.active .faq-answer {
  display: block;
}


