:root {
  --bg: #0b0b10;
  --panel: rgba(255, 255, 255, 0.06);
  --text: rgba(255, 255, 255, 0.92);
  --muted: rgba(255, 255, 255, 0.72);
  --border: rgba(255, 255, 255, 0.14);
  --btn-bg: rgba(255,255,255,0.14);
  --btn-bg-hover: rgba(255,255,255,0.20);
  --btn-text: rgba(255,255,255,0.95);
  --btn-border: rgba(255,255,255,0.22);
}

html, body {
  height: 100%;
}

/* --- TOP NAV: fixed, black blocks under items, vertical dividers --- */
.topnav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;

  height: 56px;
  z-index: 80;

  display: flex;
  align-items: stretch;
  background: transparent;
}

.topnav__actions {
  width: 100%;
  max-width: 980px;
  margin: 0 auto;
  padding: 0 18px;

  display: flex;
  align-items: stretch;
}

.topnav__item {
  position: relative;

  display: inline-flex;
  align-items: center;
  height: 100%;

  padding: 0 16px;
  font-weight: 800;
  letter-spacing: 0.02em;

  color: var(--text);

  border-left: 1px solid var(--border);
  border-right: 1px solid var(--border);
}

/* prevent double borders between adjacent items */
.topnav__item + .topnav__item {
  border-left: 0;
}

/* black block under each item */
.topnav__item::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  z-index: -1;
}

.topnav__item:hover::before {
  background: rgba(0, 0, 0, 0.95);
}

.topnav__item:focus-visible::before {
  background: rgba(0, 0, 0, 1);
}

.topnav__item:focus-visible {
  outline: 2px solid rgba(255,255,255,0.65);
  outline-offset: -2px;
}
/* this is all for the sticky merch button */

body {
  margin: 0;
  min-height: 100vh;
  background: #0b0b10; /* your original black base */
  color: var(--text);
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;

  position: relative; /* needed for layering */
  isolation: isolate; /* ensures z-index layering behaves */
}
a {
  color: var(--text);
  text-decoration: none;
}
a[href^="mailto:"] {
  color: var(--text);
  text-decoration: underline;
  font-style: italic;
}
/* Background image (texture) */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image: url("/images/blacksunepcover.png"); /* <-- keep your correct path */
  background-repeat: no-repeat;
  background-position: center;
  background-size: 220%; /* zoom amount: try 160%–280% */
  opacity: 0.35; /* strength of texture */
  z-index: -2;
  pointer-events: none;
}

/* Dark overlay to keep text readable */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.62); /* adjust 0.45–0.75 */
  z-index: -1;
  pointer-events: none;
}
.page { min-height: 100vh; }

.hero {
  width: 100%;
  border-bottom: 1px solid var(--border);
}
.hero {
  margin-bottom: 22px;
}
.hero__img {
  width: 100%;
  aspect-ratio: 21 / 9;
  height: auto;
  max-height: clamp(260px, 32vw, 440px);

  object-fit: cover;
  object-position: 50% 15%;

  display: block;
}

.content {
  max-width: 980px;
  margin: 0 auto;
  padding: 28px 18px 56px;
  display: grid;
  gap: 22px;
}

.titlemark {
  display: flex;
  justify-content: center;
  padding-top: 0px;
}
.titlemark__img {
  max-width: min(680px, 92vw);
  height: auto;
  display: block;
}
.titlemark {
  margin-bottom: 22px;
}

section {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 18px 16px;
  backdrop-filter: blur(6px);
}

h2 {
  margin: 0 0 10px;
  font-size: 16px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
}

p { margin: 0; line-height: 1.6; color: var(--text); }

.presave__row {
  display: grid;
  gap: 12px;
  grid-template-columns: max-content minmax(0, 1fr);
  align-items: center;
}
.presave__row .button {
  width: auto;        /* don’t stretch */
  white-space: nowrap; /* keep it button-like */
}

.presave__desc {
  margin: 0;
  min-width: 0; /* important: prevents weird overflow */
}

@media (max-width: 720px) {
  .presave__row {
    grid-template-columns: 1fr;
  }
}

.button,
.linkcard {
  display: flex;
  align-items: center;
  gap: 12px;

  max-width: 100%;
  padding: 12px 14px;

  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;

  box-sizing: border-box;
  min-width: 0;

  color: var(--btn-text);
  background: var(--btn-bg);
  border: 1px solid var(--btn-border);
}

.button:hover, .linkcard:hover {
  background: var(--btn-bg-hover);
}

.button:focus-visible,
.linkcard:focus-visible,
.dropdown > summary:focus-visible {
  outline: 2px solid rgba(255,255,255,0.65);
  outline-offset: 3px;
}

.presave__desc { color: var(--muted); }

.links__grid {
  list-style: none;
  padding: 0;
  margin: 0;

  display: grid;
  gap: 14px;
  grid-template-columns: repeat(auto-fit, minmax(54px, 1fr));
  align-items: center;
}

.links__grid li {
  display: grid;
  place-items: center;
}

.linkcard__icon {
  width: 20px;
  height: 20px;
  display: block;
}
.linkcard--icon {
  width: 54px;
  height: 54px;
  padding: 0;
  justify-content: center;
}

.linkcard--icon .linkcard__icon {
  width: 26px;
  height: 26px;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.dropdown > summary {
  font-size: 18px;
  padding: 16px 16px;
  font-weight: 700;
  border-bottom: 1px solid var(--border);
  background: rgba(0,0,0,0.18);
}

.dropdown__content p + p {
  margin-top: 18px; /* increase/decrease to taste */
}

.footer {
  text-align: center;
  color: var(--muted);
  opacity: 0.9;
  margin-top: 6px;
}

.titlemark {
  background: none;
  border: none;
  padding: 0;
}

.container {
  max-width: 980px;
  margin: 0 auto;
  padding: 0 18px 56px;
}
.bio p + p {
  margin-top: 12px;
}
.bio {
  text-align: center;
}
.ep__top {
  display: grid;
  gap: 16px;
}

@media (min-width: 720px) {
  .ep__top {
    grid-template-columns: minmax(260px, 1fr) 2fr;
    align-items: start;
  }
}

.ep__art {
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  align-self: start;
}

.ep__title {
  margin: 0 0 10px;
  font-size: 18px;
}

.ep__info p + p {
  margin-top: 12px;
}

.ep__tracksTitle {
  margin: 16px 0 10px;
  font-size: 14px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
}

.ep__tracklist {
  margin: 0;
  padding-left: 18px;
  display: grid;
  gap: 6px;
}

.ep__tracklist li {
  color: var(--text);
}

.news__header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}

.news__hint {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

/* Scroll container sized to roughly 3 items */
.news__list {
  list-style: none;
  padding: 0;
  margin: 0;

  display: grid;

  /* Fixed height: tune this if your items run taller/shorter */
  max-height: 210px;         /* ~3 items */
  overflow: auto;

  border: 1px solid var(--border);
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.12);
}

/* Divider lines between entries */
.news__item {
  display: grid;
  grid-template-columns: 118px 1fr;
  gap: 12px;

  padding: 12px 12px;
}

.news__item + .news__item {
  border-top: 1px solid var(--border);
}

.news__date {
  color: var(--muted);
  font-size: 13px;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.news__title {
  display: block;
  font-weight: 800;
  color: var(--text);
  line-height: 1.35;
}

.news__meta {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  line-height: 1.45;
}

/* Optional: nicer keyboard focus if you later add links inside items */
.news__list:focus-within {
  outline: 2px solid rgba(255,255,255,0.35);
  outline-offset: 3px;
}

/* Optional: better scrollbar feel (works in most modern browsers) */
.news__list {
  scrollbar-width: thin;
  scrollbar-color: rgba(255,255,255,0.25) rgba(255,255,255,0.06);
}
.news__list::-webkit-scrollbar {
  width: 10px;
}
.news__list::-webkit-scrollbar-thumb {
  background: rgba(255,255,255,0.22);
  border-radius: 999px;
  border: 2px solid rgba(0,0,0,0.0);
}
.news__list::-webkit-scrollbar-track {
  background: rgba(255,255,255,0.06);
  border-radius: 999px;
}

/* --- BIO DROPDOWN (homepage intro) --- */

.bio--dropdown {
  text-align: center;
}

/* summary behaviour */
.bio__summary {
  list-style: none;
  cursor: pointer;
}

.bio__summary::-webkit-details-marker {
  display: none;
}

.bio__summary h2 {
  margin: 0 0 8px;
}

.bio__intro {
  margin: 0;
  line-height: 1.6;
  color: var(--text);
}

/* small CTA text */
.bio__cta {
  margin-top: 10px;
  font-size: 11px; /* smaller than before */
  color: var(--muted);
  letter-spacing: 0.05em;
}

.bio__summary:hover .bio__cta {
  text-decoration: underline;
}

.bio__content {
  margin-top: 16px;
}

.bio__content p + p {
  margin-top: 12px;
}

/* show/hide the "Click here for more" line depending on open state */
.bio__details[open] .bio__cta--open {
  display: none;
}

/* minimise control at bottom (visual only; JS needed to actually close) */
.bio__minimise {
  margin-top: 16px;
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.05em;
  text-decoration: none;
  cursor: pointer;
}

.bio__minimise:hover {
  text-decoration: underline;
}

/* --- MERCH PAGE: clean, traditional divisions --- */
.merch__header {
  margin-top: 10px;
  margin-bottom: 8px;
}

.merch__title {
  margin: 0;
  font-size: 34px;
  letter-spacing: 0.02em;
}

.merch__subtitle {
  margin-top: 8px;
  color: var(--muted);
}

.merch__section {
  padding: 16px 0;
  border-top: 1px solid var(--border);
}

.merch__heading {
  margin: 0 0 12px;
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

/* items */
.merch__grid {
  display: grid;
  gap: 12px;
}

.merch__item {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 14px;
  align-items: center;

  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.merch__media {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;

  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 12px;
  background: rgba(0,0,0,0.18);
}

.merch__icon {
  width: 28px;
  height: 28px;
  display: block;
}

.merch__media--placeholder {
  color: rgba(255,255,255,0.75);
  font-weight: 800;
  letter-spacing: 0.06em;
  font-size: 12px;
}

.merch__itemTitle {
  margin: 0;
  font-size: 16px;
}

.merch__desc {
  margin-top: 6px;
  color: var(--muted);
}

.merch__link {
  display: inline-block;
  margin-top: 8px;
  text-decoration: underline;
  text-underline-offset: 3px;
}

