/* ============================================================
   DASSANO.IT — Rock Modern Theme
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Oswald:wght@400;500;600;700&family=Open+Sans:ital,wght@0,300;0,400;0,600;1,400&display=swap');

/* ===== VARIABLES ===== */
:root {
  --bg-primary:    #090909;
  --bg-secondary:  #111111;
  --bg-card:       #161616;
  --bg-card-hover: #1e1e1e;
  --accent:        #c0392b;
  --accent-bright: #e74c3c;
  --accent-dim:    rgba(192, 57, 43, 0.12);
  --gold:          #c9952a;
  --gold-dim:      rgba(201, 149, 42, 0.12);
  --text-primary:  #f0f0f0;
  --text-secondary:#aaaaaa;
  --text-muted:    #555555;
  --border:        #1f1f1f;
  --border-accent: rgba(192, 57, 43, 0.35);
  --font-display:  'Bebas Neue', 'Arial Black', sans-serif;
  --font-heading:  'Oswald', 'Arial Narrow', sans-serif;
  --font-body:     'Open Sans', Arial, sans-serif;
  --nav-height:    68px;
  --max-width:     1180px;
  --radius:        3px;
  --ease:          cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background-color: var(--bg-primary);
  color: var(--text-primary);
  font-family: var(--font-body);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ===== NOISE OVERLAY ===== */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.035'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 200px 200px;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.6;
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-height);
  background: rgba(9, 9, 9, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(1.5rem, 4vw, 3rem);
  transition: border-color 0.3s var(--ease);
}
.navbar.scrolled {
  border-bottom-color: var(--border-accent);
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 2rem;
  letter-spacing: 0.06em;
  color: var(--text-primary);
  transition: color 0.2s var(--ease);
}
.nav-logo span { color: var(--accent); }
.nav-logo:hover { color: var(--accent); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.nav-links a {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-secondary);
  padding: 0.5rem 0.85rem;
  border-radius: var(--radius);
  transition: color 0.2s var(--ease), background 0.2s var(--ease);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 4px; left: 50%; right: 50%;
  height: 2px;
  background: var(--accent);
  transition: left 0.25s var(--ease), right 0.25s var(--ease);
}
.nav-links a:hover { color: var(--text-primary); }
.nav-links a:hover::after,
.nav-links a.active::after { left: 0.85rem; right: 0.85rem; }
.nav-links a.active { color: var(--text-primary); }

/* Hamburger */
.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.nav-burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  transition: transform 0.3s var(--ease), opacity 0.3s;
}
.nav-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.nav-mobile {
  display: none;
  position: fixed;
  top: var(--nav-height);
  left: 0; right: 0;
  background: rgba(9, 9, 9, 0.97);
  backdrop-filter: blur(12px);
  padding: 1.5rem;
  border-bottom: 1px solid var(--border-accent);
  z-index: 999;
  flex-direction: column;
  gap: 0.25rem;
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-secondary);
  padding: 0.75rem 1rem;
  border-left: 2px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}
.nav-mobile a:hover,
.nav-mobile a.active {
  color: var(--text-primary);
  border-left-color: var(--accent);
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: calc(var(--nav-height) + 2rem) 1.5rem 4rem;
  position: relative;
  overflow: hidden;
}

/* Diagonal stripe background */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -55deg,
    transparent,
    transparent 60px,
    rgba(192, 57, 43, 0.025) 60px,
    rgba(192, 57, 43, 0.025) 61px
  );
  pointer-events: none;
}

.hero-eyebrow {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeUp 0.7s 0.2s var(--ease) forwards;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(5rem, 18vw, 14rem);
  line-height: 0.9;
  letter-spacing: 0.03em;
  color: var(--text-primary);
  margin-bottom: 0.3em;
  opacity: 0;
  animation: fadeUp 0.7s 0.4s var(--ease) forwards;
}
.hero-title .accent { color: var(--accent); }

.hero-subtitle {
  font-family: var(--font-heading);
  font-size: clamp(1rem, 2.5vw, 1.4rem);
  font-weight: 400;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin-bottom: 2.5rem;
  opacity: 0;
  animation: fadeUp 0.7s 0.6s var(--ease) forwards;
}
.hero-subtitle .sep { color: var(--accent); margin: 0 0.6em; }

.hero-divider {
  width: 80px;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), transparent);
  margin: 0 auto 3rem;
  opacity: 0;
  animation: fadeUp 0.7s 0.8s var(--ease) forwards;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-primary);
  border: 1px solid var(--border-accent);
  padding: 0.85rem 2rem;
  border-radius: var(--radius);
  transition: background 0.25s var(--ease), border-color 0.25s, transform 0.2s;
  opacity: 0;
  animation: fadeUp 0.7s 1s var(--ease) forwards;
}
.hero-cta:hover {
  background: var(--accent-dim);
  border-color: var(--accent);
  transform: translateY(-2px);
}
.hero-cta svg { transition: transform 0.25s var(--ease); }
.hero-cta:hover svg { transform: translateY(3px); }

/* Scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  opacity: 0;
  animation: fadeIn 1s 1.5s var(--ease) forwards;
}
.hero-scroll span {
  font-family: var(--font-heading);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.hero-scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--accent), transparent);
  animation: scrollPulse 2s infinite;
}

/* ===== PAGE HERO (subpages) ===== */
.page-hero {
  min-height: 38vh;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  padding: calc(var(--nav-height) + 3rem) clamp(1.5rem, 5vw, 4rem) 3rem;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -55deg,
    transparent,
    transparent 60px,
    rgba(192, 57, 43, 0.02) 60px,
    rgba(192, 57, 43, 0.02) 61px
  );
}
.page-hero-eyebrow {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.75rem;
}
.page-hero-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 6.5rem);
  line-height: 0.95;
  letter-spacing: 0.03em;
  color: var(--text-primary);
  position: relative;
}
.page-hero-desc {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin-top: 1.25rem;
  line-height: 1.7;
}

/* ===== SECTIONS ===== */
.section {
  padding: clamp(3rem, 7vw, 6rem) clamp(1.5rem, 5vw, 4rem);
  max-width: var(--max-width);
  margin: 0 auto;
}
.section-full {
  padding: clamp(3rem, 7vw, 6rem) clamp(1.5rem, 5vw, 4rem);
}

.section-label {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.75rem;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  letter-spacing: 0.04em;
  color: var(--text-primary);
  margin-bottom: 1rem;
}
.section-title .accent { color: var(--accent); }
.section-intro {
  font-size: 1rem;
  color: var(--text-secondary);
  max-width: 680px;
  line-height: 1.75;
  margin-bottom: 3rem;
}

/* ===== HOME SECTION CARDS ===== */
.home-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5px;
  margin-top: 4rem;
  border: 1.5px solid var(--border);
}
@media (max-width: 700px) {
  .home-grid { grid-template-columns: 1fr; }
}

.home-card {
  position: relative;
  background: var(--bg-card);
  padding: 3rem 2.5rem;
  overflow: hidden;
  cursor: pointer;
  transition: background 0.3s var(--ease);
  border: 1.5px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  min-height: 280px;
}
.home-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 3px;
  height: 0;
  background: var(--accent);
  transition: height 0.4s var(--ease);
}
.home-card:hover { background: var(--bg-card-hover); }
.home-card:hover::before { height: 100%; }

.home-card-number {
  font-family: var(--font-display);
  font-size: 5rem;
  line-height: 1;
  color: var(--bg-secondary);
  position: absolute;
  bottom: 1rem;
  right: 1.5rem;
  letter-spacing: -0.02em;
  transition: color 0.3s var(--ease);
  user-select: none;
}
.home-card:hover .home-card-number { color: var(--accent-dim); }

.home-card-badge {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid var(--border-accent);
  padding: 0.25rem 0.65rem;
  border-radius: 2px;
  width: fit-content;
}
.home-card-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  letter-spacing: 0.04em;
  color: var(--text-primary);
  line-height: 1.1;
}
.home-card-desc {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 380px;
}
.home-card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-top: auto;
  transition: gap 0.2s var(--ease);
}
.home-card:hover .home-card-link { gap: 0.75rem; }

/* ===== BAND CARDS ===== */
.band-section {
  border-top: 1px solid var(--border);
  padding: clamp(2.5rem, 5vw, 4rem) 0;
}
.band-section:first-child { border-top: none; }

.band-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
}
.band-name {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  letter-spacing: 0.04em;
  color: var(--text-primary);
  line-height: 1;
}
.band-genre {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(201, 149, 42, 0.4);
  padding: 0.3rem 0.8rem;
  border-radius: 2px;
  height: fit-content;
  margin-top: 0.6rem;
}
.band-desc {
  font-size: 0.95rem;
  color: var(--text-secondary);
  max-width: 700px;
  line-height: 1.75;
  margin-bottom: 2rem;
}

/* Members grid */
.members-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 2rem;
}
.member-card {
  background: var(--bg-card);
  padding: 1.5rem;
  transition: background 0.2s var(--ease);
}
.member-card:hover { background: var(--bg-card-hover); }
.member-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--bg-secondary);
  border: 2px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--text-muted);
  overflow: hidden;
}
.member-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.member-name {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--text-primary);
  margin-bottom: 0.25rem;
}
.member-role {
  font-family: var(--font-heading);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.5rem;
}
.member-desc {
  font-size: 0.82rem;
  color: var(--text-secondary);
  line-height: 1.6;
  font-style: italic;
}

/* Repertoire */
.repertoire-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-secondary);
  border: 1px solid var(--border);
  padding: 0.65rem 1.2rem;
  border-radius: var(--radius);
  cursor: pointer;
  background: none;
  transition: color 0.2s, border-color 0.2s, background 0.2s;
}
.repertoire-toggle:hover {
  color: var(--text-primary);
  border-color: var(--border-accent);
  background: var(--accent-dim);
}
.repertoire-toggle svg { transition: transform 0.3s var(--ease); }
.repertoire-toggle.open svg { transform: rotate(180deg); }

.repertoire-list {
  display: none;
  margin-top: 1.25rem;
  padding: 1.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.repertoire-list.open { display: block; }
.repertoire-list ol {
  list-style: decimal;
  padding-left: 1.5rem;
  columns: 2;
  column-gap: 2rem;
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.9;
}
@media (max-width: 600px) {
  .repertoire-list ol { columns: 1; }
}
.repertoire-list ol li { break-inside: avoid; }
.repertoire-list ol li strong {
  color: var(--text-primary);
  font-weight: 600;
}

/* External link button */
.btn-external {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-primary);
  background: var(--accent);
  padding: 0.65rem 1.4rem;
  border-radius: var(--radius);
  transition: background 0.2s var(--ease), transform 0.2s;
}
.btn-external:hover {
  background: var(--accent-bright);
  transform: translateY(-1px);
}

/* ===== VIDEO GRID ===== */
.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.5rem;
}
.video-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.2s, transform 0.2s var(--ease);
}
.video-card:hover {
  border-color: var(--border-accent);
  transform: translateY(-3px);
}
.video-embed {
  position: relative;
  padding-bottom: 56.25%;
  background: var(--bg-secondary);
}
.video-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}
.video-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  background: var(--bg-secondary);
  color: var(--text-muted);
}
.video-placeholder svg { opacity: 0.3; }
.video-placeholder span {
  font-family: var(--font-heading);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.video-info {
  padding: 1.25rem;
}
.video-info h3 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.35rem;
}
.video-info p {
  font-size: 0.82rem;
  color: var(--text-secondary);
}

/* Placeholder full section */
.placeholder-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 5rem 2rem;
  border: 1px dashed var(--border);
  border-radius: var(--radius);
  gap: 1.25rem;
  background: var(--bg-card);
}
.placeholder-section svg { color: var(--accent); opacity: 0.4; }
.placeholder-section h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--text-secondary);
}
.placeholder-section p {
  font-size: 0.88rem;
  color: var(--text-muted);
  max-width: 400px;
}

/* ===== FOOTER ===== */
.footer {
  border-top: 1px solid var(--border);
  padding: 2.5rem clamp(1.5rem, 5vw, 4rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-logo {
  font-family: var(--font-display);
  font-size: 1.4rem;
  letter-spacing: 0.06em;
  color: var(--text-muted);
}
.footer-logo span { color: var(--accent); }
.footer-text {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-align: right;
  line-height: 1.6;
}
@media (max-width: 500px) {
  .footer { flex-direction: column; align-items: flex-start; }
  .footer-text { text-align: left; }
}

/* ===== HORIZONTAL RULE ===== */
.hr-accent {
  border: none;
  height: 1px;
  background: linear-gradient(90deg, var(--accent), transparent 60%);
  margin: 0;
}

/* ===== BREADCRUMB ===== */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: 1rem clamp(1.5rem, 5vw, 4rem);
  max-width: var(--max-width);
  margin: 0 auto;
}
.breadcrumb a { color: var(--text-muted); transition: color 0.2s; }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb .sep { color: var(--text-muted); font-size: 0.6rem; }
.breadcrumb .current { color: var(--text-secondary); }

/* ===== ANIMATIONS ===== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50%       { opacity: 1;   transform: scaleY(1.15); }
}

/* ===== YOUTUBE FACADE (lazy load) ===== */
.yt-facade {
  position: relative;
  padding-bottom: 56.25%;
  background: #000;
  cursor: pointer;
  overflow: hidden;
}
.yt-facade img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.85;
  transition: opacity 0.2s;
}
.yt-facade:hover img { opacity: 1; }
.yt-play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}
.yt-play-btn {
  width: 64px;
  height: 64px;
  background: rgba(192,57,43,0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s, background 0.2s;
}
.yt-facade:hover .yt-play-btn {
  background: var(--accent-bright);
  transform: scale(1.1);
}
.yt-facade iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* ===== BAND PHOTO ===== */
.band-photo {
  width: 100%;
  max-height: 340px;
  object-fit: cover;
  object-position: center top;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  margin-bottom: 2rem;
  filter: grayscale(20%) contrast(1.05);
  transition: filter 0.3s var(--ease);
}
.band-photo:hover { filter: grayscale(0%) contrast(1.1); }

/* ===== AUDIO PLAYER ===== */
.tracklist-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin: 2rem 0 0.75rem;
}
.tracklist-label {
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
}
.tracklist-divider {
  flex: 1;
  height: 1px;
  background: var(--border);
}

.tracklist {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 1rem;
}
.track-item {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.75rem 1rem;
  border-bottom: 1px solid var(--border);
  cursor: pointer;
  transition: background 0.15s var(--ease);
  user-select: none;
}
.track-item:last-child { border-bottom: none; }
.track-item:hover { background: var(--bg-card-hover); }
.track-item.playing { background: var(--accent-dim); }
.track-item.playing .track-num { color: var(--accent); }

.track-btn {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--bg-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s, border-color 0.15s;
}
.track-item:hover .track-btn,
.track-item.playing .track-btn {
  background: var(--accent);
  border-color: var(--accent);
}
.track-btn svg { pointer-events: none; }

.track-num {
  font-family: var(--font-heading);
  font-size: 0.72rem;
  color: var(--text-muted);
  min-width: 1.5rem;
  text-align: right;
}
.track-info { flex: 1; min-width: 0; }
.track-title {
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-primary);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.track-item.playing .track-title { color: var(--accent-bright); }
.track-artist {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 1px;
}
.track-duration {
  font-family: var(--font-heading);
  font-size: 0.72rem;
  color: var(--text-muted);
  flex-shrink: 0;
}

/* Mini progress bar inside playing row */
.track-progress {
  display: none;
  height: 2px;
  background: var(--border);
  border-radius: 1px;
  margin-top: 4px;
  overflow: hidden;
}
.track-item.playing .track-progress { display: block; }
.track-progress-fill {
  height: 100%;
  background: var(--accent);
  width: 0%;
  transition: width 0.5s linear;
}

/* ===== HOME CARD IMAGE ===== */
.home-card-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.12;
  filter: grayscale(100%);
  transition: opacity 0.3s var(--ease);
  z-index: 0;
}
.home-card:hover .home-card-img { opacity: 0.18; }
.home-card > *:not(.home-card-img):not(.home-card-number) { position: relative; z-index: 1; }

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-burger { display: flex; }
  .band-header { flex-direction: column; }
  .band-genre { margin-top: 0; }
  .track-artist { display: none; }
}
