body {
  background: #f4f2ef;
  color: #2a2520;
  font-family: 'Azeret Mono', monospace;
  font-size: 13px;
  font-weight: 300;
  line-height: 1.7;
  margin: 0;
  padding: 0;
  -webkit-font-smoothing: antialiased;
}

/* ── SPINE ────────────────────────────── */

.spine {
  position: fixed;
  left: 0;
  top: 0;
  bottom: 0;
  width: 5.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 1.2rem 0;
  z-index: 10;
}

.spine::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(
    180deg,
    #ff0000, #ff8800, #ffff00, #00cc00, #0000ff, #8800ff, #ff0000
  );
  background-size: auto 250%;
  animation: drift 20s linear infinite;
}

@keyframes drift {
  from { background-position: center 0%; }
  to   { background-position: center 250%; }
}

.spine-name {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.15em;
  color: #2a2520;
}

.spine-est {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.15em;
  color: #837e78;
  text-align: center;
}

/* ── MAIN ─────────────────────────────── */

main {
  margin-left: 5.5rem;
  padding: 44px 40px 72px;
  max-width: calc(5.5rem + 900px);
}

/* ── ABOUT ────────────────────────────── */

.about {
  display: flex;
  gap: 28px;
  align-items: flex-start;
}

.about-text {
  flex: 1;
  min-width: 0;
}

.photo {
  width: 280px;
  flex-shrink: 0;
  object-fit: cover;
  filter: grayscale(20%);
}

.genres {
  font-size: 11px;
  letter-spacing: 0.25em;
  color: #837e78;
  margin-bottom: 18px;
}

.voice {
  font-style: italic;
  font-size: 14px;
  line-height: 1.75;
  color: #2a2520;
  max-width: 500px;
}

/* ── SECTIONS ─────────────────────────── */

hr {
  border: none;
  border-top: 1px solid #ddd8d2;
  margin: 28px 0;
}

h2 {
  font-weight: 400;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: #b5b0aa;
  margin-bottom: 10px;
}

/* ── TABLES ───────────────────────────── */

table {
  border-collapse: collapse;
  width: 100%;
}

td {
  padding: 6px 12px 6px 0;
  vertical-align: top;
  transition: color 0.1s;
}

tr:hover td { color: #2a2520; }

.num  { color: #ccc8c2; width: 24px; }
.date { color: #9a9590; width: 56px; }
.meta { color: #b5b0aa; text-align: right; font-size: 11px; }

tr:hover .num  { color: #9a9590; }
tr:hover .meta { color: #8a8580; }

/* ── FOOTER ───────────────────────────── */

footer { margin-top: 8px; }
footer p { margin: 0 0 5px; }
footer p:last-child { margin: 0; }

a {
  color: #2a2520;
  text-decoration: underline;
  transition: color 0.1s;
}

a:hover { color: unset; }

/* ── WHATSAPP FLOAT ───────────────────── */

.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 52px;
  height: 52px;
  background: #25d366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  transition: transform 0.15s, box-shadow 0.15s;
  z-index: 20;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
  color: #fff;
}

.whatsapp-float svg {
  width: 28px;
  height: 28px;
}

/* ── MOBILE ───────────────────────────── */

@media (max-width: 600px) {
  .spine {
    position: relative;
    width: 100%;
    height: auto;
    flex-direction: row;
    align-items: center;
    padding: 12px 16px;
  }

  .spine::after {
    top: auto;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
  }

  .spine-name {
    flex-direction: row;
    gap: 6px;
  }

  main {
    margin-left: 0;
    padding: 24px 16px 48px;
    max-width: 100%;
  }

  .about {
    flex-direction: column;
  }

  .photo {
    width: 100%;
    max-width: 240px;
  }
}
