  /* Container styled like Facebook top stories bar */
.xi-music-scroll-container {
  overflow-x: auto;
  white-space: nowrap;
  padding: 12px 10px;
  background-color: #242526;
  border-radius: 12px;
  box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: #606770 transparent;

  /* Add this line */
  text-align: center;
}

  /* Webkit scrollbar */
  .xi-music-scroll-container::-webkit-scrollbar {
    height: 8px;
  }
  .xi-music-scroll-container::-webkit-scrollbar-track {
    background: transparent;
  }
  .xi-music-scroll-container::-webkit-scrollbar-thumb {
    background-color: #606770;
    border-radius: 4px;
  }

  /* Individual cards */
  .xi-music-card {
    display: inline-block;
    width: 110px;
    margin-right: 12px;
    border-radius: 5px; /* Facebook story-style circle */
    background: linear-gradient(145deg, #3a3b3c, #1e1f20);
    box-shadow:
      0 0 0 2px #404041, 
      0 2px 2px rgba(0,0,0,0.3);
    scroll-snap-align: start;
    position: relative;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
    color: #e0e0e0;
  }
  .xi-music-card:hover {
    transform: scale(1.1);
    box-shadow:
      0 0 0 1px #3e3c3f,
      0 1px 1px rgba(0,0,0,0.5);
  }

  /* Image circle with border */
  .xi-music-image {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid transparent;
    transition: border-color 0.3s ease;
  }
  .xi-music-card:hover .xi-music-image {
    border-color: #636262; /* ring color on hover */
  }

  /* Badge for new */
  .xi-new-badge {
    position: absolute;
    top: 6px;
    left: 6px;
    background-color: #f02849;
    color: white;
    font-size: 10px;
    padding: 2px 6px;
    border-radius: 12px;
    font-weight: 700;
    z-index: 2;
    user-select: none;
  }

  /* Info text container below the circle */
  .xi-music-info {
    margin-top: 6px;
  }
  .xi-music-info h4 {
    font-size: 14px;
    font-weight: 600;
    color: #e4e6eb;
    margin: 4px 0 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .xi-music-info p {
    font-size: 12px;
    color: #b0b3b8;
    margin: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  /* Container wrapper */
  .section-area {
    background-color: #18191a;
    padding: 10px 0 20px;
  }
  .heading-bx p {
    font-size: 14px;
    color: #ccc;
  }
  .heading-bx p span {
    color: orange;
    font-weight: 600;
  }
  .btn {
    background-color: #1877f2;
    border: none;
    padding: 8px 18px;
    color: white;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    margin-top: 12px;
    transition: background-color 0.3s ease;
  }
  .btn:hover {
    background-color: #145dbf;
  }




.project-section {
  background: #121212;
  color: #fff;
  padding: 60px 20px;
  font-family: 'Segoe UI', sans-serif;
}

.heading-box {
  margin-bottom: 40px;
}

.section-title {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 10px;
}

.section-subtitle {
  font-size: 16px;
  color: #ccc;
}

.projects-scroll-wrapper {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: #888 transparent;
  padding-bottom: 10px;
  
}
.projects-scroll-wrapper::-webkit-scrollbar {
  height: 6px;
}
.projects-scroll-wrapper::-webkit-scrollbar-thumb {
  background: #555;
  border-radius: 4px;
}
.projects-container {
  display: flex;
  gap: 20px;
  width: max-content;
  padding: 10px 0;
  
}

.project-card {
  min-width: 280px;
  max-width: 320px;
  background-color: #1a1a1a;
  border-radius: 12px;
  padding: 20px;
  border: 1px solid #2b2b2b;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  flex-shrink: 0;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  
}
.project-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}
.project-content {
  display: flex;
  flex-direction: column;
  gap: 10px;
  
}
.project-title {
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  line-height: 1.3;
}
.project-category {
  font-size: 13px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: #999;
}
.project-price {
  font-size: 16px;
  font-weight: bold;
  color: #00c6ff;
  background: linear-gradient(90deg, #00c6ff 0%, #0072ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-top: auto;
  
}


.buy-btn {
  display: inline-block;
  background-color: #1a73e8;
  color: #fff;
  text-decoration: none;
  padding: 10px 20px;
  border-radius: 6px;
  font-weight: bold;
  margin-top: 16px;
  transition: background-color 0.3s ease;
}

.buy-btn:hover {
  background-color: #1666c1;
}

.xi-modal {
  display: none;
  position: fixed;
  z-index: 9999;
  padding-top: 120px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.7);
}

.xi-modal-content {
  background-color: #2b2b2b;
  margin: auto;
  padding: 30px;
  border-radius: 10px;
  width: 90%;
  max-width: 500px;
  color: #fff;
  box-shadow: 0 4px 20px rgba(0,0,0,0.6);
}

.xi-close {
  color: #aaa;
  float: right;
  font-size: 30px;
  font-weight: bold;
  cursor: pointer;
}

.xi-close:hover {
  color: #fff;
}

@media screen and (max-width: 768px) {
  .section-title {
    font-size: 24px;
  }
  .project-card {
    min-width: 240px;
  }
  .project-title {
    font-size: 16px;
  }
  .project-description {
    font-size: 13px;
  }
  .buy-btn {
    font-size: 14px;
    padding: 8px 16px;
  }
  .xi-modal-content {
    width: 90%;
  }
  .m-b0 {font-size:12px;}
}




.xi-special-slider {
  width: 100%;
  padding: 30px 15px;
  background: #111;
  overflow-x: auto;
  position: relative;
}

.xi-slider-wrapper {
  display: flex;
  gap: 16px;
  scroll-snap-type: x mandatory;
  overflow-x: auto;
  padding-bottom: 12px;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
}

.xi-slider-wrapper::-webkit-scrollbar {
  height: 6px;
}

.xi-slider-wrapper::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.2);
  border-radius: 3px;
}

.xi-slider-wrapper a {
  flex: 0 0 auto;
  scroll-snap-align: start;
  width: 300px; /* increased from 220px */
  border-radius: 14px;
  overflow: hidden;
  background: #1c1c1c;
  box-shadow: 0 2px 8px rgba(0,0,0,0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.xi-slider-wrapper a:hover {
  transform: scale(1.04);
  box-shadow: 0 6px 12px rgba(0,0,0,0.6);
}

.xi-slider-wrapper img {
  display: block;
  width: 100%;
  height: 200px; /* increased from 140px */
  object-fit: cover;
}


.heading-bx { overflow-x: auto;   -webkit-overflow-scrolling: touch; } .heading-bx h1 {
  white-space: nowrap; font-size: clamp(16px, 4vw, 35px);   margin: 0.3em 0;
  line-height: 1.1;
} .heading-bx p {
  white-space: nowrap;  font-size: clamp(10px, 4vw, 20px); margin: 0.3em 0; line-height: 1.1;color:#999;
} .heading-bx p span { white-space: nowrap; font-weight: bold;  color: wheat;
}


.audio-progress-bar{width:100%;height:6px;background:transparent;border-radius:4px;overflow:hidden;margin-top:10px}.audio-progress-fill{height:100%;width:0%;background:linear-gradient(to right,#007bff,#00c6ff);transition:width 0.3s ease}.xi-music-card.playing .audio-progress-fill{box-shadow:0 0 8px rgba(0,123,255,0.6)}.xi-music-card{cursor:pointer;position:relative;background-clip:padding-box}.xi-music-card::before{content:"";pointer-events:none;position:absolute;top:-4px;left:-4px;right:-4px;bottom:-4px;border-radius:14px;background:conic-gradient(#007bff 0deg,#007bff 0deg,transparent 0deg,transparent 360deg);z-index:10;transition:background 0.3s;opacity:0}.xi-music-card.playing .music-icon{position:absolute;bottom:10px;right:10px;font-size:1.5em;color:#fff;animation:blinkNote 5s linear infinite;opacity:1;z-index:2;pointer-events:none}@keyframes blinkNote{0%,100%{opacity:1}50%{opacity:0}}.xi-music-card.loading::before{content:"";position:absolute;top:45%;left:45%;width:24px;height:24px;border:3px solid #007bff;border-top:3px solid transparent;border-radius:50%;animation:spinLoader 1s linear infinite;z-index:3;background:none}.loader{border:3px solid #ccc;border-top:3px solid #007bff;border-radius:50%;width:16px;height:16px;animation:spinLoader 1s linear infinite;display:inline-block;vertical-align:middle;margin-right:8px}@keyframes spinLoader{0%{transform:rotate(0deg)}100%{transform:rotate(360deg)}}.audio-error-message{position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);background:rgba(255,255,255,0.95);color:#333;padding:6px 12px;border-radius:8px;font-size:0.9em;z-index:20;display:flex;align-items:center;gap:5px;box-shadow:0 0 10px rgba(0,0,0,0.15)}.xi-music-card.error{border-color:#dc3545;background-color:#fff5f5}


.afro11{font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;color:white;padding-top:20px;box-sizing:border-box;max-width:100%;overflow:hidden;word-wrap:break-word;}.afro11 h2.afro11{font-size:2rem;font-weight:600;margin:0 0 0.5em 0;}.afro11 p.afro11{font-size:1rem;font-weight:400;margin:0;}.afro11 h2.afro11 span.afro11{color:wheat;}@media (max-width:767px){.afro11 h2.afro11{font-size:1.5rem;}.afro11 p.afro11{font-size:0.9rem;}}

.xi11-post-card{background-color:#242526;color:#e4e6eb;border-radius:10px;border:1px solid #3a3b3c;padding:15px;margin:10px 0;box-shadow:0 1px 3px rgba(0,0,0,0.4);display:flex;flex-direction:column;}.xi11-post-header{display:flex;align-items:center;margin-bottom:10px;}.xi11-post-meta{display:flex;flex-direction:column;}.xi11-date{font-size:12px;color:#b0b3b8;}.xi11-post-image img{width:100%;border-radius:10px;margin:10px 0;object-fit:cover;max-height:250px;}.xi11-post-body{font-size:15px;color:#e4e6eb;margin-top:10px;line-height:1.6;}.xi11-post-footer{display:flex;justify-content:space-between;align-items:center;font-size:13px;color:#b0b3b8;margin-top:15px;border-top:1px solid #3a3b3c;padding-top:10px;}.xi11-read-more{background-color:#4AB3F4;color:#18191a;padding:6px 12px;border-radius:6px;font-weight:bold;text-decoration:none;transition:background-color 0.3s ease,color 0.3s ease;}.xi11-read-more:hover{background-color:#2394e0;color:#ffffff;}.xi11-likes{font-size:14px;color:#b0b3b8;}.xi11-post-text{font-size:15px;color:#e4e6eb;line-height:1.6;height:4.8em;overflow:hidden;display:-webkit-box;-webkit-line-clamp:3;-webkit-box-orient:vertical;text-overflow:ellipsis;max-width:100%;}