:root {
  --bg-color: #050505;
  --text-color: #f0f0f0;
  --accent-color: #ff3333; /* Default TBSM Red */
  --font-display: 'Oswald', 'Impact', sans-serif;
  --font-body: 'Courier New', monospace;
  --noise-url: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI1MDAiIGhlaWdodD0iNTAwIj48ZmlsdGVyIGlkPSJub2lzZSI+PGZlVHVyYnVsZW5jZSB0eXBlPSJmcmFjdGFsTm9pc2UiIGJhc2VGcmVxdWVuY3k9IjAuNjUiIG51bU9jdGF2ZXM9IjMiIHN0aXRjaFRpbGVzPSJzdGl0Y2giLz48L2ZpbHRlcj48cmVjdCB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiBmaWx0ZXI9InVybCgjbm9pc2UpIiBvcGFjaXR5PSIwLjA1Ii8+PC9zdmc+');
}

/* Album Themes */
[data-theme="2kapahada"] { --accent-color: #0044cc; --bg-color: #0a0a1a; }
[data-theme="bayaan"] { --accent-color: #cc5500; --bg-color: #1a1005; }
[data-theme="nayaab"] { --accent-color: #e0e0e0; --bg-color: #111; --text-color: #fff; }
[data-theme="lunchbreak"] { --accent-color: #ff00cc; --bg-color: #000; }
[data-theme="naa"] { --accent-color: #00ff00; --bg-color: #121212; }
[data-theme="shakti"] { --accent-color: #ffcc00; --bg-color: #220000; }
[data-theme="dl91"] { --accent-color: #ffffff; --bg-color: #000000; }

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

body {
  background-color: var(--bg-color);
  color: var(--text-color);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
  transition: background-color 0.5s ease;
}

/* Noise Texture Overlay */
body::after {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: var(--noise-url);
  opacity: 0.15;
  pointer-events: none;
  z-index: 9999;
}

/* Typography */
h1, h2, h3, .display-text {
  font-family: var(--font-display);
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 0.9;
}

h1 {
  font-size: clamp(4rem, 15vw, 12rem);
  color: transparent;
  -webkit-text-stroke: 2px var(--text-color);
  position: relative;
  z-index: 10;
  margin-bottom: 2rem;
}

h1.filled {
  color: var(--text-color);
  -webkit-text-stroke: 0;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}

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

/* Layout Utilities */
.container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 2rem;
}

.full-screen {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Navigation - The "Setlist" */
.nav-setlist {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background: #fff;
  color: #000;
  padding: 1.5rem;
  font-family: 'Marker Felt', 'Comic Sans MS', cursive; /* Handwritten feel */
  transform: rotate(-2deg);
  box-shadow: 5px 5px 15px rgba(0,0,0,0.5);
  z-index: 1000;
  max-width: 250px;
}

.nav-setlist::before {
  content: ""; /* Tape effect */
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 25px;
  background: rgba(255, 255, 255, 0.4);
  box-shadow: 0 1px 3px rgba(0,0,0,0.2);
}

.nav-setlist h3 {
  font-family: inherit;
  border-bottom: 2px solid #000;
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
}

.nav-setlist ul {
  list-style: none;
}

.nav-setlist li {
  margin-bottom: 0.25rem;
  border-bottom: 1px dashed #999;
}

.nav-setlist a {
  font-size: 1rem;
  display: block;
}

.nav-setlist a:hover {
  font-weight: bold;
  color: #cc0000;
}

/* Home Page Specifics */
.hero-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1rem;
  align-items: center;
}

.hero-title {
  grid-column: 1 / -1;
  text-align: center;
  mix-blend-mode: exclusion;
}

.hero-image-stack {
  grid-column: 4 / 10;
  position: relative;
  height: 60vh;
}

.stack-img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.3s, opacity 0.3s;
  filter: grayscale(100%) contrast(120%);
}

.stack-img:hover {
  filter: grayscale(0%) contrast(100%);
  transform: scale(1.05) rotate(2deg);
  z-index: 50;
}

/* Album Page Layout */
.album-header {
  height: 90vh;
  display: flex;
  align-items: flex-end;
  padding-bottom: 4rem;
  position: relative;
}

.album-cover-bg {
  position: absolute;
  top: 0;
  right: 0;
  width: 60vw;
  height: 80vh;
  object-fit: cover;
  opacity: 0.8;
  z-index: 0;
  mask-image: linear-gradient(to bottom, black 50%, transparent 100%);
  -webkit-mask-image: linear-gradient(to left, black 20%, transparent 100%);
}

.album-info {
  position: relative;
  z-index: 10;
  max-width: 600px;
}

.album-year {
  font-size: 1.5rem;
  color: var(--accent-color);
  font-weight: bold;
  display: block;
  margin-bottom: -1rem;
}

.tracklist {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 4rem;
}

.track {
  border-left: 2px solid var(--accent-color);
  padding-left: 1rem;
}

.track-num {
  color: #666;
  font-size: 0.8rem;
  display: block;
}

.track-title {
  font-weight: bold;
  font-size: 1.2rem;
  text-transform: uppercase;
}

/* Glitch Effect for 2 Ka Pahada */
.glitch {
  position: relative;
}
.glitch::before, .glitch::after {
  content: attr(data-text);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.glitch::before {
  left: 2px;
  text-shadow: -1px 0 red;
  clip: rect(44px, 450px, 56px, 0);
  animation: glitch-anim 5s infinite linear alternate-reverse;
}
.glitch::after {
  left: -2px;
  text-shadow: -1px 0 blue;
  clip: rect(44px, 450px, 56px, 0);
  animation: glitch-anim-2 5s infinite linear alternate-reverse;
}

@keyframes glitch-anim {
  0% { clip: rect(38px, 9999px, 81px, 0); }
  20% { clip: rect(6px, 9999px, 15px, 0); }
  40% { clip: rect(69px, 9999px, 86px, 0); }
  60% { clip: rect(2px, 9999px, 11px, 0); }
  80% { clip: rect(54px, 9999px, 60px, 0); }
  100% { clip: rect(23px, 9999px, 5px, 0); }
}

@media (max-width: 768px) {
  h1 { font-size: 15vw; }
  .nav-setlist { bottom: 0; right: 0; width: 100%; max-width: none; transform: none; }
  .album-cover-bg { width: 100%; height: 50vh; opacity: 0.4; }
  .hero-image-stack { grid-column: 1 / -1; height: 50vh; }
}
