body {
  background: #0f0f10;
  color: #f3f0ea;
  font-family: "Helvetica Neue", sans-serif;
  overflow-x: hidden;
}

body * {
  box-sizing: border-box;
}

body a {
  text-decoration: none;
}

#color-theory-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity .8s ease;
}

#color-theory-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.45);
  backdrop-filter: blur(2px);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  padding: 40px;
}

.album-meta {
  font-size: 11px;
  letter-spacing: 4px;
  opacity: .7;
  margin-bottom: 20px;
}

.album-title {
  font-size: clamp(60px, 10vw, 140px);
  font-weight: 200;
  letter-spacing: 8px;
  line-height: .95;
  margin-bottom: 24px;
}

.album-subtitle {
  font-size: 12px;
  letter-spacing: 4px;
  opacity: .7;
  margin-bottom: 40px;
}

#enter-album {
  background: transparent;
  color: #f3f0ea;
  border: 1px solid rgba(255,255,255,.2);
  padding: 14px 30px;
  letter-spacing: 3px;
  font-size: 11px;
  transition: all .3s ease;
}

#enter-album:hover {
  border-color: rgba(255,255,255,.7);
  background: rgba(255,255,255,.04);
}

#album-stage {
  min-height: 100vh;
  padding: 120px 8vw;
  opacity: 0;
  visibility: hidden;
  transition: opacity 1s ease;
}

body.album-open #album-stage {
  opacity: 1;
  visibility: visible;
}

body.album-open #color-theory-hero {
  opacity: 0;
  pointer-events: none;
}

.album-column {
  opacity: 0;
  transition: opacity 1s ease;
}

body.album-open .hot-column {
  opacity: 1;
  transition-delay: .2s;
}

body.album-open .cold-column {
  opacity: 1;
  transition-delay: .6s;
}

.column-label {
  font-size: 11px;
  letter-spacing: 5px;
  opacity: .5;
  margin-bottom: 60px;
}

.track {
  display: flex;
  gap: 28px;
  padding: 28px 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
  opacity: 0;
  transition: opacity .8s ease;
}

body.album-open .track {
  opacity: 1;
}

.delay-1 { transition-delay: .3s; }
.delay-2 { transition-delay: .45s; }
.delay-3 { transition-delay: .6s; }
.delay-4 { transition-delay: .75s; }
.delay-5 { transition-delay: .9s; }
.delay-6 { transition-delay: 1.05s; }
.delay-7 { transition-delay: 1.2s; }

.track-number {
  width: 30px;
  font-size: 14px;
  opacity: .4;
}

.track-main {
  flex: 1;
}

.track-title {
  font-size: 30px;
  letter-spacing: 3px;
  margin-bottom: 12px;
  transition: color .3s ease;
}

.track-links {
  display: flex;
  gap: 20px;
}

.track-links a {
  color: rgba(255,255,255,.55);
  font-size: 11px;
  letter-spacing: 3px;
  transition: all .3s ease;
}

.track-links a:hover {
  color: #ffffff;
}

.track-blessed:hover .track-title { color: #C8B8A6; }
.track-shine:hover .track-title { color: #D6C27A; }
.track-tempo:hover .track-title { color: #C46A3A; }
.track-xo:hover .track-title { color: #B07A7A; }
.track-focus:hover .track-title { color: #7C8F7A; }
.track-bedpeace:hover .track-title { color: #7A8FA6; }
.track-laydown:hover .track-title { color: #4A4F6A; }
