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

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  color: #ffffff;
  background:
    linear-gradient(rgba(0, 0, 0, 0.28), rgba(0, 0, 0, 0.42)),
    url("blacksite-background.png");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  background-repeat: no-repeat;
  line-height: 1.6;
}

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

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

/* NAVIGATION */

.nav {
  width: 100%;
  padding: 16px 6%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 22px;
  position: relative;
  z-index: 10;
  background: rgba(0, 0, 0, 0.76);
  border-bottom: 1px solid rgba(0, 255, 136, 0.18);
  backdrop-filter: blur(6px);
}

.logo {
  color: #ffffff;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 1rem;
  white-space: nowrap;
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: center;
}

.nav-links a {
  color: #d7d7d7;
  font-weight: 800;
  text-transform: uppercase;
  font-size: 0.78rem;
  letter-spacing: 1px;
}

.nav-links a:hover {
  color: #00ff88;
}

/* HOMEPAGE HERO */

.hero {
  min-height: 560px;
  height: 66vh;
  max-height: 720px;

  background:
    linear-gradient(
      rgba(0, 0, 0, 0.08),
      rgba(0, 0, 0, 0.72)
    ),
    url("hero-background.png");

  background-size: cover;
  background-position: center 44%;
  background-repeat: no-repeat;

  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.hero-content {
  flex: 1;
  max-width: 820px;
  padding: 42px 6% 86px;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;

  position: relative;
  z-index: 2;
}

.hero-content h1 {
  font-size: clamp(2.8rem, 7vw, 5.8rem);
  line-height: 0.9;
  text-transform: uppercase;
  letter-spacing: 4px;
  margin-bottom: 18px;
  text-shadow: 0 0 24px rgba(0, 0, 0, 1);
}

.tagline {
  max-width: 730px;
  color: #ededed;
  font-size: clamp(0.95rem, 1.55vw, 1.1rem);
  margin-bottom: 18px;
  text-shadow: 0 0 18px rgba(0, 0, 0, 1);
}

/* OTHER PAGE HEADERS */

.page-header {
  min-height: 300px;

  background:
    linear-gradient(rgba(0, 0, 0, 0.38), rgba(0, 0, 0, 0.68)),
    url("blacksite-background.png");

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.page-title {
  padding: 58px 6% 72px;
  max-width: 1000px;
}

.page-title h1 {
  font-size: clamp(2.6rem, 7vw, 5.2rem);
  text-transform: uppercase;
  letter-spacing: 4px;
  line-height: 0.95;
  margin-bottom: 16px;
  text-shadow: 0 0 24px rgba(0, 0, 0, 1);
}

.page-title p {
  max-width: 760px;
  color: #e5e5e5;
  font-size: 1.08rem;
  text-shadow: 0 0 14px rgba(0, 0, 0, 1);
}

/* COMMON SECTIONS */

.eyebrow {
  color: #00ff88;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 0.82rem;
  margin-bottom: 12px;
}

.section {
  padding: 70px 6%;
  background: rgba(0, 0, 0, 0.58);
  border-top: 1px solid rgba(0, 255, 136, 0.12);
  backdrop-filter: blur(2px);
}

.section.dark {
  background: rgba(0, 0, 0, 0.68);
}

.section h2 {
  font-size: clamp(2rem, 5vw, 3.7rem);
  text-transform: uppercase;
  letter-spacing: 3px;
  line-height: 1;
  margin-bottom: 20px;
  text-shadow: 0 0 20px rgba(0, 0, 0, 1);
}

.section p {
  max-width: 850px;
  color: #e0e0e0;
  font-size: 1.03rem;
  margin-bottom: 20px;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.9);
}

/* BUTTONS */

.hero-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.button {
  display: inline-block;
  padding: 12px 20px;
  background: #00ff88;
  color: #000000;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: 1px solid #00ff88;
  box-shadow: 0 0 18px rgba(0, 255, 136, 0.25);
}

.button:hover {
  background: #ffffff;
  border-color: #ffffff;
}

.button.secondary {
  background: rgba(0, 0, 0, 0.42);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.75);
}

.button.secondary:hover {
  color: #000000;
  background: #ffffff;
}

/* CARDS */

.feature-card,
.product-card,
.video-card {
  background: rgba(5, 5, 5, 0.86);
  border: 1px solid rgba(0, 255, 136, 0.22);
  padding: 26px;
  box-shadow: 0 0 28px rgba(0, 0, 0, 0.78);
}

.feature-card h3,
.product-card h3,
.video-card h3 {
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 12px;
}

.feature-card p,
.product-card p,
.video-card p {
  color: #d7d7d7;
}

/* GRIDS */

.store-grid,
.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin-top: 30px;
}

.product-image,
.video-thumb {
  min-height: 145px;
  margin-bottom: 18px;

  background:
    radial-gradient(circle at center, rgba(0, 255, 136, 0.20), transparent 45%),
    linear-gradient(135deg, #090909, #1a0000 65%, #000000);

  border: 1px solid rgba(0, 255, 136, 0.22);

  display: flex;
  align-items: center;
  justify-content: center;

  color: #00ff88;
  font-size: 2.3rem;
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 2px;
}

/* MUSIC PAGE */

.music-main {
  padding-top: 62px;
}

.album-panel {
  background:
    linear-gradient(135deg, rgba(0, 255, 136, 0.08), rgba(180, 0, 0, 0.10)),
    rgba(5, 5, 5, 0.84) !important;
}

.product-card audio {
  display: block;
  width: 100%;
  max-width: 260px;
  margin: 14px auto 0 auto;
  box-sizing: border-box;
}

.product-card {
  overflow: hidden;
}

/* SOCIAL */

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 24px;
}

.social-links a {
  padding: 12px 18px;
  border: 1px solid rgba(0, 255, 136, 0.35);
  background: rgba(0, 0, 0, 0.75);
  color: #ffffff;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.social-links a:hover {
  background: #00ff88;
  color: #000000;
}

/* FOOTER */

footer {
  padding: 26px 6%;
  text-align: center;
  background: rgba(0, 0, 0, 0.94);
  border-top: 1px solid rgba(0, 255, 136, 0.18);
  color: #bdbdbd;
}

/* MOBILE */

@media (max-width: 800px) {
  .nav {
    align-items: flex-start;
    flex-direction: column;
    padding: 18px 6%;
  }

  .nav-links {
    justify-content: flex-start;
    gap: 12px;
  }

  .hero {
    min-height: 590px;
    height: auto;
    max-height: none;
    background-position: center 42%;
  }

  .hero-content {
    padding: 58px 6% 78px;
  }

  .hero-content h1 {
    font-size: clamp(2.5rem, 13vw, 4.4rem);
  }

  .section {
    padding: 58px 6%;
  }

  .page-header {
    min-height: 300px;
  }

  .page-title {
    padding: 56px 6% 68px;
  }
}

/* FINAL BACKGROUND FIX */

/* Main site background: about, contact, music, videos, store */
body {
  background:
    linear-gradient(rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0.55)),
    url("blacksite-background.png") !important;

  background-size: cover !important;
  background-position: center !important;
  background-attachment: fixed !important;
  background-repeat: no-repeat !important;
}

/* Homepage top header ONLY */
.hero {
  min-height: 540px;
  height: 64vh;
  max-height: 700px;

  background:
    linear-gradient(
      rgba(0, 0, 0, 0.10),
      rgba(0, 0, 0, 0.70)
    ),
    url("hero-background.png") !important;

  background-size: cover !important;
  background-position: center 42% !important;
  background-repeat: no-repeat !important;

  display: flex;
  flex-direction: column;
  overflow: hidden;
}

/* Force everything below the hero to use the blacksite background */
main {
  background:
    linear-gradient(rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0.55)),
    url("blacksite-background.png") !important;

  background-size: cover !important;
  background-position: center !important;
  background-attachment: fixed !important;
  background-repeat: no-repeat !important;
}

/* Keep sections readable but let blacksite background show through */
.section {
  background: rgba(0, 0, 0, 0.62) !important;
}

.section.dark {
  background: rgba(0, 0, 0, 0.72) !important;
}

/* Other pages use blacksite background, not hero image */
.page-header {
  background:
    linear-gradient(rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.72)),
    url("blacksite-background.png") !important;

  background-size: cover !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
}

/* FINAL HEADER + BACKGROUND SETUP */

/* Main background behind the whole site */
body {
  background:
    linear-gradient(rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0.55)),
    url("blacksite-background.png") !important;

  background-size: cover !important;
  background-position: center !important;
  background-attachment: fixed !important;
  background-repeat: no-repeat !important;
}

/* Home page top header */
.hero {
  min-height: 540px;
  height: 64vh;
  max-height: 700px;

  background:
    linear-gradient(
      rgba(0, 0, 0, 0.10),
      rgba(0, 0, 0, 0.70)
    ),
    url("hero-background.png") !important;

  background-size: cover !important;
  background-position: center 42% !important;
  background-repeat: no-repeat !important;

  display: flex;
  flex-direction: column;
  overflow: hidden;
}

/* Music, Videos, Store page top headers */
.page-header {
  min-height: 360px;

  background:
    linear-gradient(
      rgba(0, 0, 0, 0.10),
      rgba(0, 0, 0, 0.70)
    ),
    url("hero-background.png") !important;

  background-size: cover !important;
  background-position: center 42% !important;
  background-repeat: no-repeat !important;
}

/* Content below headers uses the blacksite background */
main {
  background:
    linear-gradient(rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0.55)),
    url("blacksite-background.png") !important;

  background-size: cover !important;
  background-position: center !important;
  background-attachment: fixed !important;
  background-repeat: no-repeat !important;
}

/* Let the blacksite background show through sections */
.section {
  background: rgba(0, 0, 0, 0.62) !important;
}

.section.dark {
  background: rgba(0, 0, 0, 0.72) !important;
}

/* STORE PRODUCT IMAGES */

.store-product-img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  object-position: center;
  border: 1px solid rgba(0, 255, 136, 0.22);
  margin-bottom: 18px;
  background: #050505;
}

.price {
  color: #00ff88 !important;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 12px;
}

/* STORE PRODUCT IMAGES */

.store-product-img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  object-position: center;
  border: 1px solid rgba(0, 255, 136, 0.22);
  margin-bottom: 18px;
  background: #050505;
}
