/* =========================================================
   SPOTIFY-STYLE THEME (DARK, CLEAN, MODERN)
   Works with your existing HTML structure
   ========================================================= */

/* ---------- Root + Reset ---------- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --bg-main: #121212;
  --bg-elevated: #181818;
  --bg-elevated-soft: #1f1f1f;
  --accent: #1db954;
  --accent-soft: rgba(29, 185, 84, 0.15);
  --accent-strong: #1ed760;
  --text-main: #ffffff;
  --text-muted: #b3b3b3;
  --border-subtle: #282828;
  --danger: #ff4e50;
  --radius-lg: 18px;
  --radius-pill: 999px;
  --shadow-soft: 0 18px 40px rgba(0, 0, 0, 0.45);
  --transition-fast: 0.2s ease-out;
  --transition-med: 0.3s ease;
  --nav-height: 72px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: radial-gradient(circle at top, #202020 0, #121212 40%, #000 100%);
  color: var(--text-main);
  line-height: 1.6;
}

/* Utility */
.section-title {
  font-size: 2.4rem;
  letter-spacing: 0.04em;
  margin-bottom: 0.4rem;
}

.section-subtitle {
  color: var(--text-muted);
  font-size: 0.98rem;
}

/* =========================================================
   NAVBAR
   ========================================================= */

.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  height: var(--nav-height);
  padding: 0 7%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(0, 0, 0, 0.88);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.6);
}

/* logo */
/* logo */
.logo {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.6rem;
  /* space between icon + wordmark */
  filter: brightness(1.6) contrast(1.2);

  gap: 0.6rem;
  /* space between icon + wordmark */

}

/* logo anchor link (for gallery page) */
.logo a {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.6rem;
  text-decoration: none;
  color: inherit;
}

/* round icon / mark */
#logoimage {
  height: 34px;
  /* a bit smaller than text logo */
  width: auto;
  object-fit: contain;
  display: block;
  margin-top: 0;
  /* remove vertical offset */
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.6));
}

/* wordmark logo */
#headerimage {
  height: 40px;
  width: auto;
  object-fit: contain;
  display: block;
  margin-top: 0;
  /* keep both aligned perfectly */
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.6));
}

/* optional: make them scale a bit down on small screens */
@media (max-width: 600px) {
  .logo {
    gap: 0.4rem;
  }

  .logo a {
    gap: 0.4rem;
  }

  #logoimage {
    height: 30px;
  }

  #headerimage {
    height: 34px;
  }
}



/* .logo::before {
  content: "";
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: radial-gradient(circle at 30% 20%, #ffffff, #1db954 55%, #0f0f0f 100%);
} */

/* nav links */
.nav-links ul {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 1.6rem;
}

.nav-links ul li a {
  position: relative;
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  padding: 0.4rem 0;
  transition: color var(--transition-fast);
}

.nav-links ul li a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.25rem;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--accent-strong));
  transition: width var(--transition-med);
}

.nav-links ul li a:hover,
.nav-links ul li a:focus-visible {
  color: #ffffff;
}

.nav-links ul li a:hover::after,
.nav-links ul li a:focus-visible::after {
  width: 100%;
}

/* Login link as pill if you want it distinct */
.nav-links ul li:last-child a {
  padding: 0.45rem 1rem;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.03);
}

.nav-links ul li:last-child a:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #000;
}

/* hamburger */
.hamburger {
  display: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: #ffffff;
  padding: 0.4rem 0.8rem;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.hamburger.open {
  transform: rotate(90deg);
}


/* mobile menu */
.mobile-menu {
  display: none;
  flex-direction: column;
  background: #000000;
  padding: 1rem 7%;
  position: fixed;
  inset: var(--nav-height) 0 auto 0;
  z-index: 999;
  transform: translateY(-100%);
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-med);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.mobile-menu.active {
  display: flex;
  /* 👈 ADD THIS LINE */
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}


.mobile-menu a {
  color: var(--text-main);
  text-decoration: none;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 0.9rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.mobile-menu a:hover {
  color: var(--accent);
}

/* responsive navbar */
@media (max-width: 820px) {
  .nav-links {
    display: none;
  }

  .hamburger {
    display: block;
  }
}

/* =========================================================
   HERO + SLIDESHOW
   ========================================================= */

.hero {
  position: relative;
  min-height: calc(100vh - var(--nav-height));
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

/* slideshow */
.slideshow {
  position: absolute;
  inset: 0;
  z-index: 2;
  overflow: hidden;
}

.slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;

  /* ⭐ SHIFT IMAGE DOWN */
  object-position: center 25%;

  opacity: 0;
  transform: scale(1.06);
  transition: opacity 1.6s ease, transform 1.6s ease;
}


.slide.active {
  opacity: 1;
  transform: scale(1);
}

.image-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top, rgba(69, 69, 69, 0.58), transparent 80%),
    linear-gradient(to bottom, rgba(0, 0, 0, 0.66), #212121);
}

/* floating notes simplified
.floating-notes {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.note {
  position: absolute;
  font-size: 1.6rem;
  color: rgba(255, 255, 255, 0.35);
  animation: floatNote 14s linear infinite;
}

@keyframes floatNote {
  0% {
    transform: translateY(110%) rotate(0deg);
    opacity: 0;
  }
  10% {
    opacity: 0.6;
  }
  90% {
    opacity: 0.6;
  }
  100% {
    transform: translateY(-20%) rotate(360deg);
    opacity: 0;
  }
} */

/* hero content */
.hero-overlay {
  position: relative;
  z-index: 2;
  width: 100%;
  display: flex;
  justify-content: center;
  pointer-events: none;
  /* let clicks through */
}

.hero-content,
.hero-content * {
  pointer-events: auto;
  /* text & buttons stay clickable */
}

.hero-content {
  max-width: 720px;
  padding: 3rem 1.5rem 4rem;
}


.hero-title {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  font-size: clamp(2.4rem, 4vw, 3.2rem);
  text-transform: uppercase;
  letter-spacing: 0.22em;
}

.title-line {
  font-weight: 700;
}

.gradient-text {
  background: linear-gradient(90deg, var(--accent), #ffffff, var(--accent-strong));
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradientShift 4s ease-in-out infinite;
}

@keyframes gradientShift {

  0%,
  100% {
    background-position: 0% center;
  }

  50% {
    background-position: 100% center;
  }
}


/* subtitle */
.hero-subtitle {
  margin-top: 1.2rem;
  font-size: 1.1rem;
  color: var(--text-muted);
}

/* buttons */
.hero-buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2.1rem;
}

.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.85rem 1.9rem;
  border-radius: var(--radius-pill);
  border: none;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast), background var(--transition-med), color var(--transition-med);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.7);
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-strong));
  color: #000;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.8);
}

.btn-outline {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: var(--text-main);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.08);
}

/* slideshow arrows + indicators simplified */
.slide-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.6);
  border: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  color: #ffffff;
  font-size: 1.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background var(--transition-fast), transform var(--transition-fast);
}

.slide-nav:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-50%) scale(1.05);
}

.slide-nav.prev {
  left: 2%;
}

.slide-nav.next {
  right: 2%;
}

.slide-indicators {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
}

.indicator {
  width: 8px;
  height: 8px;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.indicator.active {
  width: 22px;
  background: var(--accent);
}

/* mobile hero tweaks */
@media (max-width: 768px) {
  .hero-content {
    padding-top: 2.2rem;
  }

  .hero-title {
    font-size: 2rem;
    letter-spacing: 0.12em;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .btn {
    width: 100%;
    max-width: 260px;
  }

  .slide-nav {
    display: none;
  }
}

/* =========================================================
   ABOUT SECTION
   ========================================================= */

/* =========================================================
   ABOUT SECTION (ENHANCED + FIXED IMAGE SIZING)
   ========================================================= */

.about-section {
  position: relative;
  padding: 5rem 7%;
  background: radial-gradient(circle at top left, #202020 0, #121212 40%, #050505 100%);
  overflow: hidden;
}

.about-bg-pattern {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at top right, rgba(29, 185, 84, 0.16), transparent 55%),
    radial-gradient(circle at bottom left, rgba(255, 255, 255, 0.04), transparent 55%);
  opacity: 0.9;
}

/* main two-column layout */
.about-container {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 3rem;
  align-items: center;
}

/* -----------------------
   LEFT: IMAGE + FEATURES
   ----------------------- */

.about-image-wrapper {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}

/* Image container */
/* 📸 ABOUT – slideshow with full image visible */
.about-image.about-slideshow {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  background: #000;

  /* fixed aspect ratio so the block is stable */
  aspect-ratio: 4 / 5;
  /* tweak to 3/4 or 16/9 if you prefer */
  max-height: 460px;
}

/* each slide fills the box but keeps full image inside */
.about-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;

  object-fit: contain;
  /* 🔥 key change – no cropping */
  object-position: center center;
  background: #000;
  /* letterbox bars blend into bg */

  opacity: 0;
  transform: scale(1);
  /* no extra zoom that cuts edges */
  transition: opacity 0.8s ease;
}

.about-slide.active {
  opacity: 1;
}


/* Glow border layer */
.about-image::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: linear-gradient(135deg,
      rgba(29, 185, 84, 0.28),
      transparent 40%,
      rgba(255, 255, 255, 0.06));
  mix-blend-mode: soft-light;
  pointer-events: none;
}

/* --- FIXED IMAGE SIZE HERE --- */
.about-img {
  width: 100%;
  height: 100%;
  max-height: 420px;
  /* adjust 350–450 as you prefer */
  object-fit: cover;
  transform: scale(1.02);
  transition: transform var(--transition-med);
}

.about-image:hover .about-img {
  transform: scale(1.06);
}

/* overlay shine */
.image-overlay-effect {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.12), transparent 55%),
    linear-gradient(to bottom, rgba(0, 0, 0, 0.4), transparent 60%);
}

/* floating badge */
.floating-badge {
  position: absolute;
  left: 16px;
  bottom: 16px;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.floating-badge i {
  color: var(--accent);
}

/* small feature cards */
.about-features {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.feature-item {
  background: var(--bg-elevated);
  border-radius: 14px;
  padding: 1rem 1.1rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  border: 1px solid var(--border-subtle);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.55);
}

.feature-icon {
  width: 34px;
  height: 34px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-soft);
  color: var(--accent);
}

.feature-item h4 {
  font-size: 0.96rem;
  font-weight: 600;
}

.feature-item p {
  font-size: 0.86rem;
  color: var(--text-muted);
}

/* -----------------------
   RIGHT: CONTENT BOX
   ----------------------- */

.about-meta {
  padding-bottom: 15px;
}

.about-content {
  max-width: 640px;
  padding: 2.1rem 2.2rem;
  border-radius: var(--radius-lg);
  background: radial-gradient(circle at top left, #1d1d1d 0, #101010 55%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow-soft);
}

.section-label {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.8rem;
  border-radius: var(--radius-pill);
  border: 1px solid var(--accent-soft);
  color: var(--accent);
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 0.9rem;
}

.about-title {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 0.9rem;
}

.title-icon {
  font-size: 1.4rem;
}

.title-text {
  font-size: 1.6rem;
  font-weight: 700;
}

/* content text */
.about-text p {
  font-size: 0.98rem;
  color: var(--text-muted);
  margin-bottom: 0.9rem;
}

.about-tagline,
.highlight-text {
  font-style: italic;
  color: #ffffff;
  border-left: 3px solid var(--accent);
  padding-left: 0.75rem;
}

/* mission card */
.about-mission {
  margin-top: 0.6rem;
  padding: 0.9rem 1rem;
  border-radius: 14px;
  background: rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(29, 185, 84, 0.35);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.75);
}

.about-mission h3 {
  font-size: 0.95rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-strong);
  margin-bottom: 0.35rem;
}

.about-mission p {
  margin: 0;
  font-size: 0.94rem;
  color: var(--text-main);
}

/* button spacing */
.about-btn {
  margin-top: 1.6rem;
}

/* -----------------------
   RESPONSIVE
   ----------------------- */

@media (max-width: 900px) {
  .about-container {
    grid-template-columns: minmax(0, 1fr);
  }

  .about-content {
    order: 2;
    margin-top: 1rem;
    padding: 1.8rem 1.6rem;
  }

  .about-image-wrapper {
    order: 1;
  }
}

@media (max-width: 600px) {
  .about-section {
    padding: 3.5rem 6%;
  }

  .about-title .title-text {
    font-size: 1.4rem;
  }

  .about-pill {
    font-size: 0.7rem;
  }
}


/* =========================================================
   FEATURED / GENRE CARDS
   ========================================================= */

/* ============================
   ACTS OVERVIEW + INDIVIDUAL ACTS
   ============================ */

/* Overview band */
.acts-overview {
  padding: 4.5rem 7% 2.5rem;
  background: radial-gradient(circle at top left, #202020 0, #050505 55%, #000 100%);
  position: relative;
  overflow: hidden;
}

.acts-overview::before {
  content: "";
  position: absolute;
  inset: -40%;
  background: radial-gradient(circle at top right, rgba(29, 185, 84, 0.12) 0, transparent 55%);
  opacity: 0.9;
  pointer-events: none;
}

.acts-header {
  max-width: 720px;
  margin: 0 auto 2rem;
  text-align: center;
  position: relative;
  z-index: 1;
}

.acts-header .section-title {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 1.9rem;
}

/* little pills linking to act sections */
.acts-nav {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.9rem;
  margin-top: 1rem;
}

.acts-nav-item {
  padding: 0.55rem 1.3rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: var(--text-main);
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-decoration: none;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02));
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(10px);
  transition: background var(--transition-fast), transform var(--transition-fast), border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.acts-nav-item:hover {
  background: linear-gradient(135deg, var(--accent), var(--accent-strong));
  border-color: var(--accent);
  color: #000;
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.85);
}

/* =======================
   INDIVIDUAL ACT SECTIONS
   ======================= */

.act-section {
  padding: 3.8rem 7%;
  background: #050505;
  position: relative;
}

.act-section:nth-of-type(odd) {
  background: #0b0b0b;
}

.act-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top left, rgba(29, 185, 84, 0.12), transparent 55%),
    radial-gradient(circle at bottom right, rgba(255, 255, 255, 0.05), transparent 55%);
  opacity: 0.55;
  pointer-events: none;
}

/* Card */
.act-inner {
  position: relative;
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 1.4fr);
  gap: 2.6rem;
  align-items: center;
  padding: 1.9rem 2rem;
  border-radius: 26px;
  background: radial-gradient(circle at top left, rgba(255, 255, 255, 0.06), rgba(10, 10, 10, 0.98));
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 26px 60px rgba(0, 0, 0, 0.9);
  overflow: hidden;
  transform: translateY(0);
  transition: transform var(--transition-med), box-shadow var(--transition-med), border-color var(--transition-med);
}

.act-inner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 12%;
  right: 12%;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent), var(--accent-strong));
  opacity: 0.9;
}

.act-inner:hover {
  transform: translateY(-10px);
  box-shadow: 0 34px 80px rgba(0, 0, 0, 0.95);
  border-color: rgba(255, 255, 255, 0.16);
}

/* Image side */

.act-image {
  position: relative;
  overflow: hidden;
  border-radius: 22px;
}

.act-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.28), transparent 55%);
  mix-blend-mode: multiply;
}

.act-image img {
  width: 100%;
  display: block;
  border-radius: 22px;
  object-fit: cover;
  transform: translateY(0) scale(1.03);
  transition: transform 0.6s ease;
  animation: shiftDown 2s ease forwards;
}

.act-inner:hover .act-image img {
  transform: translateY(6px) scale(1.08);
  transition: transform 0.6s ease;
}

@keyframes shiftDown {
  from {
    transform: translateY(0) scale(1.03);
  }

  to {
    transform: translateY(6px) scale(1.03);
  }
}

/* Text side */

.act-content {
  position: relative;
  z-index: 1;
}

.act-label {
  display: inline-flex;
  align-items: center;
  padding: 0.22rem 1rem;
  border-radius: 999px;
  border: 1px solid var(--accent-soft);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.9rem;
  background: rgba(0, 0, 0, 0.6);
}

.act-title {
  font-size: 1.7rem;
  margin-bottom: 0.8rem;
  letter-spacing: 0.04em;
}

.act-text {
  font-size: 0.96rem;
  color: var(--text-muted);
  margin-bottom: 0.7rem;
}

.act-list {
  margin: 0.35rem 0 0.9rem 1.3rem;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.act-list li {
  margin-bottom: 0.25rem;
}

.act-tagline {
  margin-top: 0.4rem;
  font-style: italic;
  color: var(--accent-strong);
  border-left: 3px solid var(--accent);
  padding-left: 0.6rem;
}

/* call-to-action button */
.act-btn {
  margin-top: 1.2rem;
}

/* Responsive layout for acts */
@media (max-width: 1024px) {
  .act-inner {
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
    padding: 1.7rem 1.6rem;
  }
}

@media (max-width: 900px) {
  .act-inner {
    grid-template-columns: 1fr;
    padding: 1.6rem 1.4rem 1.7rem;
  }

  .act-section {
    padding: 3.2rem 7%;
  }

  .act-image {
    order: -1;
    /* image on top for mobile */
  }
}

@media (max-width: 600px) {
  .acts-overview {
    padding: 3.6rem 6% 2.2rem;
  }

  .act-title {
    font-size: 1.45rem;
  }

  .acts-nav-item {
    font-size: 0.72rem;
    letter-spacing: 0.12em;
  }
}


/* =========================================================
   SPOTLIGHT SECTIONS
   ========================================================= */

.spotlight-section {
  padding: 4rem 7% 3.5rem;
  background: #151515;
}

.spotlight-content {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  gap: 2.8rem;
  align-items: center;
}

.artist-image-container {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #000;
}

.artist-image-container img {
  width: 100%;
  display: block;
  object-fit: cover;
}

.wave-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top left, rgba(29, 185, 84, 0.4), transparent 55%);
  mix-blend-mode: soft-light;
}

.artist-info h2 {
  font-size: 1.5rem;
  margin-bottom: 0.8rem;
}

.artist-info p {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 1.3rem;
}

/* alternate row */
.row-reverse {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
}

/* responsive spotlight */
@media (max-width: 900px) {

  .spotlight-content,
  .row-reverse {
    grid-template-columns: 1fr;
  }
}

/* =========================================================
   EVENTS
   ========================================================= */

.events-section {
  padding: 4.5rem 7%;
  background: #101010;
}

.events-banner {
  border-radius: var(--radius-lg);
  padding: 3rem 2rem;
  background: linear-gradient(135deg, #282828, #181818);
  border: 1px solid var(--border-subtle);
  margin-bottom: 2.8rem;
  text-align: left;
}

.events-banner-title {
  font-size: 2rem;
  margin-bottom: 0.4rem;
}

.events-banner-subtitle {
  color: var(--text-muted);
}

.events-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
}

.event-card {
  background: var(--bg-elevated);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-subtle);
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-soft);
  transition: transform var(--transition-med), box-shadow var(--transition-med);
}

.event-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.9);
}

.event-image-wrapper {
  position: relative;
  height: 190px;
  overflow: hidden;
}

.event-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
  transition: transform var(--transition-med);
}

.event-card:hover .event-img {
  transform: scale(1.09);
}

.event-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent 60%);
}

.event-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 0.25rem 0.7rem;
  border-radius: var(--radius-pill);
  background: rgba(0, 0, 0, 0.7);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--text-main);
}

.event-card-content {
  padding: 1.1rem 1.2rem 1rem;
}

.event-date-wrapper {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.event-title {
  margin-top: 0.4rem;
  font-size: 1.1rem;
}

.event-card p {
  margin-top: 0.4rem;
  color: var(--text-muted);
  font-size: 0.92rem;
}

.event-footer {
  margin-top: 0.7rem;
  padding-top: 0.5rem;
  border-top: 1px solid var(--border-subtle);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.event-location {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.event-arrow {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* =========================================================
   TESTIMONIALS
   ========================================================= */

.testimonials-section {
  padding: 4rem 7%;
  background: #151515;
  text-align: center;
}

.testimonials-grid {
  margin-top: 2.5rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.8rem;
}

.testimonial-card {
  background: var(--bg-elevated);
  border-radius: var(--radius-lg);
  padding: 1.4rem 1.2rem;
  border: 1px solid var(--border-subtle);
}

.avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 0.7rem;
}

.quote {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 0.6rem;
}

.name {
  margin-bottom: 0.1rem;
}

/* =========================================================
   CONTACT
   ========================================================= */

.contact-section {
  padding: 4.5rem 7%;
  background: #101010;
}

.contact-container {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 2.5rem;
  align-items: center;
}

.contact-image img {
  width: 100%;
  border-radius: var(--radius-lg);
  object-fit: cover;
  box-shadow: var(--shadow-soft);
}

.contact-form h2 {
  font-size: 1.6rem;
  margin-bottom: 0.5rem;
}

.contact-form p {
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.contact-form form {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.contact-form input,
.contact-form textarea {
  border-radius: 10px;
  border: 1px solid var(--border-subtle);
  background: #181818;
  color: var(--text-main);
  padding: 0.7rem 0.8rem;
  font-size: 0.95rem;
}

.contact-form button {
  margin-top: 0.4rem;
  border-radius: var(--radius-pill);
  border: none;
  background: var(--accent);
  color: #000;
  padding: 0.75rem 1.4rem;
  font-weight: 600;
  cursor: pointer;
}

/* responsive contact */
@media (max-width: 900px) {
  .contact-container {
    grid-template-columns: 1fr;
  }
}

/* =========================================================
   FOOTER
   ========================================================= */

.footer {
  background: #000000;
  padding: 3rem 7% 1.6rem;
  color: var(--text-muted);
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 2rem;
  margin-bottom: 1.8rem;
}

.footer-logo {
  text-align: left;
}

.footer-logo img {
  width: 50px;
  margin-bottom: 10px;
}

.footer-logo h3 {
  color: var(--text-main);
  font-size: 1.5rem;
  margin-bottom: 5px;
}

#footerimage {
  width: 120px;
  height: 120px;
}

.footer-services ul {
  list-style: none;
  margin-top: 0.6rem;
}

.footer-services li {
  font-size: 0.9rem;
  margin-bottom: 0.25rem;
}

/* socials */
.footer-socials .social-icons {
  display: flex;
  gap: 0.6rem;
  margin-top: 0.7rem;
}

.footer-socials a {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #181818;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.footer-socials a:hover {
  color: var(--accent);
}

/* subscribe */
.footer-subscribe form {
  margin-top: 0.6rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-subscribe input {
  border-radius: 999px;
  border: 1px solid var(--border-subtle);
  padding: 0.6rem 0.8rem;
  background: #181818;
  color: var(--text-main);
}

.footer-subscribe button {
  border-radius: 999px;
  border: none;
  padding: 0.6rem 0.8rem;
  background: var(--accent);
  color: #000;
  font-weight: 600;
}

/* bottom */
.footer-bottom {
  text-align: center;
  border-top: 1px solid var(--border-subtle);
  padding-top: 0.8rem;
  font-size: 0.8rem;
}

/* small-screen footer alignment */
@media (max-width: 700px) {

  .footer-logo,
  .footer-services,
  .footer-socials,
  .footer-subscribe {
    text-align: left;
  }
}

/* ============================================================
   📱 UNIVERSAL MOBILE RESPONSIVENESS PATCH  
   — Fixes ALL sections without rewriting your CSS
   ============================================================ */

/* ---------------------------------------------
   GENERAL MOBILE SPACING
--------------------------------------------- */
@media (max-width: 768px) {
  body {
    padding: 0 !important;
    overflow-x: hidden;
  }

  section {
    padding-left: 5% !important;
    padding-right: 5% !important;
  }
}

/* ---------------------------------------------
   NAVBAR FIXES
--------------------------------------------- */
@media (max-width: 768px) {
  .navbar {
    padding: 0 5%;
    height: 64px;
  }

  #headerimage {
    height: 32px;
  }

  .mobile-menu {
    width: 100%;
    padding: 1rem 6%;
  }
}

/* ---------------------------------------------
   HERO SECTION FIXES
--------------------------------------------- */
@media (max-width: 768px) {
  .hero {
    min-height: 80vh;
  }

  .slide {
    object-position: center 35%;
    /* better framing on mobile */
  }

  .hero-title {
    font-size: 1.8rem !important;
    letter-spacing: 0.1em;
  }

  .hero-subtitle {
    font-size: 0.95rem;
    padding: 0 1rem;
  }
}

/* ---------------------------------------------
   ABOUT SECTION FIXES
--------------------------------------------- */
@media (max-width: 768px) {
  .about-container {
    grid-template-columns: 1fr !important;
  }

  .about-img {
    max-height: 300px;
    border-radius: 14px;
  }

  .about-content {
    padding: 1.4rem !important;
  }

  .about-title .title-text {
    font-size: 1.3rem;
  }
}

/* ---------------------------------------------
   ACTS SECTION FIXES
--------------------------------------------- */
@media (max-width: 768px) {
  .act-inner {
    grid-template-columns: 1fr !important;
    padding: 1.3rem !important;
    gap: 1.4rem !important;
  }

  .act-image img {
    height: 260px !important;
    object-fit: cover;
  }

  .act-title {
    font-size: 1.35rem !important;
  }

  .act-btn {
    width: 100%;
    text-align: center;
  }
}

/* ---------------------------------------------
   CONTACT SECTION FIXES
--------------------------------------------- */
@media (max-width: 768px) {
  .contact-container {
    grid-template-columns: 1fr !important;
  }

  .contact-image img {
    height: 260px !important;
    object-fit: cover;
  }

  .contact-form form input,
  .contact-form form textarea {
    font-size: 0.9rem;
  }
}

/* ---------------------------------------------
   FOOTER FIXES
--------------------------------------------- */
@media (max-width: 768px) {
  .footer-content {
    grid-template-columns: 1fr !important;
    gap: 2rem;
  }

  #footerimage {
    width: 100px;
    height: 100px;
  }

  .footer-services li,
  .footer-socials a {
    font-size: 0.9rem;
  }
}

/* ============================================================
   📱 FIX LOGO COLLAPSING NAVBAR ON MOBILE
   ============================================================ */
@media (max-width: 768px) {

  /* shrink the logo safely */
  #headerimage {
    height: 28px !important;
    width: auto !important;
    max-width: 140px !important;
    object-fit: contain !important;
  }

  .logo {
    flex: 1;
    display: flex;
    justify-content: flex-start;
  }

  /* keep navbar items aligned */
  .navbar {
    height: 60px !important;
    padding: 0 5% !important;
  }

  /* ensure hamburger stays visible */
  .hamburger {
    margin-left: auto;
    flex-shrink: 0;
  }

  /* prevent overflow */
  .navbar * {
    max-width: 100%;
    overflow: hidden;
  }
}

/* ============================================================
   📱 FIX HERO SLIDESHOW IMAGES ON MOBILE
   Makes images scale consistently on all devices
   ============================================================ */
@media (max-width: 768px) {

  .slide {
    object-fit: cover !important;
    object-position: center center !important;
    height: 100vh !important;
    width: 100% !important;
    transform: scale(1.08) !important;
    /* adds cinematic look */
  }

  .slide.active {
    transform: scale(1) !important;
  }

  /* Reduce overlay strength so image stays visible */
  .image-overlay {
    background: linear-gradient(to bottom,
        rgba(0, 0, 0, 0.35),
        rgba(0, 0, 0, 0.75)) !important;
  }
}



/* ============================
     UNIVERSAL SLIDER SYSTEM
   ============================ */
/* DEFAULT (Desktop/Laptop) */
.act-image {
  width: 100%;
  height: 420px;
  position: relative;
  overflow: hidden;
  border-radius: 14px;
}

/* Make slider FULL width and proper height */
.slides img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* MOBILE FIX — resize slider height so it looks clean */
@media (max-width: 600px) {
  .act-image {
    height: 240px;
    /* smaller and perfect for mobile */
    border-radius: 10px;
  }

  .slides img {
    object-position: center;
    /* prevents weird cropping */
  }
}



.slider {
  width: 100%;
  max-width: 450px;
  height: 350px;
  overflow: hidden;
  position: relative;
  border-radius: 12px;
}

.slides {
  width: 100%;
  height: 100%;
  position: relative;
}

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

  opacity: 0;
  animation: fadeSlide 9s infinite;
}



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

  opacity: 0;
  animation: fadeSlide 12s infinite;
}

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

  opacity: 0;
  animation: fadeSlide 15s infinite;
}

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

  opacity: 0;
  animation: fadeSlide 18s infinite;
}

/* === Timing for 4 images === */

.slides4 img:nth-child(1) {
  animation-delay: 0s;
}

.slides4 img:nth-child(2) {
  animation-delay: 3s;
}

.slides4 img:nth-child(3) {
  animation-delay: 6s;
}

.slides4 img:nth-child(4) {
  animation-delay: 9s;
}


/* === Timing for 5 images === */

.slides5 img:nth-child(1) {
  animation-delay: 0s;
}

.slides5 img:nth-child(2) {
  animation-delay: 3s;
}

.slides5 img:nth-child(3) {
  animation-delay: 6s;
}

.slides5 img:nth-child(4) {
  animation-delay: 9s;
}

.slides5 img:nth-child(5) {
  animation-delay: 12s;
}

/* === Timing for 6 images === */

.slides6 img:nth-child(1) {
  animation-delay: 0s;
}

.slides6 img:nth-child(2) {
  animation-delay: 3s;
}

.slides6 img:nth-child(3) {
  animation-delay: 6s;
}

.slides6 img:nth-child(4) {
  animation-delay: 9s;
}

.slides6 img:nth-child(5) {
  animation-delay: 12s;
}

.slides6 img:nth-child(6) {
  animation-delay: 15s;
}

/* === Timing for 3 images === */
.slides img:nth-child(1) {
  animation-delay: 0s;
}

.slides img:nth-child(2) {
  animation-delay: 3s;
}

.slides img:nth-child(3) {
  animation-delay: 6s;
}

/* === Smooth fade effect === */
@keyframes fadeSlide {
  0% {
    opacity: 0;
  }

  5% {
    opacity: 1;
  }

  /* Smooth fade-in */
  20% {
    opacity: 1;
  }

  /* Hold full opacity */
  30% {
    opacity: 0;
  }

  /* Smooth fade-out */
  100% {
    opacity: 0;
  }
}


/* ======== Responsive ======== */
@media (max-width: 600px) {
  .act-image {
    height: 240px;
    border-radius: 10px;
  }

  .slides img {
    object-fit: contain;
    /* FIX: show full image */
    object-position: center;
    background-color: #000;
    /* Makes black letterbox */
  }

  .slides4 img,
  .slides5 img,
  .slides6 img {
    object-fit: contain;
    object-position: center;
    background-color: #000;
  }
}



/*----------------------------------- gallery section ---------------------------------------------*/
/* ---------------------------
   ULTRA MODERN SPOTIFY GALLERY
---------------------------- */

/* GALLERY HEADER */
.gallery-header {
  text-align: center;
  padding: 60px 20px 20px;
  color: #07c647;
  background: linear-gradient(to bottom, #000, #111);
}

.gallery-header h2 {
  font-size: 3rem;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 10px;
  color: #46c052;
}

.gallery-header p {
  max-width: 700px;
  margin: auto;
  font-size: 1.1rem;
  color: #ccc;
  line-height: 1.6;
}




body {
  background: #0d0d0d;
  margin: 0;
  font-family: sans-serif;
}

/* Main Section */
.gallery-container {
  padding: 60px 20px;
  display: flex;
  justify-content: center;
}

/* Pinterest + Dribbble Style Grid */
.gallery-grid {
  width: 90%;
  max-width: 1400px;
  columns: 4;
  /* Masonry style */
  column-gap: 22px;
}

@media(max-width: 1100px) {
  .gallery-grid {
    columns: 3;
  }
}

@media(max-width: 700px) {
  .gallery-grid {
    columns: 2;
  }
}

@media(max-width: 500px) {
  .gallery-grid {
    columns: 1;
  }
}

/* Each Item */
.item {
  width: 100%;
  display: inline-block;
  margin-bottom: 22px;
  break-inside: avoid;
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  background: #111;
  box-shadow: 0 0 22px rgba(0, 0, 0, 0.4);
  transition: transform 0.2s ease, box-shadow 0.3s ease;
}

/* Smooth Hover */
.item img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.35s ease;
}

/* Hover Effects */
.item:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 30px rgba(0, 255, 100, 0.25);
}

.item:hover img {
  transform: scale(1.08);
}

/* Soft Glow Border (Spotify Green) */
.item::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 14px;
  pointer-events: none;
  box-shadow: 0 0 0 0 #1db954;
  transition: box-shadow 0.35s ease;
}

.item:hover::after {
  box-shadow: 0 0 14px 4px rgba(29, 185, 84, 0.55);
}

/* Optional Floating Animation */
.item {
  animation: floatAnim 6s ease-in-out infinite;
}

@keyframes floatAnim {
  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-8px);
  }

  100% {
    transform: translateY(0px);
  }
}



/* =========================================================
   YOUTUBE VIDEO EMBED SECTION
   ========================================================= */
.video-section {
  background-color: #121212;
  padding: 60px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-title {
  font-size: 2.5rem;
  color: #ffffff;
  margin-bottom: 15px;
  font-weight: 700;
}

.section-title span {
  color: #1DB954;
}

.section-subtitle {
  color: #b3b3b3;
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 40px;
}

.video-card {
  background-color: #181818;
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.3s ease, background-color 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.video-card:hover {
  transform: translateY(-8px);
  background-color: #282828;
}

.video-thumbnail {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 56.25%;
  /* 16:9 aspect ratio */
  overflow: hidden;
}

.video-thumbnail iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.video-title {
  padding: 20px;
  color: #ffffff;
  font-size: 1.1rem;
  font-weight: 600;
  line-height: 1.4;
  flex-grow: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 80px;
}

.video-counter {
  text-align: center;
  color: #b3b3b3;
  font-size: 0.9rem;
  margin-top: 20px;
}

.video-counter span {
  color: #1DB954;
  font-weight: 600;
}

/* Responsive design */
@media (max-width: 992px) {
  .video-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }
}

@media (max-width: 768px) {
  .video-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
  }

  .section-title {
    font-size: 2rem;
  }
}


/*-------------------------------------------------- songs list -------------------------------------------*/
/* ===========================
   SONG LIST PAGE – FULL FINAL CSS
   Spotify Theme — No Conflicts
   =========================== */

#songlist {
  --bg: #000000;
  --panel: #111;
  --muted: #9ca3af;
  --white: #ffffff;
  --green: #1db954;
  --green-soft: #1ed760;
  --glass: rgba(255, 255, 255, 0.04);
  --gap: 14px;
  font-family: Inter, system-ui, -apple-system, "Segoe UI", Roboto,
    "Helvetica Neue", Arial;
}

/* MAIN CONTAINER (BIGGER & PREMIUM) */
#songlist .wrap {
  width: 100%;
  max-width: 1200px;
  background: #0a0a0a;
  border-radius: 24px;
  padding: 32px;
  margin: auto;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.05);
  position: relative;
  min-height: 80vh;
  display: flex;
  flex-direction: column;
  gap: 20px;
  animation: fadeInSong 0.6s ease;
}

/* Fade Animation */
@keyframes fadeInSong {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* CONTROLS */
#songlist .controls {
  display: flex;
  gap: 18px;
  align-items: center;
  flex-wrap: wrap;
}

#songlist .controls .left {
  display: flex;
  gap: 18px;
  align-items: center;
  flex: 1 1 420px;
}

/* SEARCH – Enlarged */
#songlist .search {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #121212;
  padding: 14px 20px;
  border-radius: 16px;
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

#songlist .search svg {
  opacity: 0.9;
  color: var(--muted);
}

#songlist .search input {
  background: transparent;
  border: 0;
  outline: 0;
  color: var(--white);
  font-size: 18px;
  width: 100%;
}

/* BUTTONS – Bigger */
#songlist .btn {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 12px 18px;
  border-radius: 14px;
  color: var(--muted);
  cursor: pointer;
  font-size: 16px;
  transition: 0.14s ease;
}

#songlist .btn:hover {
  transform: translateY(-3px);
  color: var(--white);
  border-color: var(--green);
  box-shadow: 0 0 14px rgba(29, 185, 84, 0.45);
}

#songlist .btn.primary {
  border-color: rgba(29, 185, 84, 0.5);
  background: rgba(29, 185, 84, 0.18);
  color: var(--white);
}



/* ALPHABET BAR – Bigger */
#songlist .alpha {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-left: auto;
}

#songlist .alpha button {
  min-width: 42px;
  height: 42px;
  padding: 0 12px;
  border-radius: 10px;
  border: 0;
  background: #111;
  color: var(--muted);
  cursor: pointer;
  font-weight: 700;
  font-size: 16px;
  transition: 0.15s;
}

#songlist .alpha button.active {
  background: rgba(29, 185, 84, 0.35);
  color: var(--white);
  box-shadow: 0 0 16px rgba(29, 185, 84, 0.35);
}

/* LIST AREA */
#songlist .list-wrap {
  height: 72vh;
  overflow: auto;
  padding: 20px;
  border-radius: 18px;
  background: #0d0d0d;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

/* HIDE SCROLLBAR */
#songlist .list-wrap::-webkit-scrollbar {
  width: 0;
}

/* #songlist .list-wrap {
  scrollbar-width: none;
} */

/* Show green scrollbar on hover */
#songlist .list-wrap:hover::-webkit-scrollbar {
  width: 8px;
}

#songlist .list-wrap:hover::-webkit-scrollbar-thumb {
  background: var(--green);
  border-radius: 999px;
}

/* SONG ITEMS – Much Bigger */
#songlist ul.song-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

#songlist ul.song-list li {
  padding: 18px 22px;
  border-radius: 16px;
  background: #161616;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 18px;
  transition: 0.2s;
  cursor: pointer;
  opacity: 0;
  animation: slideUp 0.45s ease forwards;
}

/* Slide Up Effect */
@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(12px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

#songlist ul.song-list li:hover {
  background: rgba(29, 185, 84, 0.18);
  transform: translateY(-4px);
  box-shadow: 0 10px 26px rgba(29, 185, 84, 0.2);
}

#songlist li .title {
  flex: 1;
  font-size: 18px;
  font-weight: 600;
}

/* ICONS */
#songlist .icons {
  display: flex;
  gap: 16px;
}

#songlist .icons i {
  font-size: 20px;
  cursor: pointer;
}

#songlist .fa-heart {
  color: #444;
  transition: 0.25s;
}

#songlist .fa-heart.fav-active {
  color: #1db954;
  transform: scale(1.25);
}

#songlist .fa-copy {
  opacity: 0.9;
}

#songlist .fa-copy:hover {
  opacity: 1;
}

/* FLASH EFFECT */
#songlist .flash {
  animation: flashSong 0.8s ease;
  background: rgba(29, 185, 84, 0.27) !important;
}

@keyframes flashSong {
  50% {
    transform: scale(1.02);
  }
}

/* TOAST */
#songlist .toast {
  position: fixed;
  right: 26px;
  bottom: 26px;
  background: rgba(29, 185, 84, 0.35);
  padding: 12px 18px;
  border-radius: 12px;
  color: #fff;
  font-size: 16px;
  opacity: 0;
  transform: translateY(12px);
  transition: 0.25s;
}

#songlist .toast.show {
  opacity: 1;
  transform: translateY(0);
}

/* MOBILE  ----------------------------*/
@media (max-width: 720px) {

  /* Smaller padding for container */
  #songlist .wrap {
    padding: 14px !important;
    gap: 14px !important;
  }

  /* SEARCH BAR smaller */
  #songlist .search {
    padding: 10px 10px !important;
    border-radius: 12px !important;
    gap: 8px !important;
    width: 170px;
  }

  #songlist .search input {
    font-size: 15px !important;
  }

  /* BUTTONS smaller */
  #songlist .btn {
    padding: 8px 8px !important;
    font-size: 10px !important;
    border-radius: 10px !important;
    width: 60px;
  }

  /* Hide alphabet bar (already hidden) */
  #songlist .alpha {
    display: none !important;
  }

  /* SONG ITEMS slightly smaller */
  #songlist ul.song-list li {
    padding: 14px 14px !important;
    font-size: 15px !important;
  }

  #songlist li .title {
    font-size: 15px !important;
  }

  /* Icons slightly smaller */
  #songlist .icons i {
    font-size: 18px !important;
  }
}


/*------------------- songs buttion and list  --------------------------------*/


.songbtn {
  padding: 10px 20px;
  font-size: 12px;
  margin-left: 120px;
  color: white;
}


/* Mobile view */
@media (max-width: 768px) {
  .songbtn {
    font-size: 16px;
    margin-left: 0;
    /* remove margin on phone */
  }
}
.songbtn2 {
  padding: 10px 20px;
  font-size: 12px;
  margin-left: 80px;
    color: white;

}

.songbtn:hover,
.songbtn2:hover {
  color: rgb(128, 210, 128);
}


/* Mobile view */
@media (max-width: 768px) {
  .songbtn2 {
    font-size: 16px;
    margin-left: 0;
    /* remove margin on phone */
  }
}

/*------------------------------------- girl and guy  ------------------------------------*/
#girlandguysonglist {
  --bg: #000000;
  --panel: #111;
  --muted: #9ca3af;
  --white: #ffffff;
  --green: #1db954;
  --green-soft: #1ed760;
  --glass: rgba(255, 255, 255, 0.04);
  --gap: 14px;
  font-family: Inter, system-ui, -apple-system, "Segoe UI", Roboto,
    "Helvetica Neue", Arial;
}

/* MAIN CONTAINER */
#girlandguysonglist .wrap {
  width: 100%;
  max-width: 1200px;
  background: #0a0a0a;
  border-radius: 24px;
  padding: 32px;
  margin: auto;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.05);
  position: relative;
  min-height: 80vh;
  display: flex;
  flex-direction: column;
  gap: 20px;
  animation: fadeInSong 0.6s ease;
}

@keyframes fadeInSong {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* CONTROLS */
#girlandguysonglist .controls {
  display: flex;
  gap: 18px;
  align-items: center;
  flex-wrap: wrap;
}

#girlandguysonglist .controls .left {
  display: flex;
  gap: 18px;
  align-items: center;
  flex: 1 1 420px;
}

/* SEARCH */
#girlandguysonglist .search {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #121212;
  padding: 14px 20px;
  border-radius: 16px;
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

#girlandguysonglist .search svg {
  opacity: 0.9;
  color: var(--muted);
}

#girlandguysonglist .search input {
  background: transparent;
  border: 0;
  outline: 0;
  color: var(--white);
  font-size: 18px;
  width: 100%;
}

/* BUTTONS */
#girlandguysonglist .btn {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 12px 18px;
  border-radius: 14px;
  color: var(--muted);
  cursor: pointer;
  font-size: 16px;
  transition: 0.14s ease;
}

#girlandguysonglist .btn:hover {
  transform: translateY(-3px);
  color: var(--white);
  border-color: var(--green);
  box-shadow: 0 0 14px rgba(29, 185, 84, 0.45);
}

#girlandguysonglist .btn.primary {
  border-color: rgba(29, 185, 84, 0.5);
  background: rgba(29, 185, 84, 0.18);
  color: var(--white);
}

/* ALPHABET BAR */
#girlandguysonglist .alpha {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-left: auto;
}

#girlandguysonglist .alpha button {
  min-width: 42px;
  height: 42px;
  padding: 0 12px;
  border-radius: 10px;
  border: 0;
  background: #111;
  color: var(--muted);
  cursor: pointer;
  font-weight: 700;
  font-size: 16px;
  transition: 0.15s;
}

#girlandguysonglist .alpha button.active {
  background: rgba(29, 185, 84, 0.35);
  color: var(--white);
  box-shadow: 0 0 16px rgba(29, 185, 84, 0.35);
}

/* LIST AREA */
#girlandguysonglist .list-wrap {
  height: 72vh;
  overflow: auto;
  padding: 20px;
  border-radius: 18px;
  background: #0d0d0d;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

/* SCROLLBAR HIDDEN */
#girlandguysonglist .list-wrap::-webkit-scrollbar {
  width: 0;
}

#girlandguysonglist .list-wrap:hover::-webkit-scrollbar {
  width: 8px;
}

#girlandguysonglist .list-wrap:hover::-webkit-scrollbar-thumb {
  background: var(--green);
  border-radius: 999px;
}

/* SONG LIST */
#girlandguysonglist ul.song-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

#girlandguysonglist ul.song-list li {
  padding: 18px 22px;
  border-radius: 16px;
  background: #161616;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 18px;
  transition: 0.2s;
  cursor: pointer;
  opacity: 0;
  animation: slideUp 0.45s ease forwards;
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(12px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

#girlandguysonglist ul.song-list li:hover {
  background: rgba(29, 185, 84, 0.18);
  transform: translateY(-4px);
  box-shadow: 0 10px 26px rgba(29, 185, 84, 0.2);
}

#girlandguysonglist li .title {
  flex: 1;
  font-size: 18px;
  font-weight: 600;
}

/* ICONS */
#girlandguysonglist .icons {
  display: flex;
  gap: 16px;
}

#girlandguysonglist .icons i {
  font-size: 20px;
  cursor: pointer;
}

#girlandguysonglist .fa-heart {
  color: #444;
  transition: 0.25s;
}

#girlandguysonglist .fa-heart.fav-active {
  color: #1db954;
  transform: scale(1.25);
}

#girlandguysonglist .fa-copy {
  opacity: 0.9;
}

#girlandguysonglist .fa-copy:hover {
  opacity: 1;
}

/* FLASH */
#girlandguysonglist .flash {
  animation: flashSong 0.8s ease;
  background: rgba(29, 185, 84, 0.27) !important;
}

@keyframes flashSong {
  50% {
    transform: scale(1.02);
  }
}

/* TOAST */
#girlandguysonglist .toast {
  position: fixed;
  right: 26px;
  bottom: 26px;
  background: rgba(29, 185, 84, 0.35);
  padding: 12px 18px;
  border-radius: 12px;
  color: #fff;
  font-size: 16px;
  opacity: 0;
  transform: translateY(12px);
  transition: 0.25s;
}

#girlandguysonglist .toast.show {
  opacity: 1;
  transform: translateY(0);
}

/* MOBILE */
@media (max-width: 720px) {

  #girlandguysonglist .wrap {
    padding: 14px !important;
    gap: 14px !important;
  }

  #girlandguysonglist .search {
    padding: 10px 10px !important;
    border-radius: 12px !important;
    gap: 8px !important;
    width: 170px;
  }

  #girlandguysonglist .search input {
    font-size: 15px !important;
  }

  #girlandguysonglist .btn {
    padding: 8px 8px !important;
    font-size: 10px !important;
    border-radius: 10px !important;
    width: 60px;
  }

  #girlandguysonglist .alpha {
    display: none !important;
  }

  #girlandguysonglist ul.song-list li {
    padding: 14px 14px !important;
    font-size: 15px !important;
  }

  #girlandguysonglist li .title {
    font-size: 15px !important;
  }

  #girlandguysonglist .icons i {
    font-size: 18px !important;
  }
}

/*------------------------------------- Yogapants ------------------------------------*/
#yogapantsList {
  --bg: #000000;
  --panel: #111;
  --muted: #9ca3af;
  --white: #ffffff;
  --green: #1db954;
  --green-soft: #1ed760;
  --glass: rgba(255, 255, 255, 0.04);
  --gap: 14px;
  font-family: Inter, system-ui, -apple-system, "Segoe UI", Roboto,
    "Helvetica Neue", Arial;
}

/* MAIN CONTAINER */
#yogapantsList .wrap {
  width: 100%;
  max-width: 1200px;
  background: #0a0a0a;
  border-radius: 24px;
  padding: 32px;
  margin: auto;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.05);
  position: relative;
  min-height: 80vh;
  display: flex;
  flex-direction: column;
  gap: 20px;
  animation: fadeInSong 0.6s ease;
}

@keyframes fadeInSong {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* CONTROLS */
#yogapantsList .controls {
  display: flex;
  gap: 18px;
  align-items: center;
  flex-wrap: wrap;
}

#yogapantsList .controls .left {
  display: flex;
  gap: 18px;
  align-items: center;
  flex: 1 1 420px;
}

/* SEARCH */
#yogapantsList .search {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #121212;
  padding: 14px 20px;
  border-radius: 16px;
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

#yogapantsList .search svg {
  opacity: 0.9;
  color: var(--muted);
}

#yogapantsList .search input {
  background: transparent;
  border: 0;
  outline: 0;
  color: var(--white);
  font-size: 18px;
  width: 100%;
}

/* BUTTONS */
#yogapantsList .btn {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 12px 18px;
  border-radius: 14px;
  color: var(--muted);
  cursor: pointer;
  font-size: 16px;
  transition: 0.14s ease;
}

#yogapantsList .btn:hover {
  transform: translateY(-3px);
  color: var(--white);
  border-color: var(--green);
  box-shadow: 0 0 14px rgba(29, 185, 84, 0.45);
}

#yogapantsList .btn.primary {
  border-color: rgba(29, 185, 84, 0.5);
  background: rgba(29, 185, 84, 0.18);
  color: var(--white);
}

/* ALPHABET BAR */
#yogapantsList .alpha {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-left: auto;
}

#yogapantsList .alpha button {
  min-width: 42px;
  height: 42px;
  padding: 0 12px;
  border-radius: 10px;
  border: 0;
  background: #111;
  color: var(--muted);
  cursor: pointer;
  font-weight: 700;
  font-size: 16px;
  transition: 0.15s;
}

#yogapantsList .alpha button.active {
  background: rgba(29, 185, 84, 0.35);
  color: var(--white);
  box-shadow: 0 0 16px rgba(29, 185, 84, 0.35);
}

/* LIST AREA */
#yogapantsList .list-wrap {
  height: 72vh;
  overflow: auto;
  padding: 20px;
  border-radius: 18px;
  background: #0d0d0d;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

/* SCROLLBAR HIDDEN */
#yogapantsList .list-wrap::-webkit-scrollbar {
  width: 0;
}

#yogapantsList .list-wrap:hover::-webkit-scrollbar {
  width: 8px;
}

#yogapantsList .list-wrap:hover::-webkit-scrollbar-thumb {
  background: var(--green);
  border-radius: 999px;
}

/* SONG LIST */
#yogapantsList ul.song-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

#yogapantsList ul.song-list li {
  padding: 18px 22px;
  border-radius: 16px;
  background: #161616;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 18px;
  transition: 0.2s;
  cursor: pointer;
  opacity: 0;
  animation: slideUp 0.45s ease forwards;
}

#yogapantsList ul.song-list li:hover {
  background: rgba(29, 185, 84, 0.18);
  transform: translateY(-4px);
  box-shadow: 0 10px 26px rgba(29, 185, 84, 0.2);
}

#yogapantsList li .title {
  flex: 1;
  font-size: 18px;
  font-weight: 600;
}

/* ICONS */
#yogapantsList .icons {
  display: flex;
  gap: 16px;
}

#yogapantsList .icons i {
  font-size: 20px;
  cursor: pointer;
}

#yogapantsList .fa-heart {
  color: #444;
  transition: 0.25s;
}

#yogapantsList .fa-heart.fav-active {
  color: #1db954;
  transform: scale(1.25);
}

#yogapantsList .fa-copy {
  opacity: 0.9;
}

#yogapantsList .fa-copy:hover {
  opacity: 1;
}

/* FLASH */
#yogapantsList .flash {
  animation: flashSong 0.8s ease;
  background: rgba(29, 185, 84, 0.27) !important;
}

@keyframes flashSong {
  50% {
    transform: scale(1.02);
  }
}

/* TOAST */
#yogapantsList .toast {
  position: fixed;
  right: 26px;
  bottom: 26px;
  background: rgba(29, 185, 84, 0.35);
  padding: 12px 18px;
  border-radius: 12px;
  color: #fff;
  font-size: 16px;
  opacity: 0;
  transform: translateY(12px);
  transition: 0.25s;
}

#yogapantsList .toast.show {
  opacity: 1;
  transform: translateY(0);
}

/* MOBILE */
@media (max-width: 720px) {

  #yogapantsList .wrap {
    padding: 14px !important;
    gap: 14px !important;
  }

  #yogapantsList .search {
    padding: 10px 10px !important;
    border-radius: 12px !important;
    gap: 8px !important;
    width: 170px;
  }

  #yogapantsList .search input {
    font-size: 15px !important;
  }

  #yogapantsList .btn {
    padding: 8px 8px !important;
    font-size: 10px !important;
    border-radius: 10px !important;
    width: 60px;
  }

  #yogapantsList .alpha {
    display: none !important;
  }

  #yogapantsList ul.song-list li {
    padding: 14px 14px !important;
    font-size: 15px !important;
  }

  #yogapantsList li .title {
    font-size: 15px !important;
  }

  #yogapantsList .icons i {
    font-size: 18px !important;
  }
}

/*------------------------------------- Freestone Keys ------------------------------------*/
#fkSongListWrapper {
  --bg: #000000;
  --panel: #111;
  --muted: #9ca3af;
  --white: #ffffff;
  --green: #1db954;
  --green-soft: #1ed760;
  --glass: rgba(255, 255, 255, 0.04);
  --gap: 14px;
  font-family: Inter, system-ui, -apple-system, "Segoe UI", Roboto,
    "Helvetica Neue", Arial;
}

/* MAIN CONTAINER */
#fkSongListWrapper .wrap {
  width: 100%;
  max-width: 1200px;
  background: #0a0a0a;
  border-radius: 24px;
  padding: 32px;
  margin: auto;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.05);
  position: relative;
  min-height: 80vh;
  display: flex;
  flex-direction: column;
  gap: 20px;
  animation: fadeInSong 0.6s ease;
}

@keyframes fadeInSong {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* CONTROLS */
#fkSongListWrapper .controls {
  display: flex;
  gap: 18px;
  align-items: center;
  flex-wrap: wrap;
}

#fkSongListWrapper .controls .left {
  display: flex;
  gap: 18px;
  align-items: center;
  flex: 1 1 420px;
}

/* SEARCH */
#fkSongListWrapper .search {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #121212;
  padding: 14px 20px;
  border-radius: 16px;
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

#fkSongListWrapper .search svg {
  opacity: 0.9;
  color: var(--muted);
}

#fkSongListWrapper .search input {
  background: transparent;
  border: 0;
  outline: 0;
  color: var(--white);
  font-size: 18px;
  width: 100%;
}

/* BUTTONS */
#fkSongListWrapper .btn {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 12px 18px;
  border-radius: 14px;
  color: var(--muted);
  cursor: pointer;
  font-size: 16px;
  transition: 0.14s ease;
}

#fkSongListWrapper .btn:hover {
  transform: translateY(-3px);
  color: var(--white);
  border-color: var(--green);
  box-shadow: 0 0 14px rgba(29, 185, 84, 0.45);
}

#fkSongListWrapper .btn.primary {
  border-color: rgba(29, 185, 84, 0.5);
  background: rgba(29, 185, 84, 0.18);
  color: var(--white);
}

/* ALPHABET BAR */
#fkSongListWrapper .alpha {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-left: auto;
}

#fkSongListWrapper .alpha button {
  min-width: 42px;
  height: 42px;
  padding: 0 12px;
  border-radius: 10px;
  border: 0;
  background: #111;
  color: var(--muted);
  cursor: pointer;
  font-weight: 700;
  font-size: 16px;
  transition: 0.15s;
}

#fkSongListWrapper .alpha button.active {
  background: rgba(29, 185, 84, 0.35);
  color: var(--white);
  box-shadow: 0 0 16px rgba(29, 185, 84, 0.35);
}

/* LIST AREA */
#fkSongListWrapper .list-wrap {
  height: 72vh;
  overflow: auto;
  padding: 20px;
  border-radius: 18px;
  background: #0d0d0d;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

/* SCROLLBAR */
#fkSongListWrapper .list-wrap::-webkit-scrollbar {
  width: 0;
}

#fkSongListWrapper .list-wrap:hover::-webkit-scrollbar {
  width: 8px;
}

#fkSongListWrapper .list-wrap:hover::-webkit-scrollbar-thumb {
  background: var(--green);
  border-radius: 999px;
}

/* SONG LIST */
#fkSongListWrapper ul.song-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

#fkSongListWrapper ul.song-list li {
  padding: 18px 22px;
  border-radius: 16px;
  background: #161616;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 18px;
  transition: 0.2s;
  cursor: pointer;
  opacity: 0;
  animation: slideUp 0.45s ease forwards;
}

#fkSongListWrapper ul.song-list li:hover {
  background: rgba(29, 185, 84, 0.18);
  transform: translateY(-4px);
  box-shadow: 0 10px 26px rgba(29, 185, 84, 0.2);
}

#fkSongListWrapper li .title {
  flex: 1;
  font-size: 18px;
  font-weight: 600;
}

/* ICONS */
#fkSongListWrapper .icons {
  display: flex;
  gap: 16px;
}

#fkSongListWrapper .icons i {
  font-size: 20px;
  cursor: pointer;
}

#fkSongListWrapper .fa-heart {
  color: #444;
  transition: 0.25s;
}

#fkSongListWrapper .fa-heart.fav-active {
  color: #1db954;
  transform: scale(1.25);
}

#fkSongListWrapper .fa-copy {
  opacity: 0.9;
}

#fkSongListWrapper .fa-copy:hover {
  opacity: 1;
}

/* FLASH */
#fkSongListWrapper .flash {
  animation: flashSong 0.8s ease;
  background: rgba(29, 185, 84, 0.27) !important;
}

@keyframes flashSong {
  50% {
    transform: scale(1.02);
  }
}

/* TOAST */
#fkSongListWrapper .toast {
  position: fixed;
  right: 26px;
  bottom: 26px;
  background: rgba(29, 185, 84, 0.35);
  padding: 12px 18px;
  border-radius: 12px;
  color: #fff;
  font-size: 16px;
  opacity: 0;
  transform: translateY(12px);
  transition: 0.25s;
}

#fkSongListWrapper .toast.show {
  opacity: 1;
  transform: translateY(0);
}

/* MOBILE */
@media (max-width: 720px) {

  #fkSongListWrapper .wrap {
    padding: 14px !important;
    gap: 14px !important;
  }

  #fkSongListWrapper .search {
    padding: 10px 10px !important;
    border-radius: 12px !important;
    gap: 8px !important;
    width: 170px;
  }

  #fkSongListWrapper .search input {
    font-size: 15px !important;
  }

  #fkSongListWrapper .btn {
    padding: 8px 8px !important;
    font-size: 10px !important;
    border-radius: 10px !important;
    width: 60px;
  }

  #fkSongListWrapper .alpha {
    display: none !important;
  }

  #fkSongListWrapper ul.song-list li {
    padding: 14px 14px !important;
    font-size: 15px !important;
  }

  #fkSongListWrapper li .title {
    font-size: 15px !important;
  }

  #fkSongListWrapper .icons i {
    font-size: 18px !important;
  }
}


/*------------------------------------- Collin Freestone Keys ------------------------------------*/
#cfSonglist {
  --bg: #000000;
  --panel: #111;
  --muted: #9ca3af;
  --white: #ffffff;
  --green: #1db954;
  --green-soft: #1ed760;
  --glass: rgba(255, 255, 255, 0.04);
  --gap: 14px;
  font-family: Inter, system-ui, -apple-system, "Segoe UI", Roboto,
    "Helvetica Neue", Arial;
}

/* MAIN CONTAINER */
#cfSonglist .wrap {
  width: 100%;
  max-width: 1200px;
  background: #0a0a0a;
  border-radius: 24px;
  padding: 32px;
  margin: auto;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.05);
  position: relative;
  min-height: 80vh;
  display: flex;
  flex-direction: column;
  gap: 20px;
  animation: fadeInSong 0.6s ease;
}

@keyframes fadeInSong {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* CONTROLS */
#cfSonglist .controls {
  display: flex;
  gap: 18px;
  align-items: center;
  flex-wrap: wrap;
}

#cfSonglist .controls .left {
  display: flex;
  gap: 18px;
  align-items: center;
  flex: 1 1 420px;
}

/* SEARCH */
#cfSonglist .search {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #121212;
  padding: 14px 20px;
  border-radius: 16px;
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

#cfSonglist .search svg {
  opacity: 0.9;
  color: var(--muted);
}

#cfSonglist .search input {
  background: transparent;
  border: 0;
  outline: 0;
  color: var(--white);
  font-size: 18px;
  width: 100%;
}

/* BUTTONS */
#cfSonglist .btn {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 12px 18px;
  border-radius: 14px;
  color: var(--muted);
  cursor: pointer;
  font-size: 16px;
  transition: 0.14s ease;
}

#cfSonglist .btn:hover {
  transform: translateY(-3px);
  color: var(--white);
  border-color: var(--green);
  box-shadow: 0 0 14px rgba(29, 185, 84, 0.45);
}

#cfSonglist .btn.primary {
  border-color: rgba(29, 185, 84, 0.5);
  background: rgba(29, 185, 84, 0.18);
  color: var(--white);
}

/* ALPHABET BAR */
#cfSonglist .alpha {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-left: auto;
}

#cfSonglist .alpha button {
  min-width: 42px;
  height: 42px;
  padding: 0 12px;
  border-radius: 10px;
  border: 0;
  background: #111;
  color: var(--muted);
  cursor: pointer;
  font-weight: 700;
  font-size: 16px;
  transition: 0.15s;
}

#cfSonglist .alpha button.active {
  background: rgba(29, 185, 84, 0.35);
  color: var(--white);
  box-shadow: 0 0 16px rgba(29, 185, 84, 0.35);
}

/* LIST AREA */
#cfSonglist .list-wrap {
  height: 72vh;
  overflow: auto;
  padding: 20px;
  border-radius: 18px;
  background: #0d0d0d;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

/* SCROLLBAR */
#cfSonglist .list-wrap::-webkit-scrollbar {
  width: 0;
}

#cfSonglist .list-wrap:hover::-webkit-scrollbar {
  width: 8px;
}

#cfSonglist .list-wrap:hover::-webkit-scrollbar-thumb {
  background: var(--green);
  border-radius: 999px;
}

/* SONG LIST */
#cfSonglist ul.song-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

#cfSonglist ul.song-list li {
  padding: 18px 22px;
  border-radius: 16px;
  background: #161616;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 18px;
  transition: 0.2s;
  cursor: pointer;
  opacity: 0;
  animation: slideUp 0.45s ease forwards;
}

#cfSonglist ul.song-list li:hover {
  background: rgba(29, 185, 84, 0.18);
  transform: translateY(-4px);
  box-shadow: 0 10px 26px rgba(29, 185, 84, 0.2);
}

#cfSonglist li .title {
  flex: 1;
  font-size: 18px;
  font-weight: 600;
}

/* ICONS */
#cfSonglist .icons {
  display: flex;
  gap: 16px;
}

#cfSonglist .icons i {
  font-size: 20px;
  cursor: pointer;
}

#cfSonglist .fa-heart {
  color: #444;
  transition: 0.25s;
}

#cfSonglist .fa-heart.fav-active {
  color: #1db954;
  transform: scale(1.25);
}

#cfSonglist .fa-copy {
  opacity: 0.9;
}

#cfSonglist .fa-copy:hover {
  opacity: 1;
}

/* FLASH */
#cfSonglist .flash {
  animation: flashSong 0.8s ease;
  background: rgba(29, 185, 84, 0.27) !important;
}

@keyframes flashSong {
  50% {
    transform: scale(1.02);
  }
}

/* TOAST */
#cfSonglist .toast {
  position: fixed;
  right: 26px;
  bottom: 26px;
  background: rgba(29, 185, 84, 0.35);
  padding: 12px 18px;
  border-radius: 12px;
  color: #fff;
  font-size: 16px;
  opacity: 0;
  transform: translateY(12px);
  transition: 0.25s;
}

#cfSonglist .toast.show {
  opacity: 1;
  transform: translateY(0);
}

/* MOBILE */
@media (max-width: 720px) {

  #cfSonglist .wrap {
    padding: 14px !important;
    gap: 14px !important;
  }

  #cfSonglist .search {
    padding: 10px 10px !important;
    border-radius: 12px !important;
    gap: 8px !important;
    width: 170px;
  }

  #cfSonglist .search input {
    font-size: 15px !important;
  }

  #cfSonglist .btn {
    padding: 8px 8px !important;
    font-size: 10px !important;
    border-radius: 10px !important;
    width: 60px;
  }

  #cfSonglist .alpha {
    display: none !important;
  }

  #cfSonglist ul.song-list li {
    padding: 14px 14px !important;
    font-size: 15px !important;
  }

  #cfSonglist li .title {
    font-size: 15px !important;
  }

  #cfSonglist .icons i {
    font-size: 18px !important;
  }
}


/* ===== Girl & Guy Section ===== */
.gg-section {
  display: grid;
  grid-template-columns: 300px 1fr;
  align-items: flex-start;     /* align top */
  gap: 20px;

  width: 100%;
  max-width: 100%;

  background: linear-gradient(180deg, #181818, #121212);
  border-radius: 24px;
  padding: 28px;
  margin: 20px 0;

  box-shadow:
    0 12px 40px rgba(0, 0, 0, 0.6),
    inset 0 0 0 1px rgba(255, 255, 255, 0.05);
}

/* ===== Image wrapper ===== */
.gg-image {
  width: 180px;               /* ✅ SMALL IMAGE */
  aspect-ratio: 1 / 1;
  border-radius: 22px;
  overflow: hidden;
  background: #ffd84d;
  margin-left: 100px;
}

/* Image */
.gg-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ===== Content ===== */
.gg-content {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 10px;
  padding-top: 4px;           /* tiny visual alignment */
}

/* Title */
.gg-content h2 {
  font-size: 30px;
  font-weight: 800;
  margin: 0;
  color: #ffffff;
}

/* Description */
.gg-content p {
  font-size: 16px;
  line-height: 1.7;
  margin: 0;
  max-width: 640px;
  color: #c7c7c7;
}

/* ===== Mobile ===== */
@media (max-width: 768px) {
  .gg-section {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .gg-image {
    margin: 0 auto;
  }

  .gg-content {
    text-align: center;
    align-items: center;
    padding-top: 0;
  }
}
