/* =============================================
   LOCAL FONTS
   ============================================= */

@font-face {
  font-family: 'Bebas Neue';
  src: url('fonts/bebas-neue.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Share Tech Mono';
  src: url('fonts/share-tech-mono.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Barlow Condensed';
  src: url('fonts/barlow-condensed-400.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Barlow Condensed';
  src: url('fonts/barlow-condensed-700.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Barlow';
  src: url('fonts/barlow-400.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Barlow';
  src: url('fonts/barlow-400-italic.woff2') format('woff2');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Barlow';
  src: url('fonts/barlow-600.woff2') format('woff2');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

/* =============================================
   FAKE — Band Website
   Industrial Brutalist Design
   ============================================= */

:root {
  --black: #0a0a0a;
  --dark: #111111;
  --dark-mid: #1a1a1a;
  --mid: #252525;
  --border: #333333;
  --muted: #888888;
  --light: #aaaaaa;
  --white: #f0eeeb;
  --red: #cc1a1a;
  --red-hot: #ff2222;
  --red-dim: #8b1111;
  --font-display: 'Bebas Neue', sans-serif;
  --font-body: 'Barlow Condensed', sans-serif;
  --font-body-reg: 'Barlow', sans-serif;
  --font-mono: 'Share Tech Mono', monospace;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.5;
  overflow-x: hidden;
}

/* Noise texture overlay */
.noise-overlay {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-size: 200px 200px;
}

/* Utility */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

.mono {
  font-family: var(--font-mono);
  font-size: 0.75em;
  letter-spacing: 0.05em;
}

/* =============================================
   NAVIGATION
   ============================================= */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 32px;
  height: 64px;
  background: rgba(10, 10, 10, 0.92);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(8px);
}

.nav-logo a {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--white);
  text-decoration: none;
  letter-spacing: 0.15em;
  transition: color 0.2s;
}

.nav-logo a:hover {
  color: var(--red);
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 8px;
}

.nav-links a {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--light);
  text-decoration: none;
  padding: 6px 14px;
  border: 1px solid transparent;
  letter-spacing: 0.1em;
  transition: all 0.2s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 50%;
  right: 50%;
  height: 1px;
  background: var(--red);
  transition: all 0.2s;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--white);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  left: 14px;
  right: 14px;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: all 0.2s;
}

/* =============================================
   HERO
   ============================================= */

.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: saturate(0.2) brightness(0.5);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, rgba(10,10,10,0.95) 30%, rgba(10,10,10,0.4) 100%),
    linear-gradient(to top, rgba(10,10,10,0.8) 0%, transparent 50%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 48px;
  padding-top: 64px;
  max-width: 700px;
}

.hero-tag {
  color: var(--red);
  margin-bottom: 16px;
  opacity: 0;
  animation: fadeUp 0.6s 0.2s ease forwards;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(8rem, 20vw, 16rem);
  line-height: 0.85;
  letter-spacing: -0.02em;
  display: flex;
  gap: 0;
}

.title-line {
  display: inline-block;
  opacity: 0;
  transform: translateY(40px);
  animation: fadeUp 0.5s ease forwards;
}
.title-line:nth-child(1) { animation-delay: 0.3s; }
.title-line:nth-child(2) { animation-delay: 0.4s; color: var(--red); }
.title-line:nth-child(3) { animation-delay: 0.5s; }
.title-line:nth-child(4) { animation-delay: 0.6s; }

.hero-sub {
  margin-top: 24px;
  opacity: 0;
  animation: fadeUp 0.6s 0.7s ease forwards;
}

.hero-sub p {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1.4rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--light);
}

.hero-cta {
  display: flex;
  gap: 16px;
  margin-top: 40px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.6s 0.9s ease forwards;
}

.btn {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  padding: 14px 32px;
  text-decoration: none;
  border: 1px solid;
  transition: all 0.2s;
  text-transform: uppercase;
  cursor: pointer;
  display: inline-block;
}

.btn-primary {
  background: var(--red);
  border-color: var(--red);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--red-hot);
  border-color: var(--red-hot);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(204, 26, 26, 0.4);
}

.btn-outline {
  background: transparent;
  border-color: var(--border);
  color: var(--light);
}

.btn-outline:hover {
  border-color: var(--white);
  color: var(--white);
  transform: translateY(-2px);
}

.hero-scroll-hint {
  position: absolute;
  bottom: 40px;
  right: 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  color: var(--muted);
  opacity: 0;
  animation: fadeIn 1s 1.2s ease forwards;
}

.hero-scroll-hint .mono {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  writing-mode: vertical-rl;
}

.scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, var(--muted), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

/* =============================================
   STAT STRIP
   ============================================= */

.about-strip {
  background: var(--red);
  padding: 0;
}

.strip-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  divide: var(--red-dim);
}

.strip-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 28px 20px;
  border-right: 1px solid rgba(255,255,255,0.15);
  transition: background 0.2s;
}

.strip-stat:last-child {
  border-right: none;
}

.strip-stat:hover {
  background: var(--red-dim);
}

.stat-num {
  font-family: var(--font-display);
  font-size: 2.8rem;
  line-height: 1;
  color: var(--white);
}

.stat-label {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  color: rgba(255,255,255,0.9);
  text-transform: uppercase;
  margin-top: 4px;
}

/* =============================================
   SECTION HEADERS
   ============================================= */

.section-header {
  display: flex;
  align-items: baseline;
  gap: 20px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.section-label {
  color: #e63333;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
}

.section-header h2 {
  font-family: var(--font-display);
  font-size: 3rem;
  letter-spacing: 0.05em;
  line-height: 1;
}

.section-link {
  color: #999999;
  text-decoration: none;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  margin-left: auto;
  transition: color 0.2s;
  white-space: nowrap;
}

.section-link:hover {
  color: var(--red);
}

/* =============================================
   FEATURED PLAYER
   ============================================= */

.featured-track {
  padding: 60px 0;
  border-bottom: 1px solid var(--border);
}

.player-card {
  background: var(--dark-mid);
  border: 1px solid var(--border);
  padding: 32px;
  position: relative;
  overflow: hidden;
}

.player-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--red);
}

.player-waveform {
  height: 60px;
  margin-bottom: 24px;
  overflow: hidden;
}

.waveform-bars {
  display: flex;
  align-items: center;
  gap: 2px;
  height: 100%;
}

.waveform-bar {
  flex: 1;
  background: var(--border);
  border-radius: 1px;
  transition: background 0.2s;
  cursor: pointer;
}

.waveform-bar.active {
  background: var(--red);
}

.waveform-bar.played {
  background: var(--red-dim);
}

.player-controls {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.player-info {
  display: flex;
  flex-direction: column;
  min-width: 160px;
}

.player-track-name {
  font-family: var(--font-display);
  font-size: 1.8rem;
  letter-spacing: 0.05em;
  line-height: 1;
}

.player-album {
  color: var(--muted);
  font-size: 0.75rem;
  margin-top: 4px;
}

.play-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--red);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.2s;
}

.play-btn:hover {
  background: var(--red-hot);
  transform: scale(1.08);
  box-shadow: 0 0 24px rgba(204,26,26,0.5);
}

.play-btn svg {
  width: 22px;
  height: 22px;
  fill: var(--white);
  stroke: none;
}

.icon-pause rect {
  fill: var(--white);
}

.player-time {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
  min-width: 200px;
}

.player-time .mono {
  font-size: 0.75rem;
  color: var(--muted);
  min-width: 36px;
}

.progress-bar {
  flex: 1;
  height: 3px;
  background: var(--border);
  cursor: pointer;
  position: relative;
}

.progress-fill {
  height: 100%;
  background: var(--red);
  width: 0%;
  transition: width 0.1s linear;
  position: relative;
}

.progress-fill::after {
  content: '';
  position: absolute;
  right: -4px;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--red-hot);
}

/* =============================================
   GALLERY PREVIEW
   ============================================= */

.gallery-preview {
  padding: 60px 0;
  border-bottom: 1px solid var(--border);
}

.gallery-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 8px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--dark-mid);
  cursor: pointer;
}

.gallery-item.large {
  grid-row: 1 / 3;
  aspect-ratio: unset;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease, filter 0.4s ease;
  filter: saturate(0.5) brightness(0.85);
}

.gallery-item:hover img {
  transform: scale(1.05);
  filter: saturate(1) brightness(1);
}

.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: rgba(204,26,26,0);
  transition: background 0.3s;
  mix-blend-mode: multiply;
}

.gallery-item:hover .gallery-item-overlay {
  background: rgba(204,26,26,0.15);
}

/* =============================================
   DISCOGRAPHY TEASER
   ============================================= */

.discography-teaser {
  padding: 60px 0;
  border-bottom: 1px solid var(--border);
}

.albums-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.album-card {
  background: var(--dark-mid);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: all 0.2s;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
  display: block;
}

.album-card:hover {
  border-color: var(--red);
  transform: translateY(-4px);
}

.album-art {
  aspect-ratio: 1;
  display: flex;
  align-items: flex-end;
  padding: 16px;
  position: relative;
  overflow: hidden;
}

.album-art-1 { background: linear-gradient(135deg, #1a1a1a 0%, #3a0808 50%, #1a0a0a 100%); }
.album-art-2 { background: linear-gradient(135deg, #0a0a1a 0%, #1a1a3a 50%, #0d0d1a 100%); }
.album-art-3 { background: linear-gradient(135deg, #0a1a0a 0%, #0d2010 50%, #0a160a 100%); }
.album-art-4 { background: linear-gradient(135deg, #1a1200 0%, #302000 50%, #1a1200 100%); }

.album-art::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 2px,
    rgba(255,255,255,0.015) 2px,
    rgba(255,255,255,0.015) 4px
  );
}

.album-num {
  font-family: var(--font-display);
  font-size: 3rem;
  color: rgba(255,255,255,0.15);
  position: relative;
  z-index: 1;
}

.album-info {
  padding: 16px;
  border-top: 1px solid var(--border);
}

.album-info h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  letter-spacing: 0.05em;
  margin-bottom: 4px;
}

.album-info span {
  color: var(--muted);
  font-size: 0.75rem;
}

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

.footer {
  background: var(--dark);
  border-top: 1px solid var(--border);
  padding: 40px 0;
}

.footer-inner {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 2rem;
  letter-spacing: 0.15em;
  color: var(--red);
}

.footer-text {
  color: #999999;
  font-size: 0.75rem;
}

.footer-nav {
  display: flex;
  gap: 20px;
  margin-left: auto;
  flex-wrap: wrap;
}

.footer-nav a {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: #999999;
  text-decoration: none;
  letter-spacing: 0.1em;
  transition: color 0.2s;
}

.footer-nav a:hover {
  color: var(--red);
}

/* =============================================
   BAND PAGE
   ============================================= */

.page-hero {
  padding: 120px 0 40px;
  border-bottom: 1px solid var(--border);
}

.page-hero-inner {
  display: flex;
  align-items: baseline;
  gap: 24px;
}

.page-title {
  font-family: var(--font-display);
  font-size: clamp(4rem, 10vw, 8rem);
  letter-spacing: 0.05em;
  line-height: 0.9;
}

.page-title span {
  color: var(--red);
}

.band-section {
  padding: 60px 0;
}

.band-intro {
  max-width: 600px;
  margin-bottom: 60px;
}

.band-intro p {
  font-family: var(--font-body-reg);
  font-size: 1.15rem;
  line-height: 1.7;
  color: var(--light);
}

.band-intro p strong {
  color: var(--white);
  font-weight: 600;
}

.members-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.member-card {
  background: var(--dark-mid);
  overflow: hidden;
  position: relative;
}

.member-photo {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
}

.member-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.3) contrast(1.1);
  transition: all 0.4s;
}

.member-card:hover .member-photo img {
  filter: saturate(0.8) contrast(1.05);
  transform: scale(1.03);
}

.member-info {
  padding: 28px;
  border-top: 3px solid var(--red);
}

.member-name {
  font-family: var(--font-display);
  font-size: 2.5rem;
  letter-spacing: 0.08em;
  line-height: 1;
  margin-bottom: 4px;
}

.member-role {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--red);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.member-gear {
  font-family: var(--font-body-reg);
  font-size: 0.9rem;
  color: var(--light);
  line-height: 1.6;
  border-top: 1px solid var(--border);
  padding-top: 16px;
}

/* =============================================
   MUSIC PAGE
   ============================================= */

.music-section {
  padding: 60px 0;
}

.albums-container {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.album-block {
  border: 1px solid var(--border);
  overflow: hidden;
}

.album-header {
  background: var(--dark-mid);
  padding: 24px 32px;
  display: flex;
  align-items: center;
  gap: 20px;
  border-bottom: 1px solid var(--border);
}

.album-number {
  font-family: var(--font-display);
  font-size: 3.5rem;
  color: var(--red);
  line-height: 1;
  opacity: 0.7;
}

.album-cover-thumb {
  width: 100px;
  height: 100px;
  object-fit: cover;
  image-rendering: pixelated;
  border: 1px solid var(--border);
  flex-shrink: 0;
}

.album-header-info h2 {
  font-family: var(--font-display);
  font-size: 2rem;
  letter-spacing: 0.05em;
}

.album-header-info .mono {
  color: var(--muted);
}

.track-list {
  list-style: none;
}

.track-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 32px;
  border-bottom: 1px solid rgba(51,51,51,0.5);
  cursor: pointer;
  transition: background 0.15s;
  position: relative;
}

.track-item:last-child {
  border-bottom: none;
}

.track-item:hover {
  background: rgba(204,26,26,0.06);
}

.track-item.playing {
  background: rgba(204,26,26,0.1);
}

.track-item.playing .track-title {
  color: var(--red);
}

.track-num {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--muted);
  min-width: 24px;
}

.track-title {
  flex: 1;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.05em;
  transition: color 0.2s;
}

.track-play-icon {
  width: 28px;
  height: 28px;
  background: transparent;
  border: 1px solid transparent;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  flex-shrink: 0;
  cursor: pointer;
  padding: 0;
}

.track-item:hover .track-play-icon {
  border-color: var(--red);
  background: rgba(204,26,26,0.1);
}

.track-play-icon svg {
  width: 10px;
  height: 10px;
  fill: var(--white);
}

.bonus-label {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  color: var(--red);
  letter-spacing: 0.1em;
  background: rgba(204,26,26,0.15);
  padding: 2px 8px;
  border: 1px solid rgba(204,26,26,0.3);
}

.music-player-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(10,10,10,0.97);
  border-top: 1px solid var(--border);
  padding: 0 32px;
  height: 72px;
  display: flex;
  align-items: center;
  gap: 24px;
  z-index: 50;
  backdrop-filter: blur(12px);
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.music-player-bar.visible {
  transform: translateY(0);
}

.player-bar-track {
  display: flex;
  flex-direction: column;
  min-width: 180px;
}

.player-bar-title {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1rem;
}

.player-bar-sub {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  color: var(--muted);
}

.player-bar-center {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
}

.player-bar-controls {
  display: flex;
  align-items: center;
  gap: 16px;
}

.bar-btn {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--light);
  transition: color 0.2s;
  display: flex;
  align-items: center;
}

.bar-btn:hover { color: var(--white); }

.bar-play-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--red);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}

.bar-play-btn:hover {
  background: var(--red-hot);
  transform: scale(1.05);
}

.bar-play-btn svg {
  width: 16px;
  height: 16px;
  fill: var(--white);
}

.player-bar-progress {
  width: 100%;
  max-width: 400px;
  height: 3px;
  background: var(--border);
  cursor: pointer;
  position: relative;
}

.player-bar-fill {
  height: 100%;
  background: var(--red);
  width: 0%;
  transition: width 0.1s linear;
}

.player-bar-time {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  color: var(--muted);
  min-width: 80px;
  text-align: right;
}

/* =============================================
   PICTURES PAGE
   ============================================= */

.pictures-section {
  padding: 60px 0;
}

.photo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.photo-item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/2;
  cursor: pointer;
  background: var(--dark-mid);
}

.photo-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.5) brightness(0.85);
  transition: all 0.4s ease;
}

.photo-item:hover img {
  filter: saturate(1) brightness(1);
  transform: scale(1.04);
}

.photo-item-num {
  position: absolute;
  bottom: 12px;
  right: 12px;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  color: rgba(255,255,255,0.6);
  opacity: 0;
  transition: opacity 0.3s;
}

.photo-item:hover .photo-item-num {
  opacity: 1;
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.95);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}

.lightbox.open {
  opacity: 1;
  pointer-events: all;
}

.lightbox-img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border: 1px solid var(--border);
}

.lightbox-close {
  position: absolute;
  top: 24px;
  right: 32px;
  background: none;
  border: none;
  color: var(--light);
  font-family: var(--font-mono);
  font-size: 0.8rem;
  cursor: pointer;
  letter-spacing: 0.1em;
  transition: color 0.2s;
}

.lightbox-close:hover { color: var(--red); }

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(10,10,10,0.7);
  border: 1px solid var(--border);
  color: var(--white);
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s;
  font-size: 1.2rem;
}

.lightbox-nav:hover {
  background: var(--red);
  border-color: var(--red);
}

.lightbox-prev { left: 24px; }
.lightbox-next { right: 24px; }

.lightbox-counter {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--muted);
}

/* =============================================
   LINKS PAGE
   ============================================= */

.links-section {
  padding: 60px 0;
}

.links-groups {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.links-group h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  letter-spacing: 0.08em;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
  position: relative;
}

.links-group h3::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 40px;
  height: 1px;
  background: var(--red);
}

.links-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.links-list a {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  color: var(--light);
  text-decoration: none;
  letter-spacing: 0.05em;
  padding: 8px 0;
  border-bottom: 1px solid transparent;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.2s;
}

.links-list a::before {
  content: '→';
  color: var(--red);
  opacity: 0;
  transition: opacity 0.2s, transform 0.2s;
  transform: translateX(-8px);
}

.links-list a:hover {
  color: var(--white);
  padding-left: 4px;
}

.links-list a:hover::before {
  opacity: 1;
  transform: translateX(0);
}

/* =============================================
   ANIMATIONS
   ============================================= */

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

@keyframes fadeIn {
  to {
    opacity: 1;
  }
}

@keyframes scrollPulse {
  0%, 100% { transform: scaleY(1); opacity: 1; }
  50% { transform: scaleY(0.6); opacity: 0.4; }
}

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

@media (max-width: 900px) {
  .nav-links {
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    background: rgba(10,10,10,0.97);
    flex-direction: column;
    padding: 24px 32px;
    border-bottom: 1px solid var(--border);
    transform: translateY(-110%);
    transition: transform 0.3s ease, visibility 0s 0.3s;
    gap: 4px;
    visibility: hidden;
  }

  .nav-links.open {
    transform: translateY(0);
    visibility: visible;
    transition: transform 0.3s ease, visibility 0s 0s;
  }

  .nav-toggle {
    display: flex;
  }

  .hero-content {
    padding: 0 24px;
    padding-top: 64px;
  }

  .strip-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .strip-stat:nth-child(2) { border-right: none; }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
  }

  .gallery-item.large {
    grid-column: 1 / 3;
    grid-row: auto;
    aspect-ratio: 16/9;
  }

  .albums-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .members-grid {
    grid-template-columns: 1fr;
  }

  .photo-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .links-groups {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .albums-row {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-item.large {
    grid-column: auto;
  }

  .photo-grid {
    grid-template-columns: 1fr;
  }

  .section-header {
    gap: 12px;
  }

  .player-card {
    padding: 20px;
  }

  .hero-cta {
    flex-direction: column;
  }

  .music-player-bar {
    padding: 0 16px;
    height: 80px;
  }

  .player-bar-time {
    display: none;
  }

  .album-header {
    padding: 16px;
    gap: 12px;
  }

  .album-number {
    font-size: 2rem;
  }

  .album-cover-thumb {
    width: 64px;
    height: 64px;
  }

  .album-header-info h2 {
    font-size: 1.4rem;
  }

  .page-hero {
    padding: 90px 0 24px;
  }

  .band-section,
  .music-section,
  .pictures-section,
  .links-section {
    padding: 36px 0;
  }

  .featured-track,
  .gallery-preview,
  .discography-teaser {
    padding: 36px 0;
  }

  .section-header {
    margin-bottom: 24px;
  }
}
