@font-face{
  font-family: "Century Gothic Web";
  src: url("fonts/CenturyGothic.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root{
  --bg: #000;
  --fg: #fff;
  --accent: #F92669;
  --hero-bg: var(--bg);
  --hero-fg: var(--fg);
  --paper: #fff;
  --link-hover: #F92669;
  --paper-fg: #000;
  --muted: rgba(255,255,255,.72);
  --muted-dark: rgba(0,0,0,.65);
  --line: rgba(0,0,0,.12);
  --shadow: 0 14px 30px rgba(0,0,0,.14);
  --radius: 14px;
}

*{ box-sizing: border-box; }
html,body{ height:100%; margin:0; }
body{
  font-family: "Century Gothic Web", "Century Gothic", "Futura", "Trebuchet MS", sans-serif;
  background: #000;
  color: #fff;
}

.page{
  min-height: 100%;
}

.hero{
  position: relative;
  min-height: 100vh;
  background: var(--hero-bg);
  color: var(--hero-fg);
  overflow: hidden;
  display: grid;
  place-items: center;
  user-select: none;
}

.float-links{
  position: absolute;
  inset: 0;
  z-index: 2;
}

.float-link{
  position: absolute;
  display: inline-block;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  backdrop-filter: none;

  font-size: 16px;
  line-height: 1;
  text-decoration: none;
  color: var(--hero-fg);

  cursor: grab;
  touch-action: none;
  user-select: none;
  -webkit-user-select: none;
}

.float-link:hover{
  color: var(--link-hover);
  text-decoration: none;
}

.float-link:active{
  cursor: grabbing;
}

.hero-inner{
  width: min(1100px, calc(100% - 44px));
  position: relative;
  z-index: 3;
  display: grid;
  place-items: center;
}

.hero-title{
  margin: 0;
  font-weight: 400;
  letter-spacing: 0.01em;
  font-size: clamp(56px, 8vw, 120px);
  line-height: 0.95;
  text-transform: none;
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
}

.releases{
  background: #fff;
  color: #000;
  padding: 64px 0 72px;
}

.releases-inner{
  width: min(1100px, calc(100% - 44px));
  margin: 0 auto;
}

.releases-title{
  margin: 0 0 22px;
  font-size: 22px;
  letter-spacing: 0.02em;
  font-weight: 700;
  color: #000;
}

.releases-grid{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px 18px;
}

@media (max-width: 860px){
  .releases-grid{ grid-template-columns: 1fr; }
}

.release-card{
  border: 1px solid #000;
  border-radius: 0;
  background: #fff;
  color: #000;
  box-shadow: none;
  overflow: hidden;
  min-height: 0;
  height: auto;
  display: grid;
  grid-template-columns: 170px 1fr;
  gap: 14px;
  padding: 14px;
  align-items: start;

  transform: translateX(var(--xshift, 0px));
}

@media (max-width: 860px){
  .release-card{
    transform: none;
    grid-template-columns: 160px 1fr;
  }
}

.cover{
  width: 170px;
  height: 170px;
  border-radius: 0;
  overflow: hidden;
  background: #fff;
  flex: none;
}

.cover img{
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #000;
  display: block;
}

@media (max-width: 860px){
  .cover{ width: 160px; height: 160px; }
}

.card-title{
  margin: 0 0 10px;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: #000;
}

.card-meta{
  display: grid;
  gap: 4px;
  font-size: 12px;
  color: rgba(0,0,0,.75);
}

.meta-row{
  display: grid;
  gap: 4px;
}

.meta-pill{
  display: block;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: inherit;
  font-size: 12px;
}

.meta-pill b{
  color: #000;
  font-weight: 700;
}

.card-links{
  margin-top: 10px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.card-link{
  display: inline;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;

  color: #000;
  text-decoration: none;
  font-size: 12px;
}

.card-link:hover{
  color: var(--accent);
  text-decoration: none;
}

.card-link:active{
  transform: translateY(1px);
}

.footer-inner{
  width: min(1100px, calc(100% - 44px));
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  min-height: 64px;
  font-size: 13px;
  letter-spacing: 0.01em;
}

.footer-link{
  text-decoration: none;
  border: none;
}

.footer-link:hover{
  color: var(--link-hover);
  text-decoration: none;
  border: none;
}


.release-card{
  font-size: 14px;
  line-height: 1.35;
}

.card-title{
  font-size: 20px;
  margin: 0 0 10px;
}

.card-meta,
.meta-pill{
  font-size: 14px;
  line-height: 1.35;
}

.card-link{
  font-size: 14px;
}

.credits{
  white-space: pre-line;
  margin-top: 6px;
  font-size: 14px;
  line-height: 1.35;
}

.releases-grid{
  align-items: start;
}

.release-card{
  align-self: start;
}

.card-links{
  margin-top: 12px;
  display: grid;
  gap: 6px;
}

.link-row{
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.float-link{
  opacity: 0;
}

.float-link.visible{
  opacity: 1;
  transition: opacity 180ms ease-out;
}

@media (max-width: 700px){
  .float-link{
    font-size: 13px;
  }
}

.hero{
  min-height: 100vh;
  min-height: 100svh;
}

.footer{
  background: var(--hero-bg);
  color: var(--hero-fg);
  padding: 28px 0 32px;
}

.footer-link{
  color: var(--hero-fg);
  text-decoration: none;
  padding-bottom: 2px;
}

.hero-title{
  display: inline-block;
  transform-origin: center;
}

.hero-title.press{
  animation: titlePress 350ms cubic-bezier(.3,0,.7,1) forwards;
}

.hero-title.release{
  animation: titleRelease 150ms cubic-bezier(.2,0,.8,1);
}

@keyframes titlePress{
  0%   { transform: scaleX(1) scaleY(1); }
  100% { transform: scaleX(1.28) scaleY(0.78); }
}

@keyframes titleRelease{
  0%   { transform: scaleX(1.28) scaleY(0.78); }
  45%  { transform: scaleX(0.92) scaleY(1.12); }
  75%  { transform: scaleX(1.06) scaleY(0.95); }
  100% { transform: scaleX(1) scaleY(1); }
}

.hero-title,
.releases-title{
  -webkit-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
  -webkit-tap-highlight-color: transparent;
}

.archive-page{
  background: #000;
  color: #fff;
  min-height: 100vh;
  padding: 80px 0;
}

.archive-inner{
  width: min(1100px, calc(100% - 44px));
  margin: 0 auto;
}

.archive-page-title{
  margin: 0 0 40px;
  letter-spacing: 0.01em;
  font-size: 22px;
  font-weight: 700;
}

.back-link{
  text-decoration: none;
  color: #fff;
}

.back-link:hover{
  color: var(--accent);
}

.archive-title{
  margin: 0 0 24px;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.archive-links{
  display: flex;
  text-decoration: none;
  flex-direction: column;
  gap: 12px;
}

.archive-links a{
  color: #fff;
  text-decoration: none;
  border-bottom: 1px solid rgba(0,0,0,.25);
  padding-bottom: 4px;
  width: fit-content;
  font-size: 16px;
}

.archive-links a:hover{
  color: var(--accent);
  text-decoration: none;
}

.archive-page-title,
.archive-page-title a{
  -webkit-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
  -webkit-tap-highlight-color: transparent;
}