body
{
  margin: 0;
  padding: 0;

  /* make it look decent enough */
  background: #232323;
  color: #cdcdcd;
  font-family: "Avenir Next", "Avenir", sans-serif;
  background-size: 40px 40px;
  background-image:
    linear-gradient(to right, #2b2b2b 1px, transparent 1px),
    linear-gradient(to bottom, #2b2b2b 1px, transparent 1px);
}

main {
  width: 100%;
  max-width: 50%;
  margin: 100px auto;
  background: #262626;
  border-radius: 10px;

  padding: 4em;
}

p {
  font-size: 18px;
  line-height: 28px;
}

* {
  scroll-behavior: smooth;
  color: #d6d6d6;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

table {
    display: table;
    border-spacing: 2px;
    border-collapse: separate;
    box-sizing: border-box;
    text-indent: 0;
    text-align: left;
    border: 1px solid white;
}




/* ── PLAYER: only adds new custom properties, never overrides site vars ── */
:root {
  --bar-bg:      rgba(26, 26, 26, 0.85);
  --bar-border:  #2b2b2b;
  --muted:       #5f5e5a;
  --accent:      #2a52be;   /* dark blue scrubber */
  --cover-size:  36px;
  --bar-h:       52px;
}

/* No body padding needed — player is inside main, not fixed to viewport */

/* ── PLAYER BAR ── */
#player-bar {
  position: relative;
  width: 100%;
  height: var(--bar-h);
  background: rgba(26, 26, 26, 0.85);
  border: 1px solid #2b2b2b;
  border-radius: 8px;
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 10px;
  padding: 0 14px;
  margin-bottom: 2em;
  overflow: hidden;
}

/* Album cover */
#cover {
  width: var(--cover-size);
  height: var(--cover-size);
  border-radius: 4px;
  flex-shrink: 0;
  background: #1a1a1a;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
#cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none;
  user-select: none;
  -webkit-user-drag: none;
}
#cover svg { opacity: 0.25; }

/* Play button */
#play-btn {
  width: 28px; height: 28px;
  border-radius: 50%;
  border: none;
  background: #2a52be;
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
  transition: transform 0.15s, opacity 0.15s;
}
#play-btn:hover  { transform: scale(1.08); opacity: 0.9; }
#play-btn:active { transform: scale(0.96); }
#play-btn svg    { pointer-events: none; }

/* Song title */
#song-title {
  font-family: "Avenir Next", "Avenir", sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.04em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 160px;
  flex-shrink: 0;
  color: #cdcdcd;
}

/* Scrubber */
.scrubber-wrap {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 6px;
  min-width: 0;
}
.time {
  font-family: "Avenir Next", "Avenir", monospace;
  font-size: 10px;
  color: #5f5e5a;
  white-space: nowrap;
  flex-shrink: 0;
}
#scrubber {
  flex: 1;
  -webkit-appearance: none;
  appearance: none;
  height: 3px;
  border-radius: 2px;
  background: #2a2a2a;
  outline: none;
  cursor: pointer;
  min-width: 0;
}
#scrubber::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--accent);
  cursor: pointer;
  transition: transform 0.1s;
}
#scrubber:hover::-webkit-slider-thumb { transform: scale(1.3); }
#scrubber::-moz-range-thumb {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--accent);
  border: none;
  cursor: pointer;
}

#proto-page {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background-color: #232323;
  background-size: 40px 40px;
  background-image:
    linear-gradient(to right, #2b2b2b 1px, transparent 1px),
    linear-gradient(to bottom, #2b2b2b 1px, transparent 1px);
  z-index: 0;
}

#proto-canvas {
  pointer-events: none;
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  display: block;
  z-index: 1;
}

#cursor-dot {
  pointer-events: none;
  position: fixed;
  width: 6px; height: 6px;
  background: #cdcdcd;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity 0.2s ease;
  z-index: 999;
}

#scroll-container {
  position: relative;
  z-index: 10;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: clamp(40px, 8vh, 80px) clamp(20px, 5vw, 60px) 120px;
  cursor: default;
}

#logo {
  width: clamp(80px, 15vw, 160px);
  margin-bottom: clamp(32px, 6vh, 64px);
  filter: brightness(0) invert(1);
}

#main-card {
  background: #2a2a2a;
  border: 0.5px solid #3a3a3a;
  border-radius: clamp(8px, 1.5vw, 16px);
  padding: clamp(20px, 4vw, 48px) clamp(24px, 5vw, 56px);
  width: 50%;
  margin-bottom: 40px;
}

#main-card h2 {
  font-family: "Avenir Next", "Avenir", sans-serif;
  font-size: clamp(14px, 2vw, 22px);
  font-weight: 500;
  margin-bottom: clamp(6px, 1vw, 12px);
}

#main-card p {
  color: #a2a2a2;

}

.filler-block {
  background: #2a2a2a;
  border: 0.5px solid #3a3a3a;
  border-radius: 12px;
  padding: 24px 32px;
  width: clamp(200px, 50vw, 480px);
  margin-bottom: 24px;
  font-family: "Avenir Next", "Avenir", sans-serif;
  font-size: 13px;
  line-height: 1.7;
}

#hover-label {
  position: fixed;
  bottom: clamp(12px, 2vh, 24px);
  left: 50%;
  transform: translateX(-50%);
  font-family: "Avenir Next", "Avenir", sans-serif;
  font-size: clamp(10px, 1.1vw, 13px);
  letter-spacing: 0.05em;
  pointer-events: none;
  white-space: nowrap;
  z-index: 20;
}

.filter-white {
    color: white;
    width: 20%;
    height: auto;

}