/* ============ BAD - 2026 Remastered (HTML/CSS/JS) ============ */
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Barlow:wght@300;400;500;600;700&family=Barlow+Condensed:wght@400;600;700&display=swap');

:root {
  --background: #0a0a0a;
  --foreground: #f2f2f2;
  --foreground-60: rgba(242, 242, 242, .6);
  --foreground-70: rgba(242, 242, 242, .7);
  --foreground-80: rgba(242, 242, 242, .8);
  --muted: #242424;
  --muted-foreground: #8c8c8c;
  --secondary: #1f1f1f;
  --border: rgba(255, 255, 255, .1);
  --primary: #eb1f1f;
  /* hsl(0 85% 50%) */
  --primary-foreground: #fff;
  --accent: #3366e6;

  --font-display: 'Bebas Neue', sans-serif;
  --font-condensed: 'Barlow Condensed', sans-serif;
  --font-body: 'Barlow', sans-serif;

  --radius: .75rem;
}

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

html {
  scroll-behavior: smooth
}

body {
  background: var(--background);
  color: var(--foreground);
  font-family: var(--font-body);
  overflow-x: hidden;
  min-height: 100vh;
  line-height: 1.5;
}

img {
  display: block;
  max-width: 100%;
  height: auto
}

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

button {
  font: inherit;
  cursor: pointer;
  border: none;
  background: none;
  color: inherit
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  font-weight: 400
}

/* ---------- Utility ---------- */
.text-condensed {
  font-family: var(--font-condensed)
}

.text-display {
  font-family: var(--font-display)
}

.neon-text-red {
  text-shadow:
    0 0 20px rgba(255, 0, 0, .6),
    0 0 60px rgba(255, 0, 0, .3),
    0 0 100px rgba(255, 0, 0, .15);
}

.neon-text-blue {
  text-shadow:
    0 0 20px rgba(80, 130, 255, .5),
    0 0 60px rgba(80, 130, 255, .2);
}

.glass-panel {
  background: rgba(31, 31, 31, .4);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: var(--radius);
}

.glass-panel-strong {
  background: rgba(31, 31, 31, .6);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255, 255, 255, .15);
  border-radius: var(--radius);
}

.glow-border-red {
  box-shadow:
    0 0 15px rgba(255, 0, 0, .2),
    inset 0 0 15px rgba(255, 0, 0, .05);
}

.smoke-bg {
  background:
    radial-gradient(ellipse at 50% 0%, rgba(102, 30, 30, .3) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 50%, rgba(30, 55, 102, .2) 0%, transparent 50%);
}

.section-padding {
  padding: 6rem 1.5rem
}

@media (min-width:768px) {
  .section-padding {
    padding: 8rem 3rem
  }
}

@media (min-width:1024px) {
  .section-padding {
    padding: 8rem 5rem
  }
}

.container {
  max-width: 72rem;
  margin: 0 auto
}

.container-sm {
  max-width: 64rem;
  margin: 0 auto
}

.container-xs {
  max-width: 56rem;
  margin: 0 auto
}

.section-header {
  text-align: center;
  margin-bottom: 4rem
}

.section-eyebrow {
  font-family: var(--font-condensed);
  font-size: .85rem;
  letter-spacing: .4em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 1rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 5rem);
  color: var(--foreground);
  line-height: 1;
}

/* Reveal on scroll */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity .8s ease, transform .8s ease
}

.reveal.in {
  opacity: 1;
  transform: translateY(0)
}

.reveal-l {
  transform: translateX(-30px)
}

.reveal-r {
  transform: translateX(30px)
}

.reveal-l.in,
.reveal-r.in {
  transform: translateX(0)
}

/* ============ NAVBAR ============ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  transition: background .5s, backdrop-filter .5s, box-shadow .5s, border-color .5s;
  background: transparent;
  border-bottom: 1px solid transparent;
}

.navbar.scrolled {
  background: rgba(10, 10, 10, .7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, .05);
  box-shadow: 0 4px 30px rgba(0, 0, 0, .4);
}

.nav-inner {
  max-width: 80rem;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 4rem;
  padding: 0 1.5rem;
}

@media (min-width:768px) {
  .nav-inner {
    height: 5rem;
    padding: 0 3rem
  }
}

.nav-logo {
  display: flex;
  align-items: center;
  filter: drop-shadow(0 0 12px rgba(255, 0, 0, .45))
}

.nav-logo img {
  height: 70px;
  width: auto;
  display: block
}

@media (min-width:768px) {
  .nav-logo img {
    height: 55px
  }
}

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

.nav-links {
  display: none;
  gap: 2rem;
  align-items: center
}

@media (min-width:768px) {
  .nav-links {
    display: flex
  }
}

.nav-link {
  position: relative;
  font-family: var(--font-condensed);
  font-size: .85rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--foreground-60);
  transition: color .3s;
  padding: .25rem 0;
}

.nav-link:hover {
  color: var(--foreground)
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  height: 1px;
  width: 100%;
  background: var(--primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s;
  box-shadow: 0 0 6px rgba(255, 0, 0, .5);
}

.nav-link:hover::after {
  transform: scaleX(1)
}

.nav-cta {
  font-family: var(--font-condensed);
  font-size: .75rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  padding: .7rem 1.5rem;
  border-radius: .5rem;
  background: rgba(235, 31, 31, .9);
  color: #fff;
  transition: background .3s, box-shadow .3s, transform .3s;
}

.nav-cta:hover {
  background: var(--primary);
  box-shadow: 0 0 20px rgba(255, 0, 0, .35)
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 1rem
}

.hamburger {
  display: flex;
  flex-direction: column;
  gap: 6px;
  width: 24px
}

@media (min-width:768px) {
  .hamburger {
    display: none
  }
}

.hamburger span {
  display: block;
  height: 1px;
  background: var(--foreground);
  transition: transform .3s, opacity .3s
}

.hamburger.open span:nth-child(1) {
  transform: translateY(3.5px) rotate(45deg)
}

.hamburger.open span:nth-child(2) {
  opacity: 0
}

.hamburger.open span:nth-child(3) {
  transform: translateY(-3.5px) rotate(-45deg)
}

@media (max-width:767px) {
  .nav-cta {
    display: none
  }
}

.mobile-menu {
  display: none;
  background: rgba(10, 10, 10, .92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, .05);
  padding: 1rem 1.5rem;
  flex-direction: column;
  gap: 1rem;
}

.mobile-menu.open {
  display: flex
}

.mobile-menu .nav-link {
  font-size: .95rem
}

.mobile-menu .nav-cta {
  display: inline-block;
  text-align: center;
  margin-top: .5rem
}

/* ============ HERO ============ */
.hero {
  position: relative;
  height: 100vh;
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover
}

.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 10, .5)
}

.hero-overlay-bottom {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent, var(--background));
  z-index: 1
}

.hero-overlay-top {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, transparent, var(--background));
  opacity: .6;
  z-index: 1
}

.hero-smoke {
  position: absolute;
  inset: 0;
  z-index: 1
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 1.5rem
}

.hero-eyebrow {
  font-family: var(--font-condensed);
  font-size: .95rem;
  letter-spacing: .4em;
  text-transform: uppercase;
  color: var(--muted-foreground);
  margin-bottom: 1rem;
  opacity: 0;
  transform: translateY(50px);
  animation: fadeUp .8s .2s forwards;
}

.hero-title {
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transform: scale(.8);
  animation: fadeScale 1s .4s cubic-bezier(.16, 1, .3, 1) forwards;
  filter: drop-shadow(0 0 30px rgba(255, 0, 0, .55)) drop-shadow(0 0 80px rgba(255, 0, 0, .35));
}

.hero-title img {
  width: clamp(280px, 60vw, 300px);
  height: auto;
  display: block;
}

.hero-sub {
  font-family: var(--font-condensed);
  font-size: 1.1rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--foreground-70);
  margin-top: 1rem;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp .8s .8s forwards;
}

@media (min-width:768px) {
  .hero-sub {
    font-size: 1.5rem
  }
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 3rem;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp .8s 1.2s forwards;
}

@media (min-width:640px) {
  .hero-buttons {
    flex-direction: row
  }
}

.btn {
  font-family: var(--font-condensed);
  font-size: 1rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  padding: 1rem 2.5rem;
  border-radius: var(--radius);
  transition: transform .3s, box-shadow .3s, background .3s, border-color .3s, color .3s;
}

.btn-primary {
  background: rgba(235, 31, 31, .9);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, .15);
  backdrop-filter: blur(24px);
}

.btn-primary:hover {
  background: var(--primary);
  box-shadow: 0 0 30px rgba(255, 0, 0, .4);
  transform: scale(1.05)
}

.btn-ghost {
  background: rgba(31, 31, 31, .4);
  color: var(--foreground-80);
  border: 1px solid rgba(255, 255, 255, .1);
  backdrop-filter: blur(16px);
}

.btn-ghost:hover {
  color: var(--foreground);
  border-color: rgba(255, 0, 0, .3);
  transform: scale(1.05)
}

.scroll-indicator {
  position: absolute;
  left: 50%;
  bottom: 2.5rem;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
  z-index: 2;
  animation: bob 2s infinite;
}

.scroll-indicator span {
  font-family: var(--font-condensed);
  font-size: .7rem;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--muted-foreground);
}

.scroll-indicator i {
  display: block;
  width: 1px;
  height: 2.5rem;
  background: linear-gradient(to bottom, var(--muted-foreground), transparent)
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0)
  }
}

@keyframes fadeScale {
  to {
    opacity: 1;
    transform: scale(1)
  }
}

@keyframes bob {

  0%,
  100% {
    transform: translate(-50%, 0)
  }

  50% {
    transform: translate(-50%, 10px)
  }
}

/* ============ PLAYER ============ */
.player-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
}

@media (min-width:768px) {
  .player-grid {
    grid-template-columns: 300px 1fr;
    gap: 3rem
  }
}

@media (min-width:1024px) {
  .player-grid {
    grid-template-columns: 360px 1fr
  }
}

.album-cover-wrap {
  position: relative;
  margin: 0 auto;
  max-width: 360px;
  width: 100%
}

.album-cover {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius)
}

.album-cover img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  transition: transform .7s
}

.album-cover:hover img {
  transform: scale(1.05)
}

.play-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(10, 10, 10, .3);
  opacity: 0;
  transition: opacity .3s;
}

.album-cover:hover .play-overlay {
  opacity: 1
}

.play-btn {
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  background: rgba(235, 31, 31, .9);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform .2s;
}

.play-btn:hover {
  transform: scale(1.1)
}

.play-btn svg {
  fill: #fff
}

.progress-card {
  margin-top: 1rem;
  padding: .75rem
}

.progress-meta {
  display: flex;
  justify-content: space-between;
  font-family: var(--font-condensed);
  font-size: .75rem;
  color: var(--muted-foreground);
  letter-spacing: .05em;
  margin-bottom: .5rem;
}

.progress-bar {
  height: 4px;
  background: var(--muted);
  border-radius: 9999px;
  overflow: hidden
}

.progress-fill {
  height: 100%;
  background: var(--primary);
  width: 0%;
  transition: width .2s linear;
  box-shadow: 0 0 8px rgba(255, 0, 0, .6)
}

.now-playing {
  font-family: var(--font-condensed);
  font-size: .95rem;
  letter-spacing: .05em;
  margin-top: .5rem;
  color: var(--foreground-80)
}

.tracklist-wrap {
  background: rgba(31, 31, 31, .4);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: var(--radius);
  overflow: hidden;
}

.tracklist-head {
  padding: 1rem 1rem .5rem;
  border-bottom: 1px solid var(--border)
}

.tracklist-head h2 {
  font-size: 1.875rem;
  color: var(--primary)
}

.tracklist-head p {
  font-family: var(--font-condensed);
  font-size: .85rem;
  letter-spacing: .05em;
  color: var(--muted-foreground)
}

.track {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: .85rem 1rem;
  text-align: left;
  width: 100%;
  border-bottom: 1px solid rgba(255, 255, 255, .05);
  transition: background .3s, transform .3s;
}

.track:last-child {
  border-bottom: none
}

.track:hover {
  background: rgba(235, 31, 31, .05);
  transform: translateX(4px)
}

.track.active {
  background: rgba(235, 31, 31, .1)
}

.track-num {
  font-family: var(--font-condensed);
  font-size: .85rem;
  width: 1.5rem;
  color: var(--muted-foreground)
}

.track.active .track-num {
  color: var(--primary)
}

.track-title {
  flex: 1;
  font-family: var(--font-condensed);
  font-size: 1rem;
  letter-spacing: .02em;
  color: var(--foreground-80)
}

.track.active .track-title {
  color: var(--primary)
}

.track-duration {
  font-family: var(--font-condensed);
  font-size: .85rem;
  color: var(--muted-foreground)
}

.featured-tag {
  display: inline-block;
  margin-left: .5rem;
  font-size: .625rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  background: rgba(235, 31, 31, .2);
  color: var(--primary);
  padding: .15rem .5rem;
  border-radius: 9999px;
}

/* ============ ABOUT ============ */
.about-wrap {
  position: relative;
  overflow: hidden
}

.about-smoke {
  position: absolute;
  inset: 0;
  opacity: .5;
  z-index: 0
}

.about-grid {
  display: grid;
  gap: 3rem;
  position: relative;
  z-index: 1
}

@media (min-width:768px) {
  .about-grid {
    grid-template-columns: 1fr 1fr;
    gap: 4rem
  }
}

.about-text p {
  font-size: 1.05rem;
  color: var(--foreground-70);
  line-height: 1.65;
  margin-bottom: 1.25rem
}

.stat {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1.5rem;
  margin-bottom: 1.25rem;
  transition: border-color .3s;
}

.stat:hover {
  border-color: rgba(235, 31, 31, .3)
}

.stat-value {
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: var(--primary)
}

@media (min-width:768px) {
  .stat-value {
    font-size: 3rem
  }
}

.stat-label {
  font-family: var(--font-condensed);
  font-size: 1.05rem;
  letter-spacing: .05em;
  color: var(--foreground)
}

.stat-sub {
  font-size: .85rem;
  color: var(--muted-foreground)
}

/* ============ GALLERY ============ */
.gallery-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem
}

@media (min-width:768px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr)
  }
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  cursor: pointer;
  min-height: 250px;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 250px;
  transition: transform .7s
}

.gallery-item:hover img {
  transform: scale(1.1)
}

.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: var(--radius);
  border: 1px solid transparent;
  transition: border-color .5s;
  pointer-events: none;
}

.gallery-item:hover::after {
  border-color: rgba(235, 31, 31, .3)
}

@media (min-width:768px) {
  .gallery-item:nth-child(1) {
    grid-column: span 2
  }

  .gallery-item:nth-child(2) {
    grid-row: span 2
  }
}

/* ============ TIMELINE ============ */
.timeline {
  position: relative
}

.timeline-line {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 1px;
  left: 1.5rem;
  background: linear-gradient(to bottom, rgba(235, 31, 31, .6), rgba(235, 31, 31, .2), transparent);
}

@media (min-width:768px) {
  .timeline-line {
    left: 50%;
    transform: translateX(-1px)
  }
}

.milestone {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  margin-bottom: 3rem
}

.milestone-dot {
  position: absolute;
  left: 1.5rem;
  transform: translateX(-50%);
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--primary);
  box-shadow: 0 0 12px rgba(255, 0, 0, .5);
  margin-top: 2rem;
}

@media (min-width:768px) {
  .milestone-dot {
    left: 50%
  }
}

.milestone-card {
  margin-left: 3rem;
  padding: 1.25rem;
  flex: 1;
}

@media (min-width:768px) {
  .milestone {
    flex-direction: row
  }

  .milestone.right {
    flex-direction: row-reverse
  }

  .milestone-card {
    margin-left: 0;
    flex: 1;
    padding: 1.5rem;
    transition: border-color .5s, box-shadow .5s
  }

  .milestone-card:hover {
    border-color: rgba(235, 31, 31, .3);
    box-shadow: 0 0 15px rgba(255, 0, 0, .2)
  }

  .milestone .spacer {
    flex: 1
  }

  .milestone:not(.right) .milestone-card {
    margin-right: 3rem;
    text-align: right
  }

  .milestone.right .milestone-card {
    margin-left: 3rem;
    text-align: left
  }
}

.milestone-year {
  font-family: var(--font-display);
  font-size: 1.875rem;
  color: var(--primary)
}

.milestone-title {
  font-family: var(--font-condensed);
  font-size: 1.15rem;
  letter-spacing: .05em;
  margin-top: .25rem;
  color: var(--foreground)
}

.milestone-desc {
  font-size: .9rem;
  color: var(--muted-foreground);
  margin-top: .5rem;
  line-height: 1.6
}


/* ============ FOOTER ============ */
.site-footer {
  padding: 6rem 1.5rem 2rem;
  border-top: 1px solid var(--border);
  position: relative
}

@media (min-width:768px) {
  .site-footer {
    padding: 8rem 3rem 2rem
  }
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  margin-bottom: 4rem;
  max-width: 72rem;
  margin-left: auto;
  margin-right: auto
}

@media (min-width:768px) {
  .footer-grid {
    grid-template-columns: repeat(3, 1fr)
  }
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 2.25rem;
  color: var(--primary);
  text-shadow: 0 0 20px rgba(255, 0, 0, .6), 0 0 60px rgba(255, 0, 0, .3)
}

.footer-blurb {
  font-size: .9rem;
  color: var(--muted-foreground);
  margin-top: .75rem;
  line-height: 1.6
}

.footer-h {
  font-family: var(--font-condensed);
  font-size: .85rem;
  letter-spacing: .3em;
  text-transform: uppercase;
  margin-bottom: 1rem;
  color: var(--foreground)
}

.stream-icons {
  display: flex;
  gap: 1rem
}

.stream-icons a {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color .3s;
}

.stream-icons svg {
  width: 1.25rem;
  height: 1.25rem;
  fill: var(--muted-foreground);
  transition: fill .3s
}

.stream-icons a:hover {
  border-color: rgba(235, 31, 31, .4)
}

.stream-icons a:hover svg {
  fill: var(--primary)
}

.socials {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem
}

.socials a {
  font-family: var(--font-condensed);
  font-size: .9rem;
  letter-spacing: .05em;
  color: var(--muted-foreground);
  transition: color .3s
}

.socials a:hover {
  color: var(--primary)
}

.footer-bottom {
  max-width: 72rem;
  margin: 0 auto;
  border-top: 1px solid var(--border);
  padding-top: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

@media (min-width:768px) {
  .footer-bottom {
    flex-direction: row
  }
}

.footer-bottom p {
  font-size: .75rem;
  color: var(--muted-foreground)
}