/* ==========================================================================
   The Fire Bean — guaska e sajtit
   Sfond i ngrohtë i errët; çdo kanal sjell theksin e vet me --accent.
   ========================================================================== */

:root {
  /* grinjtë kanë nuancë të ngrohtë, jo neutrale — duken më të pasura */
  --bg: #0c0a09;
  --surface: #16120f;
  --surface-2: #1e1915;
  --surface-3: #262019;
  --line: rgba(255, 236, 214, 0.09);
  --hairline: rgba(255, 240, 220, 0.14);
  --text: #f6f1ea;
  --text-muted: #b0a396;
  --text-dim: #7b6f64;

  --accent: #d8ab4e;        /* i parazgjedhur = The Fire Bean */
  --accent-2: #e8703a;      /* skaji i dytë i flakës, për shkallëzime */
  --accent-soft: rgba(216, 171, 78, 0.15);

  --font-display: "Bricolage Grotesque", "Inter", system-ui, sans-serif;
  --font-text: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  --r-sm: 10px;
  --r-md: 18px;
  --r-lg: 28px;

  /* tri nivele: hijë e ngushtë, e gjerë e butë, plus vijë drite sipër */
  --shadow: 0 1px 2px rgba(0, 0, 0, 0.5), 0 10px 30px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 2px 6px rgba(0, 0, 0, 0.5), 0 30px 70px rgba(0, 0, 0, 0.55);
  --edge: inset 0 1px 0 var(--hairline);

  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
  --wrap: 1200px;
}

[data-channel="zjarrmi"] {
  --accent: #ff6a3d;
  --accent-2: #ffb03a;
  --accent-soft: rgba(255, 106, 61, 0.16);
}
[data-channel="firebean"] {
  --accent: #d8ab4e;
  --accent-2: #e8703a;
  --accent-soft: rgba(216, 171, 78, 0.15);
}

/* ===========================================================================
   Kalimet mes faqeve. Sajti është me shumë faqe (PHP), ndaj kjo rregull e vetme
   e bën lundrimin të rrjedhë si aplikacion. Aty ku shfletuesi s'e mbështet,
   faqet ndërrohen si gjithmonë — nuk prishet asgjë.
   =========================================================================== */
@view-transition { navigation: auto; }

::view-transition-old(root) { animation: vt-out 0.22s cubic-bezier(0.4, 0, 1, 1) both; }
::view-transition-new(root) { animation: vt-in 0.32s cubic-bezier(0.16, 1, 0.3, 1) both; }

@keyframes vt-out { to { opacity: 0; transform: translateY(-8px); } }
@keyframes vt-in { from { opacity: 0; transform: translateY(12px); } }

/* koka nuk duhet të lëvizë bashkë me faqen — mbetet e ngulur */
.site-head { view-transition-name: site-head; }

* { box-sizing: border-box; }

/* Rregullat tona me `display` e mposhtin `[hidden]` të shfletuesit, sepse stilet e
   autorit kanë përparësi mbi ato të parazgjedhura. Pa këtë, filtrat e fshehin kartën
   në kod por ajo mbetet e dukshme në ekran. */
[hidden] { display: none !important; }

html {
  -webkit-text-size-adjust: 100%;
  color-scheme: dark;                    /* kontrollet vendase, shiritat, formularët */
}

/* Prekja: pa vonesën 300ms dhe pa bllokun blu të parazgjedhur të Android-it. */
a, button, input, select, textarea, [role="button"] {
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}

body {
  margin: 0;
  color: var(--text);
  font-family: var(--font-text);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  /* prush i largët në cepat e sipërm — zjarri ndihet pa u parë */
  background:
    radial-gradient(1100px 620px at 12% -8%, rgba(232, 112, 58, 0.10), transparent 60%),
    radial-gradient(900px 520px at 92% 4%, rgba(216, 171, 78, 0.08), transparent 62%),
    var(--bg);
  background-attachment: fixed;
}

/* Kokrrizë filmike: heq shkëlqimin plastik të sipërfaqeve të sheshta.
   Rri mbi gjithçka por nuk kap as klikime as prekje. */
body::after {
  content: "";
  position: fixed; inset: 0; z-index: 999; pointer-events: none;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)'/%3E%3C/svg%3E");
}

img { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

/* Mbushja anësore njeh prerjen e ekranit: në telefonat me cep të rrumbullakosur
   ose me shirit anësor, teksti nuk duhet të shkojë nën të. */
.wrap {
  width: 100%; max-width: var(--wrap); margin: 0 auto;
  padding-inline: max(24px, env(safe-area-inset-left), env(safe-area-inset-right));
}

.muted { color: var(--text-muted); }
.dim { color: var(--text-dim); }

.skip {
  position: absolute; left: -9999px;
  background: var(--accent); color: #12100e; padding: 12px 20px; border-radius: var(--r-sm);
}
.skip:focus { left: 16px; top: 16px; z-index: 100; }

:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; border-radius: 4px; }

/* ------------------------------------------------------------------ tipografia */

h1, h2, h3 {
  font-family: var(--font-display);
  line-height: 1.05; margin: 0; font-weight: 800; letter-spacing: -0.035em;
  text-wrap: balance;
}

/* Madhësitë rrjedhin me ekranin. Titulli i kreut shkon deri në përmasë faqeje —
   në një sajt muzikor teksti është vetë pamja, jo shtojcë e saj. */
.display {
  font-size: clamp(2.9rem, 9.2vw, 7.6rem);
  line-height: 0.86; letter-spacing: -0.055em;
  text-transform: uppercase;
}
.display-sub { font-size: clamp(2.2rem, 7vw, 5rem); line-height: 0.9; letter-spacing: -0.045em; }
h1 { font-size: clamp(2.1rem, 5.2vw, 3.6rem); }
h2 { font-size: clamp(1.4rem, 2.6vw, 1.9rem); }
h3 { font-size: 1.0625rem; font-weight: 700; letter-spacing: -0.015em; }

/* rreshti i dytë i titullit rri i tërhequr — thyerje editoriale, jo qendërzim */
.display .line { display: block; }
.display .indent { padding-left: 0.12em; }

/* fjala që duhet të digjet: shkallëzim flake mbi tekst.
   Ngjyra bëhet e tejdukshme VETËM nëse shfletuesi e pret sfondin te teksti —
   përndryshe fjala do të zhdukej fare. */
.flame { color: var(--accent); }
@supports ((-webkit-background-clip: text) or (background-clip: text)) {
  .flame {
    background: linear-gradient(100deg, var(--accent-2), var(--accent) 55%, #ffd98a);
    -webkit-background-clip: text; background-clip: text;
    color: transparent;
  }
}

.lede { font-size: clamp(1.05rem, 1.5vw, 1.2rem); color: var(--text-muted); max-width: 58ch; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  font-size: 0.6875rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.18em; color: var(--accent);
}
.eyebrow::before {
  content: ""; width: 22px; height: 1px; background: currentColor; opacity: 0.6;
}

/* ---------------------------------------------------------------------- koka */

.site-head {
  position: sticky; top: 0; z-index: 50;
  background: rgba(15, 13, 12, 0.82);
  backdrop-filter: blur(12px);
  box-shadow: inset 0 -1px 0 var(--line);
}
.head-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; height: 68px; }

.brand { display: inline-flex; align-items: center; gap: 12px; font-weight: 800; letter-spacing: -0.02em; }
.brand-text { font-size: 1.05rem; }
.brand-mark {
  width: 34px; height: 34px; border-radius: 50%; flex: none; object-fit: cover;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.08), 0 0 22px var(--accent-soft);
}

.nav { display: flex; gap: 4px; }
.nav a {
  padding: 8px 14px; border-radius: 999px;
  color: var(--text-muted); font-size: 0.9375rem; font-weight: 600;
  transition: color 0.2s var(--ease), background-color 0.2s var(--ease);
}
.nav a:hover { color: var(--text); background: var(--surface-2); }

/* ------------------------------------------------------- menuja në telefon */

.nav-toggle {
  display: none; width: 42px; height: 42px; flex: none;
  align-items: center; justify-content: center;
  background: var(--surface-2); border: 0; border-radius: 12px;
  box-shadow: var(--edge); color: var(--text); cursor: pointer;
}
.nav-bars, .nav-bars::before, .nav-bars::after {
  display: block; width: 18px; height: 2px; border-radius: 2px;
  background: currentColor; transition: transform 0.25s var(--ease), opacity 0.2s var(--ease);
}
.nav-bars { position: relative; }
.nav-bars::before, .nav-bars::after { content: ""; position: absolute; left: 0; }
.nav-bars::before { top: -6px; }
.nav-bars::after { top: 6px; }

/* kryqi kur menuja është e hapur */
[aria-expanded="true"] .nav-bars { background: transparent; }
[aria-expanded="true"] .nav-bars::before { transform: translateY(6px) rotate(45deg); }
[aria-expanded="true"] .nav-bars::after { transform: translateY(-6px) rotate(-45deg); }

@media (max-width: 720px) {
  /* vetëm kur JavaScript-i e ka ndezur — pa të, menuja mbetet e dukshme */
  .js-nav .nav-toggle { display: inline-flex; }
  .js-nav .nav {
    position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; gap: 2px; padding: 10px 18px 20px;
    background: rgba(12, 10, 9, 0.94);
    backdrop-filter: blur(16px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5), inset 0 1px 0 var(--line);
    opacity: 0; visibility: hidden; transform: translateY(-10px);
    transition: opacity 0.25s var(--ease), transform 0.25s var(--ease), visibility 0.25s;
  }
  .js-nav .nav[data-open="true"] { opacity: 1; visibility: visible; transform: none; }
  .js-nav .nav a { padding: 13px 16px; border-radius: var(--r-sm); font-size: 1rem; }
  .js-nav .brand-text { display: inline; }
}

/* ---------------------------------------------------------------------- hero */

/* Kreu zë gjithë ekranin dhe teksti ulet poshtë, mbi imazh: pamja hyn e para,
   fjala e dyta. 100svh sepse në telefon shiriti i shfletuesit e pret 100vh. */
.hero {
  position: relative; overflow: hidden;
  min-height: 94svh; display: flex; align-items: flex-end;
  padding: 116px 0 52px;
}
.hero::before {
  content: ""; position: absolute; inset: auto -10% -25% -10%; height: 65%;
  background: radial-gradient(ellipse at 28% 100%, rgba(232, 112, 58, 0.18), transparent 66%);
  pointer-events: none; z-index: 1;
}

/* Hero me video: sa lartësia e ekranit. 100svh është lartësia e vogël e pamjes —
   pa të, shiriti i shfletuesit në telefon e pret pjesën e poshtme. */
.hero-video {
  min-height: 100vh;
  min-height: 100svh;
  display: flex; align-items: flex-end;
  padding-top: 120px; padding-bottom: 72px;
}
.hero-video .wrap { width: 100%; position: relative; z-index: 2; }
/* i njëjti trajtim kur hero-ja me video përdoret te faqja e kanalit ose e projektit */
.channel-hero.hero-video { padding-top: 140px; padding-bottom: 64px; }

.hero-media {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; z-index: 0;
}
/* errësim që teksti të mbetet i lexueshëm mbi çdo kadër */
.hero-shade {
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(to top, var(--bg) 2%, rgba(12, 10, 9, 0.35) 55%, rgba(12, 10, 9, 0.6)),
    radial-gradient(80% 60% at 20% 90%, rgba(12, 10, 9, 0.7), transparent);
}

/* kopertina mbush gjithë kreun dhe shuhet poshtë, aty ku nis teksti */
.hero-cover {
  position: absolute; inset: 0;
  background-size: cover; background-position: center 28%;
  opacity: 0.5;
  -webkit-mask-image: linear-gradient(to bottom, #000 0%, rgba(0, 0, 0, 0.5) 48%, transparent 97%);
  mask-image: linear-gradient(to bottom, #000 0%, rgba(0, 0, 0, 0.5) 48%, transparent 97%);
}
.hero .wrap { position: relative; z-index: 2; width: 100%; }

/* kreu: titulli poshtë, teksti dhe numrat në një rresht të vetëm nën të */
.hero-inner { display: flex; flex-direction: column; justify-content: flex-end; }
.hero-type { margin: 18px 0 0; }
.hero-foot {
  display: flex; flex-wrap: wrap; gap: 32px 56px;
  align-items: end; justify-content: space-between; margin-top: 40px;
}
.hero-foot .lede { margin: 0; max-width: 44ch; }

/* numrat si rrjedhë editoriale, jo kuti */
.rail { display: flex; gap: 40px; margin: 0; }
.rail div { display: flex; flex-direction: column-reverse; }
.rail dt {
  font-size: 0.6875rem; text-transform: uppercase; letter-spacing: 0.16em;
  color: var(--text-dim); font-weight: 700; margin-top: 6px;
}
.rail dd {
  margin: 0; font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.4rem); font-weight: 800; letter-spacing: -0.04em; line-height: 1;
}

/* -------------------------------------------------------------- rripi i titujve */

.ticker {
  overflow: hidden; padding: 18px 0;
  box-shadow: inset 0 1px 0 var(--line), inset 0 -1px 0 var(--line);
  -webkit-mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent);
}
.ticker-track { display: flex; width: max-content; animation: ticker 60s linear infinite; }
.ticker:hover .ticker-track { animation-play-state: paused; }
.ticker-run { display: flex; }
.ticker-item {
  font-family: var(--font-display); font-size: 1.05rem; font-weight: 700;
  letter-spacing: -0.02em; color: var(--text-dim); white-space: nowrap; padding: 0 26px;
}
.ticker-item::after { content: "✶"; margin-left: 26px; color: var(--accent); opacity: 0.55; }

/* lëvizja e vazhdueshme është i vetmi vend ku ritmi duhet të jetë linear */
@keyframes ticker { to { transform: translateX(-50%); } }

.stats { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 52px; }
.stats > div {
  flex: 1 1 150px; padding: 20px 22px; border-radius: var(--r-md);
  background: linear-gradient(160deg, var(--surface-2), var(--surface));
  box-shadow: var(--shadow), var(--edge);
}
.stat-n {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.375rem); font-weight: 800;
  letter-spacing: -0.04em; display: block; line-height: 1;
}
.stat-l {
  font-size: 0.6875rem; color: var(--text-dim);
  text-transform: uppercase; letter-spacing: 0.16em; font-weight: 700;
  display: block; margin-top: 8px;
}

/* -------------------------------------------------------------------- seksionet */

.section { padding: 84px 0; }
.section-head {
  display: flex; align-items: baseline; justify-content: space-between;
  gap: 24px; margin-bottom: 34px; padding-bottom: 18px; position: relative;
}
/* vijë e hollë poshtë titullit, me një pjesë të ndezur në ngjyrën e kanalit */
.section-head::after {
  content: ""; position: absolute; inset: auto 0 0 0; height: 1px;
  background: linear-gradient(to right, var(--accent) 0 68px, var(--line) 68px);
}
.section-head a { color: var(--text-muted); font-size: 0.9375rem; font-weight: 600; transition: color 0.2s var(--ease); }
.section-head a:hover { color: var(--accent); }

/* --------------------------------------------------------------- kartat e kanaleve */

.worlds { display: grid; grid-template-columns: repeat(auto-fit, minmax(340px, 1fr)); gap: 24px; }

.world {
  position: relative; padding: 40px; border-radius: var(--r-lg);
  background: linear-gradient(160deg, var(--surface-2), var(--surface));
  box-shadow: var(--shadow);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  overflow: hidden;
}
.world::after {
  content: ""; position: absolute; inset: 0 0 auto 0; height: 3px; background: var(--accent);
}
.world:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.world-logo { width: 72px; height: 72px; border-radius: 16px; object-fit: cover; margin-bottom: 20px; }
.world h2 { font-size: 1.75rem; margin: 14px 0 10px; }
.world p { color: var(--text-muted); margin: 0 0 28px; }
.world-meta { display: flex; gap: 24px; font-size: 0.875rem; color: var(--text-dim); margin-bottom: 28px; }
.world-cats { display: flex; flex-wrap: wrap; gap: 8px; }

/* kalimi mes gjuhëve, i dukshëm por jo bërtitës */
.lang-switch {
  margin-left: auto; padding: 5px 13px; border-radius: 999px;
  background: var(--surface-2); box-shadow: var(--edge);
  font-size: 0.75rem; font-weight: 700; letter-spacing: 0.06em;
  color: var(--text-muted); transition: color 0.2s var(--ease), background-color 0.2s var(--ease);
}
.lang-switch:hover { color: var(--text); background: var(--surface-3); }

.pill {
  display: inline-block; padding: 6px 14px; border-radius: 999px;
  background: var(--accent-soft); color: var(--accent);
  font-size: 0.8125rem; font-weight: 600;
}
.pill-quiet { background: var(--surface-2); color: var(--text-muted); }

/* ------------------------------------------------------------------ botimet */

.album-head { padding-bottom: 24px; }
.album-hero { display: grid; grid-template-columns: 260px minmax(0, 1fr); gap: 40px; align-items: end; }
.album-cover {
  width: 260px; height: 260px; object-fit: cover;
  border-radius: var(--r-md); box-shadow: var(--shadow-lg);
}

.releases { display: grid; gap: 26px 20px; grid-template-columns: repeat(auto-fill, minmax(170px, 1fr)); }
.release { display: block; transition: transform 0.3s var(--ease); }
.release:hover { transform: translateY(-5px); }
.release-art {
  aspect-ratio: 1; border-radius: var(--r-md); overflow: hidden;
  background: var(--surface-2); box-shadow: var(--shadow), var(--edge); margin-bottom: 12px;
}
.release-art img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.release:hover .release-art img { transform: scale(1.05); }
.release-name { font-family: var(--font-display); font-weight: 700; letter-spacing: -0.02em; line-height: 1.25; }
.release:hover .release-name { color: var(--accent); }
.release-meta { font-size: 0.75rem; color: var(--text-dim); margin-top: 3px; }

/* rreshtat e albumit: ata pa faqe në katalog nuk duhet të duken si të klikueshëm */
.row-album { grid-template-columns: 3.5rem minmax(0, 2fr) minmax(0, 1fr) 4rem; }
.row-plain { cursor: default; color: var(--text-dim); }
.row-plain::before { display: none; }
.row-plain .row-title { color: var(--text-muted); }

@media (max-width: 860px) {
  .album-hero { grid-template-columns: minmax(0, 1fr); gap: 24px; }
  .album-cover { width: 180px; height: 180px; }
  .row-album { grid-template-columns: 2.2rem minmax(0, 1fr) 3.4rem; }
}

/* ------------------------------------------------------- katalogu si indeks */

.index { border-top: 1px solid var(--line); }

.row {
  position: relative;
  display: grid; align-items: baseline;
  grid-template-columns: 3.5rem minmax(0, 1.5fr) minmax(0, 1fr) minmax(0, 0.9fr) 4rem;
  gap: 20px; padding: 20px 8px;
  border-bottom: 1px solid var(--line);
  transition: color 0.18s var(--ease);
}
/* mbushja e ngrohtë hyn nga e majta — lëviz vetëm shkalla, jo gjerësia */
.row::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(90deg, var(--accent-soft), transparent 70%);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.3s var(--ease);
}
.row:hover::before { transform: scaleX(1); }

.row-nr {
  font-size: 0.75rem; font-weight: 700; color: var(--text-dim);
  letter-spacing: 0.08em; font-variant-numeric: tabular-nums;
}
.row-title {
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 2.1vw, 1.75rem); font-weight: 700;
  letter-spacing: -0.03em; line-height: 1.1; display: block;
  transition: transform 0.3s var(--ease);
}
.row:hover .row-title { transform: translateX(10px); color: var(--accent); }
.row-sub { display: block; font-size: 0.875rem; color: var(--text-dim); margin-top: 4px; }
.row-artist { font-size: 0.9375rem; color: var(--text-muted); }
.row-tags { font-size: 0.8125rem; color: var(--text-dim); }
.row-dur { font-size: 0.8125rem; color: var(--text-dim); text-align: right; font-variant-numeric: tabular-nums; }

/* kopertina që ndjek kursorin */
.peek {
  position: fixed; top: 0; left: 0; z-index: 40; pointer-events: none;
  width: 260px; aspect-ratio: 16 / 9; border-radius: var(--r-md); overflow: hidden;
  box-shadow: var(--shadow-lg);
  opacity: 0; transform: translate3d(-50%, -50%, 0) scale(0.94);
  transition: opacity 0.2s var(--ease), transform 0.2s var(--ease);
}
.peek.on { opacity: 1; transform: translate3d(-50%, -50%, 0) scale(1); }
.peek img { width: 100%; height: 100%; object-fit: cover; }

@media (max-width: 860px) {
  .row { grid-template-columns: 2.2rem minmax(0, 1fr) 3.4rem; gap: 12px; padding: 16px 4px; }
  .row-artist { grid-column: 2; font-size: 0.8125rem; }
  .row-tags { display: none; }
  .row:hover .row-title { transform: none; }
  .peek { display: none; }   /* pa kursor, s'ka çfarë të ndjekë */
}

/* ------------------------------------------------------------------ rrjeta e këngëve */

.grid {
  display: grid; gap: 28px 24px;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
}

.card { display: block; transition: transform 0.3s var(--ease); }
.card:hover { transform: translateY(-6px); }

.card-art {
  position: relative; aspect-ratio: 16 / 9; border-radius: var(--r-md);
  overflow: hidden; background: var(--surface-2);
  box-shadow: var(--shadow), var(--edge);
  transition: box-shadow 0.3s var(--ease);
}
.card-art img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.card:hover .card-art img { transform: scale(1.06); }

/* hija poshtë rri gjithmonë — jep thellësi edhe pa hover; unaza e theksit vjen me hover */
.card-art::after {
  content: ""; position: absolute; inset: 0; border-radius: inherit;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.5), transparent 48%);
  box-shadow: inset 0 0 0 1px transparent;
  transition: box-shadow 0.3s var(--ease);
}
.card:hover .card-art { box-shadow: var(--shadow-lg), var(--edge); }
.card:hover .card-art::after { box-shadow: inset 0 0 0 1px var(--accent-soft); }

.card-dur {
  position: absolute; right: 10px; bottom: 10px; z-index: 1;
  background: rgba(10, 8, 7, 0.72); backdrop-filter: blur(6px);
  color: #fff; font-size: 0.6875rem; font-weight: 700; letter-spacing: 0.02em;
  padding: 4px 8px; border-radius: 7px;
}

.card-body { padding-top: 15px; }
.card-title {
  font-family: var(--font-display);
  font-size: 1.0625rem; font-weight: 700; letter-spacing: -0.02em; line-height: 1.25;
  transition: color 0.2s var(--ease);
}
.card:hover .card-title { color: var(--accent); }
.card-sub { font-size: 0.875rem; color: var(--text-muted); margin-top: 3px; }
.card-meta { font-size: 0.8125rem; color: var(--text-dim); margin-top: 8px; display: flex; gap: 10px; flex-wrap: wrap; }
.card-meta span::after { content: "·"; margin-left: 10px; color: var(--line); }
.card-meta span:last-child::after { content: ""; }

/* ------------------------------------------------------------------ faqja e kanalit */

.channel-hero { padding: 72px 0 48px; position: relative; }
.channel-hero::before {
  content: ""; position: absolute; inset: 0 auto auto 0; width: 100%; height: 380px;
  background: radial-gradient(ellipse 60% 100% at 20% 0%, var(--accent-soft), transparent 70%);
  pointer-events: none;
}
.channel-hero .wrap { position: relative; }

/* kopertina e kanalit: e plotë sipër, e shuar poshtë që titulli të mbetet i lexueshëm */
.channel-hero-cover { padding-top: 240px; }
.channel-cover {
  position: absolute; inset: 0 0 auto 0; height: 420px;
  background-size: cover; background-position: center 30%;
  opacity: 0.5;
  -webkit-mask-image: linear-gradient(to bottom, #000 0%, rgba(0, 0, 0, 0.55) 52%, transparent 100%);
  mask-image: linear-gradient(to bottom, #000 0%, rgba(0, 0, 0, 0.55) 52%, transparent 100%);
}
.channel-logo {
  position: relative; width: 84px; height: 84px; border-radius: 20px;
  object-fit: cover; margin-bottom: 20px; box-shadow: var(--shadow-lg);
}

.filters {
  display: flex; flex-wrap: wrap; gap: 8px; align-items: center;
  padding: 20px 0 8px; position: sticky; top: 68px; z-index: 20;
  background: linear-gradient(to bottom, var(--bg) 72%, transparent);
}
.chip {
  padding: 9px 17px; border-radius: 999px; border: 0; cursor: pointer;
  background: var(--surface-2); color: var(--text-muted);
  font: inherit; font-size: 0.875rem; font-weight: 600;
  box-shadow: var(--edge);
  transition: background-color 0.2s var(--ease), color 0.2s var(--ease), transform 0.2s var(--ease);
}
.chip:hover { color: var(--text); transform: translateY(-1px); }
.chip[aria-pressed="true"] {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #14100c; box-shadow: 0 6px 18px var(--accent-soft);
}

.search-box {
  flex: 1 1 220px; min-width: 180px; max-width: 320px; margin-left: auto;
  background: var(--surface-2); border: 0; border-radius: 999px;
  padding: 11px 19px; color: var(--text); font: inherit; font-size: 0.9375rem;
  box-shadow: var(--edge);
  transition: box-shadow 0.2s var(--ease);
}
.search-box:focus { outline: none; box-shadow: var(--edge), 0 0 0 2px var(--accent-soft); }
.search-box::placeholder { color: var(--text-dim); }

.count { font-size: 0.875rem; color: var(--text-dim); margin: 24px 0 28px; }

/* ------------------------------------------------------------------ faqja e këngës */

.song-top { padding: 48px 0 0; }
.song-layout { display: grid; grid-template-columns: minmax(0, 1.65fr) minmax(280px, 1fr); gap: 56px; align-items: start; }

.player {
  position: relative; aspect-ratio: 16 / 9; border-radius: var(--r-md); overflow: hidden;
  background: #000; box-shadow: var(--shadow-lg);
}
.player iframe { width: 100%; height: 100%; border: 0; display: block; }

/* fotoja që zë vendin e luajtësit derisa të klikohet */
/* pika ku ulet kopertina që erdhi nga lista ose nga karta */
.player-open img { view-transition-name: song-art; }
.player-open { position: absolute; inset: 0; display: block; }
.player-open img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s var(--ease), opacity 0.3s var(--ease); }
.player-open:hover img { transform: scale(1.03); opacity: 0.85; }

.player-play {
  position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%);
  width: 74px; height: 52px; border-radius: 14px;
  background: rgba(12, 10, 9, 0.72); backdrop-filter: blur(6px);
  box-shadow: 0 8px 26px rgba(0, 0, 0, 0.5), inset 0 0 0 1px var(--hairline);
  transition: background-color 0.2s var(--ease), transform 0.2s var(--ease);
}
/* trekëndëshi i luajtjes, pa asnjë skedar figure */
.player-play::after {
  content: ""; position: absolute; left: 50%; top: 50%;
  transform: translate(-42%, -50%);
  border-style: solid; border-width: 10px 0 10px 17px;
  border-color: transparent transparent transparent #fff;
}
.player-open:hover .player-play {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  transform: translate(-50%, -50%) scale(1.06);
}
.player-open:hover .player-play::after { border-left-color: #12100c; }

.song-title { margin: 28px 0 6px; }
.song-sub { font-size: 1.125rem; color: var(--text-muted); }
.song-tags { display: flex; flex-wrap: wrap; gap: 8px; margin: 24px 0 0; }

.facts { display: grid; gap: 18px; padding: 28px; border-radius: var(--r-lg); background: var(--surface); box-shadow: var(--shadow); }
.fact-l { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-dim); }
.fact-v { font-weight: 600; margin-top: 2px; }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 13px 24px; border-radius: 999px; border: 0; cursor: pointer;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #14100c; font: inherit; font-weight: 700; font-size: 0.9375rem;
  box-shadow: 0 8px 24px var(--accent-soft);
  transition: filter 0.2s var(--ease), transform 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.btn:hover { filter: brightness(1.06); transform: translateY(-2px); box-shadow: 0 12px 30px var(--accent-soft); }
.btn-ghost {
  background: var(--surface-2); color: var(--text); box-shadow: var(--edge);
}
.btn-ghost:hover { background: var(--surface-3); box-shadow: var(--edge); }

.song-block { margin-top: 40px; }
.song-block h2 { font-size: 1.125rem; margin-bottom: 14px; }
/* Spotify e mban ngjyrën e vet — aty njihet me sy, jo me fjalë */
.btn-spotify {
  background: #1db954; color: #06210f;
  box-shadow: 0 8px 24px rgba(29, 185, 84, 0.22);
}
.btn-spotify:hover { box-shadow: 0 12px 30px rgba(29, 185, 84, 0.3); }

/* teksti i këngës si panel me rrëshqitje të vetën, jo si shtyllë e gjatë faqeje */
.lyrics-panel {
  margin-top: 20px; border-radius: var(--r-lg);
  background: var(--surface); box-shadow: var(--shadow), var(--edge); overflow: hidden;
}
.lyrics-head {
  display: flex; align-items: baseline; justify-content: space-between; gap: 12px;
  padding: 22px 24px 14px;
}
.lyrics-head h2 { font-size: 1.0625rem; }
.lyrics-head .dim { font-size: 0.75rem; }

.lyrics-body {
  max-height: 58vh; overflow-y: auto; overscroll-behavior: contain;
  padding: 0 24px 24px;
  /* shuarja poshtë tregon se ka ende tekst pa u dukur shiriti */
  -webkit-mask-image: linear-gradient(to bottom, #000 0 88%, transparent 100%);
  mask-image: linear-gradient(to bottom, #000 0 88%, transparent 100%);
}
.lyrics-body:hover, .lyrics-body:focus-within {
  -webkit-mask-image: none; mask-image: none;
}

.lyrics { white-space: pre-wrap; line-height: 1.75; max-width: 58ch; color: var(--text-muted); }

.video-list { display: grid; gap: 12px; }
.video-row {
  display: grid; grid-template-columns: 132px minmax(0, 1fr); gap: 16px; align-items: center;
  padding: 10px; border-radius: var(--r-md); transition: background-color 0.15s ease;
}
.video-row:hover { background: var(--surface); }
.video-row img { border-radius: var(--r-sm); aspect-ratio: 16 / 9; object-fit: cover; }
.video-row h3 { font-size: 0.9375rem; }

/* ----------------------------------------------------------------- faqja e artistit */

.artist-hero { position: relative; padding: 72px 0 64px; overflow: hidden; }
.artist-hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center 22%;
  opacity: 0.16; filter: saturate(0.8);
}
.artist-hero::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(15, 13, 12, 0.55), var(--bg));
}
.artist-hero-inner {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 300px minmax(0, 1fr); gap: 48px; align-items: center;
}
.artist-hero-plain .artist-hero-inner { grid-template-columns: minmax(0, 1fr); }

.artist-photo {
  width: 300px; height: 300px; object-fit: cover; object-position: center 20%;
  border-radius: var(--r-lg); box-shadow: var(--shadow-lg);
}
.artist-photo-wide { width: 100%; height: 220px; }
.artist-name { margin-bottom: 12px; }

/* karta e bandës: foto e gjerë + emri, si njësi më vete mbi përbërjen */
.band-card {
  display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  border-radius: var(--r-lg); overflow: hidden; background: var(--surface);
  box-shadow: var(--shadow); transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.band-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.band-card-art { width: 100%; height: 100%; min-height: 260px; object-fit: cover; }
.band-card-body { padding: 36px; display: flex; flex-direction: column; justify-content: center; gap: 4px; }
.band-card-logo { width: 64px; height: 64px; border-radius: 14px; object-fit: cover; margin-bottom: 14px; }
.band-card-name { font-size: 1.75rem; font-weight: 800; letter-spacing: -0.02em; }
.band-card-body p { margin: 6px 0 20px; }

/* --------------------------------------------------------------------- radioja */

.radio-layout { display: grid; grid-template-columns: minmax(0, 1.6fr) minmax(280px, 1fr); gap: 40px; align-items: start; }

.radio-stage {
  position: relative; aspect-ratio: 16 / 9; border-radius: var(--r-md);
  overflow: hidden; background: #000; box-shadow: var(--shadow-lg);
}
.radio-stage iframe, .radio-stage > div { width: 100%; height: 100%; border: 0; }

.radio-idle {
  position: absolute; inset: 0; display: grid; place-content: center; justify-items: center; gap: 18px;
  background: linear-gradient(150deg, var(--surface-2), var(--surface));
  text-align: center; padding: 24px;
}
.radio-idle p { margin: 0; color: var(--text-muted); max-width: 34ch; }
.radio-idle .player-play { position: static; transform: none; }

.radio-now { margin-top: 24px; }
.radio-title { font-size: clamp(1.4rem, 3vw, 2rem); margin: 8px 0 6px; }
.radio-now a { color: var(--accent); }

.radio-controls { display: flex; flex-wrap: wrap; gap: 10px; align-items: center; margin-top: 22px; }

.radio-queue {
  background: var(--surface); border-radius: var(--r-lg);
  box-shadow: var(--shadow), var(--edge); overflow: hidden;
}
.radio-queue-head {
  display: flex; align-items: baseline; justify-content: space-between; gap: 12px;
  padding: 22px 22px 14px;
}
.radio-queue-head h2 { font-size: 1.125rem; }

/* overscroll-behavior: rrëshqitja e radhës nuk duhet ta tërheqë faqen pas saj */
.queue {
  list-style: none; margin: 0; padding: 0 10px 12px;
  max-height: 62vh; overflow-y: auto; overscroll-behavior: contain;
}
.queue-btn {
  width: 100%; display: grid; grid-template-columns: 96px minmax(0, 1fr); gap: 14px;
  align-items: center; padding: 8px; border: 0; border-radius: var(--r-sm);
  background: transparent; color: inherit; font: inherit; text-align: left; cursor: pointer;
  transition: background-color 0.15s var(--ease);
}
.queue-btn:hover { background: var(--surface-2); }
.queue-btn img { border-radius: 6px; aspect-ratio: 16 / 9; object-fit: cover; }
.queue-text { min-width: 0; }
.queue-title {
  display: block; font-weight: 600; font-size: 0.9375rem;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.queue-meta { display: block; font-size: 0.75rem; color: var(--text-dim); margin-top: 2px; }

/* kënga që po luan tani */
.queue-item.is-playing .queue-btn { background: var(--accent-soft); }
.queue-item.is-playing .queue-title { color: var(--accent); }

@media (max-width: 860px) {
  .radio-layout { grid-template-columns: minmax(0, 1fr); gap: 28px; }
  .queue { max-height: 50vh; }
}

/* ------------------------------------------------------------------ projektet */

.projects { display: grid; gap: 26px; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); }

.project-card {
  display: flex; flex-direction: column; overflow: hidden;
  border-radius: var(--r-lg); background: var(--surface);
  box-shadow: var(--shadow), var(--edge);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.project-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg), var(--edge); }

.project-art { position: relative; aspect-ratio: 16 / 10; overflow: hidden; background: var(--surface-2); }
.project-art img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.project-card:hover .project-art img { transform: scale(1.05); }
/* errësim poshtë që etiketa dhe kalimi te teksti të mos jenë të thepisura */
.project-art::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to top, var(--surface) 1%, rgba(0, 0, 0, 0.35) 40%, transparent 70%);
}
.project-kind {
  position: absolute; left: 18px; top: 18px; z-index: 1;
  padding: 6px 14px; border-radius: 999px;
  background: rgba(10, 8, 7, 0.7); backdrop-filter: blur(8px);
  color: var(--accent); font-size: 0.6875rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.14em;
}

.project-body { padding: 24px 26px 26px; display: flex; flex-direction: column; flex: 1; }
.project-name { font-size: 1.5rem; margin-bottom: 10px; }
.project-mission { margin: 0 0 20px; color: var(--text-muted); line-height: 1.6; }

/* sa larg ka shkuar seria — një shirit thotë më shumë se dy numra */
.project-progress { height: 3px; border-radius: 3px; background: var(--surface-3); overflow: hidden; margin-bottom: 16px; }
.project-progress span { display: block; height: 100%; background: linear-gradient(to right, var(--accent), var(--accent-2)); }

.project-meta {
  margin-top: auto; display: flex; flex-wrap: wrap; align-items: center; gap: 16px;
  font-size: 0.8125rem; color: var(--text-dim);
}
.project-cta { margin-left: auto; color: var(--accent); font-weight: 700; }

@media (max-width: 560px) {
  .head-aside { display: none; }
  .project-body { padding: 20px 20px 22px; }
}

.mission {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.6vw, 1.9rem); font-weight: 700;
  letter-spacing: -0.025em; line-height: 1.3; max-width: 30ch; margin: 0;
  border-left: 3px solid var(--accent); padding-left: 22px;
}

/* misioni brenda hero-s: pa vijë anësore, se mbi video shtohet zhurmë vizuale */
.hero-mission {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.2vw, 1.65rem); font-weight: 600;
  letter-spacing: -0.02em; line-height: 1.35; max-width: 36ch;
  margin: 20px 0 0; color: var(--text);
  text-shadow: 0 1px 24px rgba(0, 0, 0, 0.6);
}

.episodes { list-style: none; margin: 0; padding: 0; display: grid; gap: 14px; counter-reset: ep; }

.episode {
  position: relative; padding: 26px 28px; border-radius: var(--r-lg);
  background: var(--surface); box-shadow: var(--shadow), var(--edge);
}
/* episodet e ardhshme rrinë më të qeta se ai i publikuari */
.episode-plan { background: transparent; box-shadow: inset 0 0 0 1px var(--line); }
.episode-wip { background: linear-gradient(150deg, var(--surface-2), var(--surface)); }
.episode-ok::before {
  content: ""; position: absolute; inset: 0 auto 0 0; width: 3px;
  border-radius: var(--r-lg) 0 0 var(--r-lg);
  background: linear-gradient(to bottom, var(--accent), var(--accent-2));
}

/* personazhet: portrete të gjera me tekst poshtë, si fletë e ilustruar */
.chars { display: grid; gap: 22px; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); }
.char { margin: 0; border-radius: var(--r-lg); overflow: hidden; background: var(--surface); box-shadow: var(--shadow), var(--edge); }
.char img { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; }
.char figcaption { padding: 20px 22px 24px; }
.char-name { font-size: 1.25rem; margin-bottom: 4px; }
.char-role {
  margin: 0 0 10px; font-size: 0.6875rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.14em; color: var(--accent);
}
.char-note { margin: 0; font-size: 0.9375rem; line-height: 1.6; color: var(--text-muted); }

.episode-head { display: flex; align-items: flex-start; gap: 18px; }
.episode-img {
  width: 150px; flex: none; aspect-ratio: 16 / 10; object-fit: cover;
  border-radius: var(--r-sm); box-shadow: var(--shadow);
}
.episode-kicker {
  margin: 0 0 4px; font-size: 0.6875rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.14em; color: var(--text-dim);
}
/* dallimi mes fotografisë historike dhe portretizimit — nuk duhet lënë në hamendje */
.img-note {
  margin: 8px 0 0; font-size: 0.75rem; color: var(--text-dim);
  display: inline-flex; align-items: center; gap: 7px;
}
.img-note::before {
  content: ""; width: 5px; height: 5px; border-radius: 50%;
  background: var(--text-dim); flex: none;
}
.episode-nr {
  font-family: var(--font-display); font-size: 1.5rem; font-weight: 800;
  color: var(--text-dim); letter-spacing: -0.04em; line-height: 1; padding-top: 2px;
}
.episode-ok .episode-nr { color: var(--accent); }
.episode-title { font-size: 1.25rem; margin-bottom: 8px; }

.episode-status {
  display: inline-block; padding: 4px 12px; border-radius: 999px;
  font-size: 0.6875rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em;
}
.episode-status-ok { background: var(--accent-soft); color: var(--accent); }
.episode-status-wip { background: rgba(255, 176, 58, 0.14); color: #ffb03a; }
.episode-status-plan { background: var(--surface-2); color: var(--text-dim); }

.episode-text { margin-top: 20px; max-width: 70ch; }
.episode-text p { font-size: 0.9375rem; margin-bottom: 14px; }
.episode-text p:first-child { font-size: 1rem; color: var(--text); }

.episode-points-title {
  margin: 22px 0 10px; font-size: 0.6875rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.14em; color: var(--text-dim);
}
.episode-points {
  margin: 0; padding: 0 0 0 20px; columns: 2; column-gap: 32px;
  color: var(--text-muted); font-size: 0.9375rem;
}
.episode-points li { margin-bottom: 6px; break-inside: avoid; }

/* burimet: dëshmi që teksti nuk është shpikur */
.refs { margin-top: 40px; padding: 28px 30px; border-radius: var(--r-lg); background: var(--surface); box-shadow: var(--edge); }
.refs-title { font-size: 1.0625rem; margin-bottom: 18px; }
.refs ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 18px; }
.refs a { display: flex; flex-wrap: wrap; align-items: baseline; gap: 10px; }
.refs a strong { font-weight: 600; }
.refs a:hover strong { color: var(--accent); }
.refs-src { font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-dim); }
.refs p { margin: 4px 0 0; font-size: 0.875rem; color: var(--text-muted); }

.episode-parts { display: grid; gap: 20px; margin-top: 26px; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }

/* dokumentari dhe kënga: secili me luajtësin e vet, njëri pranë tjetrit */
.part-full {
  padding: 18px; border-radius: var(--r-md);
  background: var(--surface-2); box-shadow: var(--edge);
}
.part-full .player { margin-top: 12px; box-shadow: var(--shadow); }
.part-text { margin-top: 14px; }
.part-text p { font-size: 0.9375rem; line-height: 1.65; margin: 0; }

.part {
  padding: 14px 18px; border-radius: var(--r-md);
  background: var(--surface-2); box-shadow: var(--edge);
  transition: background-color 0.2s var(--ease), transform 0.2s var(--ease);
}
.part:hover { background: var(--surface-3); transform: translateY(-2px); }
.part-k {
  display: block; font-size: 0.6875rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.14em; color: var(--text-dim);
}
.part-v { display: block; margin-top: 5px; font-weight: 600; color: var(--text); }
.part-song .part-v { color: var(--accent); }

.bridge {
  margin: 32px 0 0; padding: 26px 30px; border-radius: var(--r-lg);
  background: linear-gradient(150deg, var(--surface-2), transparent);
  box-shadow: inset 0 0 0 1px var(--line);
  font-size: 1.0625rem; line-height: 1.75; color: var(--text-muted);
  max-width: 68ch;
}

/* rrjetet sociale */
.social-row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px; }
.social {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 9px 16px; border-radius: 999px;
  background: var(--surface-2); color: var(--text-muted);
  font-size: 0.875rem; font-weight: 600;
  transition: background-color 0.15s ease, color 0.15s ease, transform 0.15s ease;
}
.social:hover { background: var(--accent); color: #12100e; transform: translateY(-1px); }
.social svg { flex: none; }

.foot-social { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 16px; }

/* galeria pas kuintave */
.galeri { display: grid; gap: 16px; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); }
.galeri-item {
  position: relative; display: block; border-radius: var(--r-md); overflow: hidden;
  box-shadow: var(--shadow); background: var(--surface-2);
}
.galeri-item img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; transition: transform 0.4s ease; }
.galeri-item:hover img { transform: scale(1.05); }
.galeri-cap {
  position: absolute; inset: auto 0 0 0; padding: 22px 14px 12px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.82), transparent);
  font-size: 0.8125rem; font-weight: 500; color: #fff;
}

/* biografia: gjerësi leximi ~65 shenja, paragrafi i parë pak më i madh */
.section-tight { padding-bottom: 24px; }
.story { max-width: 66ch; }
.story p { color: var(--text-muted); margin: 0 0 20px; line-height: 1.7; }
.story p:first-child { font-size: 1.125rem; color: var(--text); }
.story p:last-child { margin-bottom: 0; }

.members {
  display: grid; gap: 28px 20px;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
}
.members-lg { grid-template-columns: repeat(auto-fill, minmax(190px, 1fr)); }

/* solistët: portret vertikal, jo rreth — ndahen qartë nga anëtarët e bandës */
.solo-grid { display: grid; gap: 24px; grid-template-columns: repeat(auto-fill, minmax(230px, 1fr)); }
.solo { display: block; transition: transform 0.18s ease; }
.solo:hover { transform: translateY(-4px); }
.solo-art {
  aspect-ratio: 4 / 5; border-radius: var(--r-md); overflow: hidden;
  background: var(--surface-2); box-shadow: var(--shadow);
  display: grid; place-items: center;
}
.solo-art img { width: 100%; height: 100%; object-fit: cover; object-position: center 18%; transition: transform 0.4s ease; }
.solo:hover .solo-art img { transform: scale(1.04); }
.solo-body { padding-top: 14px; }
.solo-name { font-size: 1.125rem; font-weight: 700; letter-spacing: -0.01em; }
.solo-role { font-size: 0.875rem; color: var(--accent); margin: 2px 0 6px; }

.member { display: block; text-align: center; transition: transform 0.18s ease; }
.member:hover { transform: translateY(-4px); }
.member-art {
  aspect-ratio: 1; border-radius: 50%; overflow: hidden; margin-bottom: 14px;
  background: var(--surface-2); box-shadow: var(--shadow);
  display: grid; place-items: center;
}
.member-art img { width: 100%; height: 100%; object-fit: cover; object-position: center 18%; }
.member-initial { font-size: 2.5rem; font-weight: 800; color: var(--text-dim); }
.member-name { font-weight: 600; letter-spacing: -0.01em; }
.member-role { font-size: 0.8125rem; color: var(--text-dim); margin-top: 2px; }

/* --------------------------------------------------------------------- boshllëku */

.empty {
  text-align: center; padding: 88px 24px;
  background: var(--surface); border-radius: var(--r-lg); box-shadow: var(--shadow);
}
.empty-icon {
  width: 52px; height: 52px; margin: 0 auto 20px; border-radius: 50%;
  background: var(--surface-2); display: grid; place-items: center; font-size: 1.5rem;
}
.empty h3 { font-size: 1.125rem; margin-bottom: 8px; }
.empty p { color: var(--text-muted); margin: 0 auto 24px; max-width: 42ch; }

/* ----------------------------------------------------------------------- fundi */

.site-foot { margin-top: 96px; padding: 56px 0 32px; box-shadow: inset 0 1px 0 var(--line); }
.foot-inner { display: flex; flex-wrap: wrap; gap: 40px; justify-content: space-between; }
.foot-brand { display: flex; gap: 14px; align-items: flex-start; }
.foot-brand p { margin: 4px 0 0; font-size: 0.9375rem; }
.foot-links { display: flex; flex-direction: column; gap: 10px; }
.foot-links a { color: var(--text-muted); font-size: 0.9375rem; }
.foot-links a:hover { color: var(--accent); }
.foot-legal { display: flex; flex-wrap: wrap; gap: 16px; justify-content: space-between; margin-top: 40px; font-size: 0.8125rem; }

/* ------------------------------------------------------------------- ekrane vogla */

@media (max-width: 860px) {
  .song-layout { grid-template-columns: 1fr; gap: 36px; }
  .hero { padding: 150px 0 48px; }
  .hero-cover { height: 320px; }
  .artist-hero-inner { grid-template-columns: minmax(0, 1fr); gap: 28px; justify-items: start; }
  .artist-photo { width: 190px; height: 190px; }
  .episode { padding: 22px 20px; }
  .episode-points { columns: 1; }
  .episode-head { gap: 14px; }
  .mission { padding-left: 18px; }
  .channel-hero-cover { padding-top: 150px; }
  .channel-cover { height: 260px; }
  .channel-logo { width: 64px; height: 64px; border-radius: 16px; }
  .band-card { grid-template-columns: minmax(0, 1fr); }
  .band-card-art { min-height: 200px; max-height: 260px; }
  .band-card-body { padding: 28px 26px 32px; }
  .section { padding: 56px 0; }
  .world { padding: 32px 26px; }
  .stats { gap: 28px; }
}

@media (max-width: 560px) {
  .wrap { padding: 0 18px; }
  .nav a { padding: 8px 10px; font-size: 0.875rem; }
  .brand-text { display: none; }
  .grid { grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: 22px 16px; }
  .video-row { grid-template-columns: 104px minmax(0, 1fr); }
  .filters { top: 60px; }
}

/* ------------------------------------------------------------------ shfaqja */

/* Klasa vihet nga JavaScript-i: pa të, përmbajtja rri e dukshme si gjithmonë. */
.reveal {
  opacity: 0; transform: translateY(20px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  .reveal { opacity: 1; transform: none; }

  /* rripi ndalet fare: një unazë e pafundme e shpejtuar do të ishte më keq se lëvizja */
  .ticker-track { animation: none !important; transform: none !important; }
  ::view-transition-old(root), ::view-transition-new(root) { animation: none !important; }
}
