:root {
  --black: #030101;
  --charcoal: #0b0808;
  --ash: #171414;
  --smoke: #aaa39b;
  --white-hot: #f4eee6;
  --chrome: #c9c2b6;
  --steel: #706d69;
  --blood: #7a0505;
  --red: #d11111;
  --ember: #ff3c0d;
  --flame: #ff7b1a;
  --gold: #b8792a;
  --ice: #e6f2ff;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 5rem;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--white-hot);
  background:
    radial-gradient(circle at 50% 0%, rgba(209, 17, 17, 0.2), transparent 34rem),
    linear-gradient(180deg, var(--black), #080000 42%, var(--black));
  cursor: url("assets/controller-cursor.svg") 12 12, auto;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    radial-gradient(circle at 18% 24%, rgba(255, 61, 13, 0.17), transparent 19rem),
    radial-gradient(circle at 82% 64%, rgba(209, 17, 17, 0.18), transparent 20rem);
  background-size: 18px 18px, 18px 18px, auto, auto;
  mix-blend-mode: screen;
  opacity: 0.6;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    repeating-linear-gradient(
      0deg,
      rgba(255, 255, 255, 0.04) 0,
      rgba(255, 255, 255, 0.04) 1px,
      transparent 1px,
      transparent 5px
    );
  opacity: 0.13;
}

a,
button {
  cursor: url("assets/controller-cursor.svg") 12 12, pointer;
}

a {
  color: inherit;
  text-decoration: none;
}

img,
video {
  display: block;
  max-width: 100%;
}

.controller-cursor {
  position: fixed;
  left: 0;
  top: 0;
  width: 56px;
  height: 42px;
  z-index: 9999;
  pointer-events: none;
  opacity: 0;
  transform: translate3d(-50%, -50%, 0) rotate(-8deg) scale(0.92);
  transition: opacity 160ms ease, transform 160ms ease;
  filter: drop-shadow(0 0 10px rgba(255, 60, 13, 0.75));
}

.controller-cursor.is-visible {
  opacity: 1;
}

.controller-cursor.is-hovering {
  transform: translate3d(-50%, -50%, 0) rotate(6deg) scale(1.08);
}

.controller-cursor.is-down {
  transform: translate3d(-50%, -50%, 0) rotate(-2deg) scale(0.88);
}

.controller-cursor svg {
  width: 100%;
  height: 100%;
}

.controller-body {
  fill: #050303;
  stroke: var(--chrome);
  stroke-width: 4;
}

.controller-shine {
  fill: none;
  stroke: rgba(255, 255, 255, 0.6);
  stroke-linecap: round;
  stroke-width: 3;
}

.controller-cross,
.controller-button {
  fill: var(--red);
  stroke: var(--white-hot);
  stroke-width: 2;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.2rem;
  background: linear-gradient(180deg, rgba(3, 1, 1, 0.92), rgba(3, 1, 1, 0.45));
  border-bottom: 1px solid rgba(244, 238, 230, 0.12);
  backdrop-filter: blur(10px);
}

.brand {
  flex: 0 0 auto;
  color: var(--white-hot);
  font-family: "Arial Black", Impact, sans-serif;
  font-size: 1.05rem;
  letter-spacing: 0.24em;
  text-shadow: 0 0 16px rgba(255, 60, 13, 0.8);
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.5rem;
  overflow-x: auto;
  scrollbar-width: none;
}

.main-nav::-webkit-scrollbar {
  display: none;
}

.main-nav a {
  flex: 0 0 auto;
  padding: 0.65rem 0.8rem;
  color: var(--chrome);
  border: 1px solid rgba(244, 238, 230, 0.12);
  background: rgba(10, 7, 7, 0.58);
  font-family: "Arial Black", Impact, sans-serif;
  font-size: 0.74rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  color: var(--white-hot);
  border-color: var(--ember);
  transform: translateY(-2px);
  outline: none;
}

.hero {
  position: relative;
  display: grid;
  min-height: 100svh;
  isolation: isolate;
  overflow: hidden;
  padding: 8rem 1.2rem 5rem;
}

.hero-art,
.hero-vignette,
.scanlines,
.flame-bed,
.album-backdrop {
  position: absolute;
  inset: 0;
}

.hero-art {
  z-index: -5;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(1.2) contrast(1.15) brightness(0.78);
}

.hero-vignette {
  z-index: -4;
  background:
    radial-gradient(circle at 50% 42%, rgba(3, 1, 1, 0.1), rgba(3, 1, 1, 0.6) 44%, rgba(3, 1, 1, 0.9) 80%),
    linear-gradient(90deg, rgba(3, 1, 1, 0.82), transparent 34%, rgba(3, 1, 1, 0.72));
}

.scanlines {
  z-index: -3;
  background:
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.08) 0 1px, transparent 1px 4px),
    repeating-linear-gradient(90deg, rgba(255, 60, 13, 0.05) 0 1px, transparent 1px 15px);
  opacity: 0.28;
  mix-blend-mode: overlay;
}

.hero-content {
  width: min(100%, var(--max));
  margin: auto;
  padding-top: 2rem;
}

.eyebrow,
.level {
  margin: 0 0 0.8rem;
  color: var(--flame);
  font-family: "Arial Black", Impact, sans-serif;
  font-size: 0.86rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  text-shadow: 0 0 14px rgba(255, 60, 13, 0.9);
}

.hero h1 {
  max-width: 8ch;
  margin: 0;
  font-family: "Arial Black", Impact, sans-serif;
  font-size: 8.2rem;
  line-height: 0.78;
  text-transform: uppercase;
  color: var(--white-hot);
  -webkit-text-stroke: 2px #170909;
  text-shadow:
    0 5px 0 #280000,
    0 10px 0 #7a0505,
    0 0 34px rgba(255, 60, 13, 0.95);
}

.hero-copy {
  max-width: 42rem;
  margin: 2rem 0 0;
  color: var(--chrome);
  font-family: "Trebuchet MS", Arial, sans-serif;
  font-size: 1.08rem;
  font-weight: 700;
  line-height: 1.65;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2rem;
}

.button,
.platforms a,
.social-grid a {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  color: var(--white-hot);
  border: 2px solid rgba(244, 238, 230, 0.18);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0)),
    rgba(8, 4, 4, 0.8);
  box-shadow:
    inset 0 0 0 1px rgba(0, 0, 0, 0.7),
    0 12px 28px rgba(0, 0, 0, 0.36);
  font-family: "Arial Black", Impact, sans-serif;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  overflow: hidden;
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.button {
  padding: 0.95rem 1rem;
  font-size: 0.82rem;
}

.button::after,
.platforms a::after,
.social-grid a::after {
  content: "";
  position: absolute;
  inset: auto -20% -40% -20%;
  height: 70%;
  background: radial-gradient(ellipse at center, rgba(255, 60, 13, 0.5), transparent 68%);
  opacity: 0;
  transition: opacity 160ms ease;
}

.button:hover,
.button:focus-visible,
.platforms a:hover,
.platforms a:focus-visible,
.social-grid a:hover,
.social-grid a:focus-visible {
  transform: translateY(-3px);
  border-color: var(--flame);
  box-shadow:
    inset 0 0 0 1px rgba(0, 0, 0, 0.86),
    0 14px 34px rgba(255, 60, 13, 0.22);
  outline: none;
}

.button:hover::after,
.button:focus-visible::after,
.platforms a:hover::after,
.platforms a:focus-visible::after,
.social-grid a:hover::after,
.social-grid a:focus-visible::after {
  opacity: 1;
}

.button-red {
  border-color: rgba(255, 60, 13, 0.78);
  background:
    linear-gradient(135deg, rgba(255, 123, 26, 0.8), rgba(122, 5, 5, 0.96)),
    var(--blood);
}

.button-dark {
  border-color: rgba(201, 194, 182, 0.42);
}

.button-ice {
  color: var(--black);
  border-color: rgba(230, 242, 255, 0.86);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(172, 170, 166, 0.9)),
    var(--ice);
}

.flame-bed {
  z-index: -2;
  top: auto;
  height: 34%;
  background:
    radial-gradient(ellipse at 15% 100%, rgba(255, 123, 26, 0.56), transparent 48%),
    radial-gradient(ellipse at 46% 100%, rgba(209, 17, 17, 0.72), transparent 58%),
    radial-gradient(ellipse at 80% 100%, rgba(255, 60, 13, 0.42), transparent 45%),
    linear-gradient(0deg, rgba(255, 60, 13, 0.32), transparent 72%);
  filter: blur(1px);
  animation: flamePulse 3.4s ease-in-out infinite alternate;
}

.release-strip {
  position: relative;
  overflow: hidden;
  overflow: clip;
  border-block: 1px solid rgba(244, 238, 230, 0.16);
  background:
    linear-gradient(90deg, rgba(122, 5, 5, 0.5), rgba(3, 1, 1, 0.94), rgba(255, 60, 13, 0.42)),
    var(--black);
  contain: paint;
}

.ticker {
  display: flex;
  width: max-content;
  min-width: 100%;
  gap: 2.4rem;
  padding: 0.85rem 1rem;
  color: var(--chrome);
  font-family: "Arial Black", Impact, sans-serif;
  font-size: 0.9rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  animation: ticker 28s linear infinite;
}

.ticker span {
  white-space: nowrap;
}

.album {
  position: relative;
  min-height: 100svh;
  padding: 7rem 1.2rem;
  isolation: isolate;
  overflow: hidden;
  border-bottom: 1px solid rgba(244, 238, 230, 0.1);
}

.album-backdrop {
  z-index: -4;
}

.album-backdrop img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.32;
  filter: saturate(1.24) contrast(1.15);
}

.album::before,
.album::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.album::before {
  z-index: -3;
  background:
    linear-gradient(90deg, rgba(3, 1, 1, 0.94), rgba(3, 1, 1, 0.68), rgba(3, 1, 1, 0.94)),
    radial-gradient(circle at 50% 100%, rgba(255, 60, 13, 0.34), transparent 36rem);
}

.album::after {
  z-index: -2;
  background:
    repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.045) 0 1px, transparent 1px 13px),
    linear-gradient(0deg, rgba(255, 60, 13, 0.16), transparent 38%);
  mix-blend-mode: overlay;
}

.album-inner,
.social-section {
  position: relative;
  z-index: 1;
  display: grid;
  width: min(100%, var(--max));
  margin: 0 auto;
  align-items: center;
  gap: 3rem;
}

.album-inner {
  grid-template-columns: minmax(0, 1.08fr) minmax(20rem, 0.92fr);
}

.album-inner-reverse {
  grid-template-columns: minmax(20rem, 0.92fr) minmax(0, 1.08fr);
}

.album-inner-reverse .album-media {
  order: 2;
}

.album-media {
  position: relative;
  border: 2px solid rgba(244, 238, 230, 0.22);
  background: #060202;
  box-shadow:
    0 0 0 8px rgba(3, 1, 1, 0.66),
    0 24px 80px rgba(0, 0, 0, 0.62),
    0 0 42px rgba(255, 60, 13, 0.22);
  overflow: hidden;
}

.album-media::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(transparent, rgba(0, 0, 0, 0.44)),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.06) 0 1px, transparent 1px 4px);
  mix-blend-mode: overlay;
}

.album-media video {
  width: 100%;
  aspect-ratio: 16 / 9;
  height: auto;
  object-fit: cover;
}

.album-copy {
  min-width: 0;
}

.album-copy h2,
.social-copy h2 {
  margin: 0;
  font-family: "Arial Black", Impact, sans-serif;
  font-size: 5rem;
  line-height: 0.9;
  text-transform: uppercase;
  color: var(--white-hot);
  -webkit-text-stroke: 1px rgba(3, 1, 1, 0.85);
  text-shadow:
    0 4px 0 rgba(122, 5, 5, 0.95),
    0 0 24px rgba(255, 60, 13, 0.76);
}

.album-diamond .album-copy h2,
.album-diamond .level {
  color: var(--ice);
  text-shadow:
    0 4px 0 rgba(3, 1, 1, 0.95),
    0 0 26px rgba(230, 242, 255, 0.48),
    0 0 32px rgba(255, 123, 26, 0.48);
}

.album-copy p:not(.level),
.social-copy p:not(.eyebrow) {
  max-width: 38rem;
  margin: 1.25rem 0 0;
  color: var(--chrome);
  font-family: "Trebuchet MS", Arial, sans-serif;
  font-size: 1.02rem;
  font-weight: 700;
  line-height: 1.7;
}

.platforms {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.7rem;
  margin-top: 1.6rem;
}

.platforms a {
  min-width: 0;
  padding: 0.82rem 0.8rem;
  font-size: 0.76rem;
  text-align: center;
}

.album-red .platforms a:nth-child(1),
.album-red .platforms a:nth-child(4),
.album-black .platforms a:nth-child(2),
.album-diamond .platforms a:nth-child(3) {
  border-color: rgba(255, 60, 13, 0.72);
}

.social-section {
  grid-template-columns: minmax(17rem, 0.85fr) minmax(0, 1.15fr);
  padding: 7rem 1.2rem;
}

.social-section::before {
  content: "";
  position: absolute;
  inset: 2rem -1.2rem;
  z-index: -1;
  background:
    radial-gradient(circle at 18% 82%, rgba(255, 60, 13, 0.34), transparent 22rem),
    linear-gradient(135deg, rgba(122, 5, 5, 0.34), rgba(3, 1, 1, 0.68));
  border-block: 1px solid rgba(244, 238, 230, 0.12);
}

.social-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.8rem;
}

.social-grid a {
  min-height: 8.25rem;
  flex-direction: column;
  gap: 0.6rem;
  padding: 1rem;
  font-size: 0.78rem;
  text-align: center;
}

.social-grid span {
  display: grid;
  place-items: center;
  width: 3.2rem;
  height: 3.2rem;
  color: var(--black);
  background:
    linear-gradient(135deg, var(--white-hot), var(--chrome));
  border: 2px solid rgba(3, 1, 1, 0.8);
  box-shadow: 0 0 18px rgba(255, 60, 13, 0.28);
  font-size: 1rem;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.3rem 1.2rem;
  color: var(--steel);
  border-top: 1px solid rgba(244, 238, 230, 0.12);
  background: #020101;
  font-family: "Trebuchet MS", Arial, sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  color: var(--white-hot);
  font-family: "Arial Black", Impact, sans-serif;
  text-transform: uppercase;
}

@keyframes ticker {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@keyframes flamePulse {
  from {
    opacity: 0.7;
    transform: translateY(0) scaleY(0.96);
  }

  to {
    opacity: 1;
    transform: translateY(-8px) scaleY(1.05);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 1ms !important;
  }
}

@media (max-width: 980px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .main-nav {
    width: 100%;
    justify-content: flex-start;
  }

  .hero {
    padding-top: 10rem;
  }

  .hero h1 {
    font-size: 5.8rem;
  }

  .album-inner,
  .album-inner-reverse,
  .social-section {
    grid-template-columns: 1fr;
  }

  .album-inner-reverse .album-media {
    order: 0;
  }

  .album-copy h2,
  .social-copy h2 {
    font-size: 4rem;
  }

  .social-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 620px) {
  html {
    scroll-padding-top: 9rem;
  }

  .site-header {
    padding: 0.8rem;
  }

  .brand {
    font-size: 0.92rem;
  }

  .main-nav a {
    flex: 1 1 calc(50% - 0.4rem);
    padding: 0.56rem 0.64rem;
    font-size: 0.68rem;
    text-align: center;
  }

  .main-nav {
    flex-wrap: wrap;
    overflow: hidden;
  }

  .hero {
    min-height: 92svh;
    padding: 9.2rem 0.9rem 3.8rem;
  }

  .hero h1 {
    font-size: 3.65rem;
  }

  .hero-copy {
    font-size: 0.98rem;
  }

  .hero-actions,
  .platforms {
    grid-template-columns: 1fr;
    display: grid;
  }

  .ticker {
    width: 100%;
    min-width: 0;
    justify-content: center;
    gap: 1rem;
    animation: none;
    overflow: hidden;
  }

  .ticker span:nth-child(n + 2) {
    display: none;
  }

  .button,
  .platforms a {
    width: 100%;
  }

  .album {
    min-height: auto;
    padding: 5rem 0.9rem;
  }

  .album-inner {
    gap: 2rem;
  }

  .album-media {
    box-shadow:
      0 0 0 5px rgba(3, 1, 1, 0.66),
      0 18px 52px rgba(0, 0, 0, 0.62),
      0 0 28px rgba(255, 60, 13, 0.2);
  }

  .album-copy h2,
  .social-copy h2 {
    font-size: 2.9rem;
  }

  .social-section {
    padding: 5rem 0.9rem;
  }

  .social-section::before {
    inset: 2rem 0;
  }

  .social-grid {
    grid-template-columns: 1fr;
  }

  .social-grid a {
    min-height: 5.7rem;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (pointer: coarse) {
  body,
  a,
  button {
    cursor: auto;
  }

  .controller-cursor {
    display: none;
  }
}
