/* never forget · nvf.css — the party's own layer over the analogue stack.
   Loaded LAST. Everything else is inherited from the album's proven CSS. */

/* the header has no cover art — one full-width column */
.record-head { grid-template-columns: 1fr; }

/* panels use plain sections; the album's state machine must not hide them */
.page-album .panel section { display: block; }

/* the photo roll */
.photo-actions { display: flex; gap: 10px; margin: 0 0 14px; align-items: center; }
.photo-add { cursor: pointer; }
.photo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
}
.photo-cell {
  padding: 0;
  border: none;
  background: #111;
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 1;
  cursor: pointer;
}
.photo-cell img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* drive rows: unlocked links read as links */
.track-name[href] { text-decoration: underline; text-underline-offset: 3px; }
a.track-name { color: inherit; }

/* disk chips on the live wall */
.disk-chip {
  position: absolute;
  transform: translate(-50%, -50%);
  display: grid;
  place-items: center;
  width: 20px;
  height: 20px;
  background: #1c1c1c;
  color: #e8e8e8;
  border: 1px solid #2a2a2a;
  border-radius: 5px;
  font-size: 10px;
  font-weight: 700;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}
.disk-chip.is-asleep { opacity: 0.35; }
body.is-tv .disk-chip { width: 26px; height: 26px; font-size: 13px; border-width: 2px; }

/* no label art on party disks — hide the empty img inside the splash disk */
#splash-label[src=""] { visibility: hidden; }

/* the rules screen — full black, bullets, one button */
.rules {
  position: fixed;
  inset: 0;
  z-index: 400;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.rules[hidden] { display: none; }
.rules-inner { max-width: 420px; display: flex; flex-direction: column; gap: 18px; }
.rules-cat { margin: 0; font-size: 12px; color: #555; }
.rules-title { margin: 0; font-size: 28px; font-weight: 700; letter-spacing: -0.02em; color: #fff; }
.rules-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 12px; }
.rules-list li { font-size: 15px; line-height: 1.55; color: #9a9a9a; }
.rules-list li b { color: #fff; font-weight: 600; }
.rules-ok { align-self: flex-start; padding: 12px 26px; font-size: 15px; background: #fff !important; color: #000 !important; }
.rules-fine { margin: 0; font-size: 12px; color: #555; }

/* apple button: logo + label centered like Google's pill */
.oauth-apple { display: inline-flex; align-items: center; justify-content: center; gap: 8px; }
