/* =======================================
   HERO: IMAGE + TEXT SLIDER + DAILY VERSE
======================================= */

.hero {
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(0, 2fr);
  gap: 24px;
  margin-bottom: 26px;
}

.hero-card {
  padding: 0;
  overflow: hidden;
}

.hero-slider {
  position: relative;
}

.hero-slides {
  display: flex;
  transition: transform 0.6s ease;
}

.hero-slide {
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(0, 2.2fr);
  gap: 18px;
  min-width: 100%;
  padding: 22px 22px 20px;
}

.hero-slide-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-slide-image {
  border-radius: 16px;
  overflow: hidden;
  background: radial-gradient(circle at top left, rgba(248,250,252,0.08), rgba(15,23,42,1));
  position: relative;
}

.hero-slide-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.92;
}

.hero-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 3px 10px;
  border-radius: 999px;
  border: 1px solid rgba(250,204,21,0.4);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #fef9c3;
  background: rgba(15,23,42,0.7);
}

.hero-title {
  margin: 14px 0 6px;
  font-size: 2.1rem;
  line-height: 1.15;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.hero-slider-dots {
  position: absolute;
  left: 22px;
  bottom: 16px;
  display: flex;
  gap: 6px;
}

.hero-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: rgba(148,163,184,0.5);
  border: none;
  cursor: pointer;
}

.hero-dot.active {
  width: 20px;
  background: #FACC15;
}

/* Daily Verse */
.hero-verse {
  max-width: 90%;
  margin-left: auto;
}

.verse-title {
  text-align: center;
  font-weight: 700;
  margin-bottom: 10px;
}

.verse-ref {
  text-align: center;
  font-size: 0.83rem;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.verse-block {
  font-size: 0.9rem;
  margin-bottom: 10px;
}

.verse-lang {
  font-weight: 600;
  color: #e5e7eb;
  margin-bottom: 2px;
}

.verse-text {
  color: #cbd5f5;
}

.verse-share {
  display: flex;
  justify-content: center;
  margin-top: 18px;
}

/* =======================================
   HOME: LANGUAGE TABS + VIDEO FRAME
======================================= */

.section-heading {
  font-size: 1.15rem;
  margin: 0 0 8px;
}

.tabs-wrapper {
  margin-top: 10px;
  display: grid;
  grid-template-columns: minmax(0, 1.7fr) minmax(0, 1fr);
  gap: 24px;
  align-items: flex-start;
}

.tabs {
  display: inline-flex;
  gap: 6px;
  padding: 4px;
  border-radius: 999px;
  background: rgba(15,23,42,0.9);
  border: 1px solid rgba(148,163,184,0.4);
  margin-bottom: 14px;
}

.tab-btn {
  padding: 6px 14px;
  border-radius: 999px;
  background: transparent;
  color: var(--text-muted);
  font-size: 0.85rem;
  border: none;
  cursor: pointer;
}

.tab-btn.active {
  background: #FACC15;
  color: #111;
}

.song-list {
  list-style: none;
  font-size: 0.9rem;
  padding: 0;
  margin: 0;
}

.song-list li {
  padding: 7px 0;
  border-bottom: 1px dashed rgba(55,65,81,0.8);
  display: flex;
  justify-content: space-between;
}

.song-list a {
  color: #e5e7eb;
}

.song-meta {
  color: var(--text-muted);
  font-size: 0.78rem;
}

/* Video Frame */

.media-frame {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: 18px;
  background: #020617;
  border: 1px solid rgba(30,64,175,0.9);
}

.media-frame::before {
  content: "";
  display: block;
  padding-top: 56.25%;
}

.media-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border-radius: 18px;
}

/* =======================================
   RESPONSIVE
======================================= */

@media (max-width: 960px) {
  .hero {
    grid-template-columns: 1fr;
  }
  .hero-slide {
    grid-template-columns: 1fr;
  }
  .hero-verse {
    max-width: 100%;
  }
  .tabs-wrapper {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .hero-title {
    font-size: 1.7rem;
  }
}

/* =======================================
   RIGHT COLUMN — SHOW 4 ITEMS
======================================= */

.music-right-col {
  height: 420px; /* fits 4 cards */
  overflow-y: auto;
  padding-right: 6px;
  scroll-snap-type: y mandatory;
}

.music-right-col::-webkit-scrollbar {
  width: 6px;
}

.music-right-col::-webkit-scrollbar-track {
  background: rgba(15,23,42,0.4);
  border-radius: 10px;
}

.music-right-col::-webkit-scrollbar-thumb {
  background: rgba(148,163,184,0.8);
  border-radius: 10px;
}

.music-card {
  height: 95px;
  display: flex;
  padding: 14px;
  margin-bottom: 10px;
  align-items: center;
  border-radius: 16px;
  scroll-snap-align: start;
  background: #fff;
}

.music-card.active {
  background: linear-gradient(90deg,
    rgba(250,204,21,0.15),
    rgba(35,53,120,0.4)
  );
  border: 1px solid rgba(250,204,21,0.4);
  box-shadow: 0 0 12px rgba(250,204,21,0.2);
}

.mws-left { width: 38px; }
.mws-middle { flex: 1; margin-left: 8px; }
.mws-right { width: 110px; text-align: right; }

/* Now Playing badge */
.music-card.active::before {
  content: "Now Playing";
  position: absolute;
  top: -8px;
  left: 18px;
  font-size: 0.70rem;
  padding: 3px 10px;
  border-radius: 999px;
  background: #FACC15;
  color: #111;
  font-weight: 600;
}

/* =======================================
   MEDIUM BLUE GLASS — BIG MUSIC PLAYER
======================================= */

.big-player {
  background: rgba(60, 95, 200, 0.22);  /* medium blue glass */
  backdrop-filter: blur(22px) saturate(140%);
  -webkit-backdrop-filter: blur(22px) saturate(140%);
  border-radius: 28px;
  padding: 30px;
  border-bottom: 4px solid rgba(250,204,21,0.45);
  box-shadow: 0 8px 26px rgba(0,0,0,0.35);
  position: relative;
  overflow: hidden;
}

.big-player::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at top left,
    rgba(255,255,255,0.13),
    rgba(20,30,70,0.4)
  );
  pointer-events: none;
}

.player-song-title {
  color: #fff;
  font-size: 1.8rem;
  font-weight: 700;
}

.player-song-artist {
  color: rgba(235,245,255,0.8);
  font-size: 1rem;
  margin-top: 6px;
}

.player-progress-row span {
  color: rgba(255,255,255,0.8);
}

.player-progress {
  background: rgba(255,255,255,0.2);
}

.player-progress-bar {
  background: #FACC15;
}

/* Language Badge */
.big-player .player-meta-line,
.big-player .track-lang {
  position: absolute;
  top: 32px;
  right: 32px;
  background: rgba(255,255,255,0.20);
  padding: 6px 16px;
  font-size: 0.9rem;
  border-radius: 14px;
  color: #fff;
  backdrop-filter: blur(10px);
}

/* Cover */
.big-player-cover img {
  border-radius: 20px;
  box-shadow: 0px 12px 25px rgba(0,0,0,0.35);
}

/* Buttons */
.player-btn {
  background: rgba(255,255,255,0.18);
  color: white;
  border: none;
  border-radius: 50%;
}

.player-btn:hover {
  background: rgba(255,255,255,0.32);
}

.player-download-btn {
  background: #FACC15;
  color: #111;
}

.player-download-btn:hover {
  background: #f7bf24;
}
