/* Base */
body {
  margin: 0;
  background: #f9fafb;
  color: #222;
  line-height: 1.6;
}
a{
  text-decoration: none !important;
}

.hind-font{
  font-family: 'Hind',serif;
}
.tiro-devanagari-font{
  font-family: 'Tiro Devanagari Hindi',serif;
}
.ubuntu-font{
  font-family: 'Ubuntu',serif;

}
.font-w-400{
  font-weight: 400;
}

.font-w-500{
  font-weight: 500;
}

.font-w-600{
  font-weight: 600;
}

.font-w-700{
  font-weight: 700;
}


.container {
  max-width: 850px;
  margin: auto;
  padding: 20px;
}

/* Header */
.header {
  display: flex;
  align-items: center;
  border-bottom: 1px solid #eaeaea;
  padding-bottom: 15px;
  margin-bottom: 25px;
  margin-top: 50px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 15px;
}

.logo-img {
  height: 60px;
  width: 60px;
  border-radius: 12px;
}

.brand h1 {
  margin: 0;
  font-size: 1.6rem;
  font-weight: 600;
}

.subtitle {
  font-size: 0.95rem;
  color: #666;
}


.brand h1,
.brand .subtitle {
  margin: 0;          /* remove default top/bottom margins */
  padding: 0;         /* ensure no padding */
}

.brand h1 {
  font-size: 1.6rem;
  font-weight: 600;
}

.brand .subtitle {
  font-size: 0.95rem;
  color: #666;
}




/* Card */
.card {
  background: #fff;
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}

.title {
  font-size: 1.8rem;
  margin-bottom: 10px;
  color: #2c3e50;
}

.effective {
  color: #444;
  margin-bottom: 20px;
}

section {
  margin-bottom: 22px;
}

section h3 {
  font-size: 1.2rem;
  margin-bottom: 8px;
  color: #374151;
}

ul {
  padding-left: 20px;
}

ul li {
  margin-bottom: 6px;
}

/* Footer */
footer {
  text-align: center;
  margin-top: 30px;
  padding-top: 20px;
  font-size: 0.9rem;
  color: #666;
  border-top: 1px solid #eaeaea;
}



.bounce-image {
  animation: bounceSlow 3s ease-in-out infinite;
}

@keyframes bounceSlow {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-15px);
  }
}
.category-card {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-radius: 1rem;
  /* background-color: #f8f9fa; */
}
.category-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
}
.category-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
  border-radius: 1rem;
}
.category-card:hover img {
  transform: scale(1.08);
}
.category-info {
  margin-top: 0.8rem;
}
.category-info h6 {
  font-weight: 600;
  margin-bottom: 0.25rem;
}
.category-info p {
  font-size: 0.875rem;
  color: #6c757d;
  margin-bottom: 0.3rem;
}
.category-tag {
  display: inline-block;
  font-size: 0.75rem;
  background-color: #e9ecef;
  color: #495057;
  border-radius: 50px;
  padding: 2px 8px;
}
.category-link {
  text-decoration: none;
  color: inherit;
  display: block;
}
.category-link:hover h6 {
  color: #0d6efd;
}
/* optional colored backgrounds */
.bg-blue-light { background-color: #e3f2fd; }
.bg-green-light { background-color: #e8f5e9; }
.bg-yellow-light { background-color: #fff8e1; }
.bg-pink-light { background-color: #fce4ec; }
.bg-gray-light { background-color: #f5f5f5; }
.bg-purple-light { background-color: #f3e5f5; }

.song-card {
  background: #d6d4d4;
  border-radius: 12px;
  transition: all 0.3s ease;
  border: 1px solid #eee;
}

.song-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

/* ✅ Proper 16:9 image ratio */
.song-img-wrapper {
  position: relative;
  width: 100%;
  padding-top: 56.25%; /* 16:9 ratio (9/16 = 0.5625) */
  border-radius: 10px;
  overflow: hidden;
  background: #f8f9fa;
}

.song-img-wrapper img {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.song-tags span {
  font-size: 0.75rem;
  padding: 3px 8px;
  border-radius: 6px;
  margin-right: 5px;
  display: inline-block;
  font-weight: 500;
}

.tag-id { background: #ffe5e5; color: #d63384; }
.tag-singer { background: #e9d8fd; color: #6f42c1; }
.tag-cat { background: #fde2e1; color: #dc3545; }
.tag-views { background: #d1f7e5; color: #198754; }

.song-title {
  color: #3b26a3;
  font-weight: 600;
  font-size: 0.95rem;
  margin-top: 0.3rem;
  line-height: 1.3;
}

@media (max-width: 576px) {
  .song-title {
    font-size: 0.9rem;
  }
}


.footer {
  font-size: 0.9rem;
}

.footer-link {
  color: #bbb;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-link:hover {
  color: #fff;
  text-decoration: underline;
}

.footer img {
  width: 50px;
  height: 50px;
  object-fit: cover;
}

@media (max-width: 576px) {
  .footer {
    text-align: center;
  }
  .footer img {
    margin: 0 auto 10px;
  }
}

.cat-card {
    width: 100%;
    min-height: 150px;
    justify-content: center;
    transition: transform .15s ease, box-shadow .15s ease;
}

.cat-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 18px rgba(0,0,0,0.25);
}

.cat-img {
    width: 70px;
    height: 70px;
    object-fit: cover;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.6);
}

.cat-img.placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.25);
    font-size: 30px;
    font-weight: bold;
}

h6 {
    font-size: 0.95rem;
}



.top-scroll-wrapper {
  overflow-x: auto;
  white-space: nowrap;
  padding: 8px 0;
  scrollbar-width: none;        /* Firefox */
}

.top-scroll-wrapper::-webkit-scrollbar {
  display: none;                /* Chrome */
}

/* Buttons container */
.top-scroll {
  display: inline-flex;
  gap: 10px;
  padding-left: 5px;
}

/* Individual button */
.top-btn {
  padding: 8px 16px;
  background: #D6D4D4;
  border: 0;
  border-radius: 8px;
  font-size: 0.9rem;
  cursor: pointer;
  white-space: nowrap;
  transition: 0.2s;
  font-weight: 500;
  color:#284A58;
}

/* Hover + Active */
.top-btn:hover {
  background: #e4e4e4;
}

.top-btn.active {
  background: #005eff;
  color: white;
}


/* Wrapper */
.lk-card-wrap {
  height: 190px;
  border-radius: 18px;
}

/* Background Image */
.lk-card-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(0.7);
}

/* Overlay */
.lk-card-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  border-radius: inherit;
}

/* Foreground Content */
.lk-card-body {
  position: relative;
  z-index: 10;
}

/* Circular Avatar */
.lk-avatar {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #fff;
}

/* Avatar Placeholder */
.lk-avatar-placeholder {
  background: #444;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 24px;
}

/* Background Placeholder */
.lk-bg-placeholder {
  background: #222;
}
