:root {
  --bg: #0a0a0a;
  --fg: #ffffff;
  --muted: #999;
  --border: #333;
}

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

body {
  background: var(--bg) url('../images/photos/Better_Luck_Cover.jpeg') center center / cover fixed;
  color: var(--fg);
  font-family: 'Inter', system-ui, sans-serif;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 48px 20px 64px;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.72);
  z-index: 0;
}

body > * {
  position: relative;
  z-index: 1;
}

/* ── LOGO ── */
.logo {
  width: clamp(160px, 40vw, 320px);
  display: block;
  margin-bottom: 40px;
  filter: invert(1);
  mix-blend-mode: screen;
}

/* ── NEW SINGLE ── */
.new-single {
  width: 100%;
  max-width: 480px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 36px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 24px 0;
}

.single-cover {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  display: block;
}

.single-text { width: 100%; }

.single-eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 0.58rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
}

.single-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(1.3rem, 4vw, 1.8rem);
  color: #fff;
  line-height: 1.05;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.single-date {
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 2px;
  color: var(--muted);
}

/* ── VIDEO ── */
.video-wrap {
  width: 100%;
  max-width: 480px;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: #111;
  margin-bottom: 8px;
}

.video-wrap iframe {
  width: 100%;
  height: 100%;
  display: block;
  border: none;
}

.video-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.6rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 32px;
  text-align: center;
}

/* ── LINKS ── */
.links {
  width: 100%;
  max-width: 480px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.group-label {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.4rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #fff;
  padding: 28px 0 6px;
}

.group-label:first-child { padding-top: 0; }

.link-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  border-top: 1px solid var(--border);
  text-decoration: none;
  color: var(--fg);
  font-size: 0.88rem;
  letter-spacing: 1px;
  transition: color 0.2s;
  cursor: pointer;
  background: none;
  border-left: none;
  border-right: none;
  border-bottom: none;
  width: 100%;
  text-align: left;
  font-family: 'Inter', sans-serif;
}

.link-row:last-child { border-bottom: 1px solid var(--border); }
.link-row:hover { color: #fff; }
.link-row:hover .link-arrow { opacity: 1; }

.link-arrow {
  font-size: 0.7rem;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.5);
  border-radius: 50%;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: border-color 0.2s, background 0.2s, transform 0.2s;
}

.link-row:hover .link-arrow {
  border-color: #fff;
  background: rgba(255,255,255,0.15);
}

.link-arrow.open {
  transform: rotate(90deg);
  border-color: #fff;
  background: rgba(255,255,255,0.15);
}

/* ── SUB-LINKS ── */
.sub-links {
  display: none;
  flex-direction: column;
  padding: 4px 0 8px 0;
  gap: 0;
}

.sub-links.open { display: flex; }

.sub-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 11px 12px;
  font-size: 0.82rem;
  color: #888;
  text-decoration: none;
  letter-spacing: 0.5px;
  border-bottom: 1px solid var(--border);
  transition: color 0.2s, background 0.2s;
}

.sub-link:hover {
  color: #fff;
  background: #111;
}

/* ── FOOTER ── */
footer {
  margin-top: 48px;
  font-size: 0.58rem;
  color: #333;
  font-family: 'Inter', sans-serif;
  letter-spacing: 3px;
  text-transform: uppercase;
  text-align: center;
}
