:root {
  --rock-red: #d90429;
  --rock-red-dark: #8d0018;
  --rock-black: #070707;
  --rock-card: #141414;
  --rock-border: #292929;
}
* {
  box-sizing: border-box;
}
body {
  background: #080808;
  color: #f5f5f5;
  font-family:
    Inter,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  overflow-x: hidden;
}
body:before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(circle at 15% 10%, rgba(217, 4, 41, 0.28), transparent 28%),
    radial-gradient(circle at 85% 20%, rgba(217, 4, 41, 0.18), transparent 25%),
    linear-gradient(135deg, #050505, #121212 45%, #050505);
}
body:after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  opacity: 0.08;
  background-image: linear-gradient(45deg, #fff 1px, transparent 1px);
  background-size: 24px 24px;
}
.fw-black {
  font-weight: 900;
  letter-spacing: -0.04em;
}
.text-gradient {
  background: linear-gradient(90deg, #fff, #ffb3bf, #d90429);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.rock-navbar {
  background: rgba(5, 5, 5, 0.84);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.navbar-brand {
  font-size: 1.6rem;
}
.navbar-brand span {
  color: var(--rock-red);
}
.nav-link {
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
}
.hero {
  min-height: 88vh;
  display: flex;
  align-items: center;
  padding: 8rem 0 4rem;
  position: relative;
}
.hero-img {
  min-height: 440px;
  border-radius: 2rem;
  background-size: cover;
  background-position: center;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.12);
  position: relative;
  overflow: hidden;
}
.hero-img:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.72));
}
.eyebrow {
  color: #ff4d68;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.78rem;
}
.display-rock {
  font-size: clamp(3.2rem, 9vw, 7.4rem);
  line-height: 0.84;
  text-transform: uppercase;
}
.section-pad {
  padding: 5rem 0;
}
.rock-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.24);
  height: 100%;
}
.rock-card img,
.event-cover {
  width: 100%;
  height: 240px;
  object-fit: cover;
}
.rock-card .card-body {
  padding: 1.4rem;
}
.badge-rock {
  background: rgba(217, 4, 41, 0.18);
  color: #ff6178;
  border: 1px solid rgba(217, 4, 41, 0.35);
}
.btn-danger {
  background: var(--rock-red);
  border-color: var(--rock-red);
}
.btn-danger:hover {
  background: #b80022;
  border-color: #b80022;
}
.btn-outline-light {
  border-color: rgba(255, 255, 255, 0.26);
}
.info-band {
  background: #0d0d0d;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.stat {
  padding: 1.4rem;
  border-radius: 1.2rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.form-control,
.form-select {
  background: #111;
  border-color: #2d2d2d;
  color: #fff;
}
.form-control:focus,
.form-select:focus {
  background: #111;
  color: #fff;
  border-color: var(--rock-red);
  box-shadow: 0 0 0 0.2rem rgba(217, 4, 41, 0.18);
}
.form-control::placeholder {
  color: #777;
}
.rock-footer {
  background: #050505;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.social {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #151515;
  color: #fff;
  margin-left: 0.5rem;
  text-decoration: none;
  border: 1px solid #292929;
}
.social:hover {
  background: var(--rock-red);
  color: #fff;
}
.page-hero {
  padding: 8rem 0 3rem;
  background: linear-gradient(180deg, rgba(217, 4, 41, 0.18), transparent);
}
.merch-img {
  height: 280px;
  object-fit: cover;
  background: #111;
}
.detail-hero-img {
  border-radius: 2rem;
  max-height: 520px;
  object-fit: cover;
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.1);
}
@media (max-width: 991px) {
  .hero {
    min-height: auto;
    padding-top: 7rem;
  }
  .hero-img {
    min-height: 320px;
  }
  .rock-card img,
  .event-cover {
    height: 210px;
  }
  .navbar-collapse {
    padding: 1rem 0;
  }
  .display-rock {
    font-size: 4rem;
  }
}
@media (max-width: 576px) {
  .hero {
    padding-top: 6.5rem;
  }
  .hero-img {
    min-height: 260px;
    border-radius: 1.2rem;
  }
  .section-pad {
    padding: 3rem 0;
  }
  .display-rock {
    font-size: 3.25rem;
  }
  .page-hero {
    padding-top: 6rem;
  }
  .rock-card .card-body {
    padding: 1.1rem;
  }
}
.navbar .nav-link.active {
    color: #d90429 !important;
    font-weight: 700;
  }
  
  .navbar .nav-link.active::after {
    width: 100%;
  }

  .hero-logo img {
    max-width: 550px;
    width: 100%;
    height: auto;
    display: block;
    filter: drop-shadow(0 0 25px rgba(255, 0, 50, 0.25));
  }
  
  @media (max-width: 768px) {
    .hero-logo img {
      max-width: 320px;
    }
  }
  .js-image-preview {
    cursor: zoom-in;
  }
  
  #imagePreviewModal img {
    max-height: 80vh;
    object-fit: contain;
  }

  .navbar-logo {
    height: 40px;
    width: auto;
    transition: .3s ease;
  }
  
  .navbar-logo:hover {
    transform: scale(1.03);
  }
  .nav-item:hover {
    transform: scale(1.03);
  }