:root {
  --bg: #07080c;
  --bg-2: #0d1119;
  --panel: #111722;
  --panel-2: #171e2b;
  --text: #f7f8ff;
  --muted: #b9c0d2;
  --line: rgba(255, 255, 255, 0.14);
  --cyan: #00e7ff;
  --lime: #f5ff4f;
  --pink: #ff4fa3;
  --orange: #ff9f1c;
  --green: #7cff6b;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
  --radius: 8px;
  --font: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  font-family: var(--font);
  letter-spacing: 0;
  background:
    linear-gradient(120deg, rgba(0, 231, 255, 0.1), transparent 28%),
    linear-gradient(300deg, rgba(255, 79, 163, 0.1), transparent 30%),
    linear-gradient(180deg, #07080c 0%, #0d1119 52%, #07080c 100%);
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.85), transparent 82%);
}

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

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

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

button,
input {
  font: inherit;
}

button {
  color: inherit;
}

.shell {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 16px;
  z-index: 30;
  transform: translateY(-160%);
  padding: 10px 14px;
  border-radius: var(--radius);
  background: var(--lime);
  color: #080a10;
  font-weight: 900;
}

.skip-link:focus {
  transform: translateY(0);
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid var(--line);
  background: rgba(7, 8, 12, 0.82);
  backdrop-filter: blur(18px);
}

.site-header__inner {
  width: min(1240px, calc(100% - 28px));
  min-height: 76px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex: 0 0 auto;
}

.brand__logo {
  width: 66px;
  height: 66px;
  object-fit: contain;
  border-radius: 50%;
  filter:
    drop-shadow(0 0 10px rgba(0, 231, 255, 0.42))
    drop-shadow(0 0 18px rgba(255, 79, 163, 0.28));
}

.brand__text {
  max-width: 130px;
  color: var(--text);
  font-size: 0.9rem;
  font-weight: 900;
  line-height: 1.05;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.site-nav a,
.footer-links a,
.social-links a,
.text-link {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.site-nav a {
  padding: 0 14px;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.footer-links a:hover,
.social-links a:hover,
.text-link:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.08);
  outline: none;
}

.menu-toggle {
  width: 48px;
  height: 48px;
  display: none;
  place-items: center;
  gap: 5px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.07);
}

.menu-toggle__bar {
  width: 22px;
  height: 2px;
  display: block;
  background: var(--text);
}

.hero {
  position: relative;
  min-height: 82svh;
  padding: 88px 0 58px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 10px;
  background: linear-gradient(90deg, var(--lime), var(--cyan), var(--pink), var(--orange));
}

.hero__grid {
  display: grid;
  grid-template-columns: 1fr 0.82fr;
  gap: 48px;
  align-items: center;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--lime);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  letter-spacing: 0;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 0.98;
  font-weight: 950;
}

h1 {
  max-width: 780px;
  font-size: 4.8rem;
  text-transform: uppercase;
  text-shadow: 0 0 30px rgba(0, 231, 255, 0.2);
}

h2 {
  font-size: 3.2rem;
  text-transform: uppercase;
}

h3 {
  font-size: 1.35rem;
}

p {
  line-height: 1.65;
}

.hero__tagline {
  width: fit-content;
  max-width: 100%;
  margin: 22px 0 0;
  padding: 10px 14px;
  border: 1px solid rgba(245, 255, 79, 0.38);
  border-radius: var(--radius);
  color: var(--lime);
  background: rgba(245, 255, 79, 0.08);
  font-weight: 900;
}

.hero__intro {
  max-width: 620px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 1.1rem;
}

.hero__actions,
.featured-release__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 18px;
  border: 1px solid rgba(245, 255, 79, 0.6);
  border-radius: var(--radius);
  background: var(--lime);
  color: #07080c;
  box-shadow: 0 0 24px rgba(245, 255, 79, 0.2);
  font-size: 0.92rem;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  outline: none;
}

.button--ghost {
  border-color: rgba(0, 231, 255, 0.48);
  background: rgba(0, 231, 255, 0.08);
  color: var(--text);
  box-shadow: none;
}

.button--hot {
  border-color: rgba(255, 79, 163, 0.6);
  background: var(--pink);
  color: #080a10;
  box-shadow: 0 0 24px rgba(255, 79, 163, 0.22);
}

.button--small {
  min-height: 42px;
  padding: 0 14px;
  font-size: 0.82rem;
}

.button--wide {
  min-width: 230px;
}

.button--disabled {
  opacity: 0.58;
  cursor: not-allowed;
  box-shadow: none;
}

.button--disabled:hover {
  transform: none;
}

.hero__art-wrap {
  position: relative;
  isolation: isolate;
  aspect-ratio: 1;
  border-radius: var(--radius);
  transform: rotate(1.5deg);
}

.hero__art-wrap::before {
  content: "";
  position: absolute;
  inset: -12px;
  z-index: -1;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--lime), var(--cyan), var(--pink), var(--orange));
  opacity: 0.88;
  animation: pulse-frame 4s ease-in-out infinite;
}

.hero__art {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero__sticker {
  position: absolute;
  right: -10px;
  bottom: 18px;
  max-width: calc(100% - 20px);
  padding: 12px 14px;
  border-radius: var(--radius);
  background: #07080c;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--cyan);
  font-size: 0.86rem;
  font-weight: 950;
  text-transform: uppercase;
}

.section {
  padding: 82px 0;
}

.section--featured {
  background:
    linear-gradient(90deg, rgba(245, 255, 79, 0.08), transparent),
    rgba(255, 255, 255, 0.025);
  border-bottom: 1px solid var(--line);
}

.section--videos {
  background: rgba(0, 231, 255, 0.035);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.section--gallery {
  background: rgba(255, 159, 28, 0.035);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.section-heading {
  margin-bottom: 28px;
}

.section-heading h2 {
  max-width: 820px;
}

.section-heading--row {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
}

.featured-release {
  display: grid;
  grid-template-columns: 0.82fr 1fr;
  gap: 46px;
  align-items: center;
}

.featured-release__art img,
.song-hero__art img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.featured-release__content p,
.song-hero__content p,
.about-copy,
.tiktok-band p {
  color: var(--muted);
}

.song-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 18px 0;
}

.song-meta span {
  min-height: 32px;
  display: inline-flex;
  align-items: center;
  padding: 0 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--muted);
  background: rgba(255, 255, 255, 0.045);
  font-size: 0.85rem;
  font-weight: 800;
}

.song-meta--large span {
  min-height: 38px;
  color: var(--text);
}

.player {
  width: 100%;
  min-height: 78px;
  display: grid;
  grid-template-columns: 86px minmax(0, 1fr) 128px;
  gap: 14px;
  align-items: center;
  padding: 12px;
  border: 1px solid rgba(0, 231, 255, 0.2);
  border-radius: var(--radius);
  background: rgba(7, 8, 12, 0.72);
}

.player--featured {
  margin-top: 24px;
  border-color: rgba(245, 255, 79, 0.42);
  background: rgba(7, 8, 12, 0.9);
}

.player__button {
  width: 74px;
  height: 54px;
  border: 0;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--lime), var(--cyan));
  color: #07080c;
  font-size: 0.8rem;
  font-weight: 950;
  cursor: pointer;
}

.player__button:hover,
.player__button:focus-visible {
  outline: 2px solid var(--text);
  outline-offset: 2px;
}

.player__timeline {
  min-width: 0;
}

.player__progress,
.player__volume input {
  width: 100%;
  accent-color: var(--lime);
}

.player__time {
  display: flex;
  justify-content: space-between;
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
}

.player__volume {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 950;
}

.audio-missing {
  color: var(--muted);
}

.music-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.music-grid--compact {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.song-card,
.video-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(17, 23, 34, 0.78);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.28);
  overflow: hidden;
}

.song-card {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
}

.song-card__art-link {
  min-height: 100%;
  background: var(--panel-2);
}

.song-card__art {
  width: 100%;
  height: 100%;
  min-height: 290px;
  object-fit: cover;
}

.song-card__body,
.video-card__body {
  min-width: 0;
  padding: 22px;
}

.song-card h3 a:hover {
  color: var(--cyan);
}

.song-card p,
.video-card p {
  color: var(--muted);
}

.song-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.text-link {
  padding: 0 10px;
  border: 1px solid var(--line);
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.video-embed {
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #07080c;
}

.video-embed iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.video-poster {
  position: relative;
  width: 100%;
  height: 100%;
  display: block;
  padding: 0;
  border: 0;
  background: #07080c;
  cursor: pointer;
  overflow: hidden;
}

.video-poster img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 240ms ease;
}

.video-poster:hover img,
.video-poster:focus-visible img {
  transform: scale(1.04);
}

.video-poster:focus-visible {
  outline: 3px solid var(--lime);
  outline-offset: -3px;
}

.video-poster__play {
  position: absolute;
  left: 14px;
  bottom: 14px;
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  padding: 0 12px;
  border-radius: var(--radius);
  background: var(--lime);
  color: #07080c;
  font-size: 0.8rem;
  font-weight: 950;
}

.tiktok-band {
  background:
    linear-gradient(90deg, rgba(255, 79, 163, 0.12), rgba(0, 231, 255, 0.08)),
    rgba(255, 255, 255, 0.03);
}

.tiktok-band__inner,
.follow-section__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.about-grid,
.lyrics-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 40px;
}

.about-copy {
  max-width: 720px;
  font-size: 1.08rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.gallery-card {
  position: relative;
  aspect-ratio: 1;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  overflow: hidden;
  cursor: pointer;
}

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 220ms ease;
}

.gallery-card:hover img,
.gallery-card:focus-visible img {
  transform: scale(1.04);
}

.gallery-card:focus-visible {
  outline: 3px solid var(--cyan);
  outline-offset: 3px;
}

.gallery-card span {
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 10px;
  display: grid;
  gap: 3px;
  padding: 10px;
  border-radius: var(--radius);
  background: rgba(7, 8, 12, 0.8);
  color: var(--text);
  text-align: left;
}

.gallery-card small {
  color: var(--muted);
  font-weight: 800;
}

.gallery-dialog {
  width: min(900px, calc(100% - 24px));
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #080a10;
  color: var(--text);
  box-shadow: var(--shadow);
}

.gallery-dialog::backdrop {
  background: rgba(0, 0, 0, 0.78);
}

.gallery-dialog img {
  width: 100%;
  max-height: 74vh;
  object-fit: contain;
  border-radius: var(--radius);
}

.gallery-dialog p {
  margin: 12px 0 0;
  font-weight: 900;
}

.gallery-dialog__close {
  min-height: 40px;
  margin-bottom: 10px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  cursor: pointer;
}

.follow-section {
  background: rgba(124, 255, 107, 0.035);
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.social-links a {
  min-width: 118px;
  padding: 0 14px;
  border: 1px solid rgba(0, 231, 255, 0.25);
  background: rgba(0, 231, 255, 0.06);
}

.site-footer {
  padding: 42px 0 26px;
  border-top: 1px solid var(--line);
  background: #07080c;
}

.site-footer__grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.footer-brand {
  font-size: 1rem;
  font-weight: 950;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
}

.footer-links a {
  padding: 0 10px;
}

.site-footer__bottom {
  margin-top: 24px;
  color: var(--muted);
  font-size: 0.86rem;
}

.song-page .site-header + main {
  margin-top: 0;
}

.song-hero {
  padding-top: 86px;
}

.song-hero__grid {
  display: grid;
  grid-template-columns: 0.78fr 1fr;
  gap: 46px;
  align-items: center;
}

.lyrics-section {
  background: rgba(255, 255, 255, 0.025);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.lyrics-copy {
  min-width: 0;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(7, 8, 12, 0.72);
}

.lyrics-copy pre {
  margin: 0;
  color: var(--text);
  font-family: var(--font);
  font-size: 1rem;
  line-height: 1.75;
  white-space: pre-wrap;
}

@keyframes pulse-frame {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
    filter: saturate(1);
  }

  50% {
    transform: translate3d(0, -4px, 0);
    filter: saturate(1.3);
  }
}

@media (max-width: 980px) {
  h1 {
    font-size: 3.6rem;
  }

  h2 {
    font-size: 2.55rem;
  }

  .hero__grid,
  .featured-release,
  .about-grid,
  .lyrics-grid,
  .song-hero__grid {
    grid-template-columns: 1fr;
  }

  .hero__grid {
    gap: 34px;
  }

  .hero__art-wrap,
  .featured-release__art,
  .song-hero__art {
    max-width: 560px;
  }

  .music-grid,
  .music-grid--compact,
  .video-grid,
  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .song-card {
    grid-template-columns: 1fr;
  }

  .song-card__art {
    min-height: 0;
    aspect-ratio: 1;
  }
}

@media (max-width: 760px) {
  .site-header__inner {
    min-height: 68px;
  }

  .brand__logo {
    width: 54px;
    height: 54px;
  }

  .brand__text {
    display: none;
  }

  .menu-toggle {
    display: grid;
  }

  .site-nav {
    position: absolute;
    left: 14px;
    right: 14px;
    top: 76px;
    display: none;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(7, 8, 12, 0.96);
  }

  .site-nav.is-open {
    display: grid;
  }

  .site-nav a {
    justify-content: flex-start;
  }

  .hero {
    min-height: auto;
    padding: 54px 0 42px;
  }

  h1 {
    font-size: 3rem;
  }

  h2 {
    font-size: 2.2rem;
  }

  .hero__intro {
    font-size: 1rem;
  }

  .hero__actions,
  .featured-release__actions,
  .tiktok-band__inner,
  .follow-section__inner,
  .site-footer__grid,
  .section-heading--row {
    align-items: stretch;
    flex-direction: column;
  }

  .button,
  .button--wide {
    width: 100%;
  }

  .section {
    padding: 58px 0;
  }

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

  .player__button {
    width: 100%;
  }

  .player__volume {
    width: 100%;
  }

  .music-grid,
  .music-grid--compact,
  .video-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .song-card__body,
  .video-card__body {
    padding: 18px;
  }
}

@media (max-width: 420px) {
  h1 {
    font-size: 2.55rem;
  }

  h2 {
    font-size: 1.9rem;
  }

  .hero__tagline {
    width: 100%;
  }
}

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