/* GLOBAL */
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: radial-gradient(circle at center, #0a0a1a 0%, #000000 70%);
  color: #e0e0ff;
}

/* COSMIC ORBITS (subtle spheres) */
.cosmic-orbit {
  position: fixed;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,255,255,0.15), transparent 60%);
  z-index: -1;
  animation: float 18s linear infinite;
}

.orbit-1 {
  width: 220px;
  height: 220px;
  top: 10%;
  left: 8%;
}

.orbit-2 {
  width: 280px;
  height: 280px;
  bottom: 5%;
  right: 10%;
}

.orbit-3 {
  width: 180px;
  height: 180px;
  top: 60%;
  left: 50%;
}

@keyframes float {
  0%   { transform: translateY(0); opacity: 0.4; }
  50%  { transform: translateY(-40px); opacity: 1; }
  100% { transform: translateY(0); opacity: 0.4; }
}

/* HERO */
.hero {
  min-height: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 20px 20px 20px;
  position: relative;
}

.hero-inner {
  position: relative;
  max-width: 800px;
  text-align: center;
}

/* Tribal backdrop (abstract neon shape) */
.tribal-backdrop {
  position: absolute;
  inset: -40px;
  background:
    conic-gradient(from 180deg, rgba(0,255,255,0.15), rgba(255,0,255,0.15), rgba(255,165,0,0.15), rgba(0,255,255,0.15));
  filter: blur(40px);
  opacity: 0.7;
  z-index: -1;
}

/* Logo block */
.logo-block {
  padding: 30px 20px;
  border-radius: 18px;
  border: 1px solid rgba(0,255,255,0.4);
  background: linear-gradient(135deg, rgba(10,10,30,0.9), rgba(0,0,0,0.9));
  box-shadow: 0 0 40px rgba(0,255,255,0.25);
}

.small-logo {
  max-width: 180px;
  display: block;
  margin: 0 auto 10px;
}

.site-title {
  margin: 0;
  font-size: 2.4rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #ffffff;
  text-shadow: 0 0 18px #00ffff, 0 0 28px #ff00ff;
}

.tagline {
  margin-top: 12px;
  font-size: 1.1rem;
  color: #ccccff;
}

/* NAVIGATION */
.main-nav {
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.main-nav a {
  color: #ffffff;
  text-decoration: none;
  font-size: 0.9rem;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(0,255,255,0.4);
  background: rgba(5,5,20,0.9);
  transition: 0.25s;
}

.main-nav a:hover {
  border-color: #ff00ff;
  color: #00ffff;
  box-shadow: 0 0 12px #00ffff;
}

/* CLEAN NAVIGATION BAND */
.nav-band {
  width: 100%;
  background: linear-gradient(90deg, rgba(77, 243, 255, 0.05) 0%, rgba(255, 0, 255, 0.03) 50%, rgba(77, 243, 255, 0.05) 100%);
  border-top: 1px solid rgba(77, 243, 255, 0.3);
  border-bottom: 1px solid rgba(77, 243, 255, 0.3);
  padding: 12px 16px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  position: relative;
  z-index: 100;
}

.nav-band a {
  color: #ffffff;
  text-decoration: none;
  font-size: 0.9rem;
  padding: 8px 16px;
  border-radius: 6px;
  border: 1px solid rgba(77, 243, 255, 0.5);
  background: rgba(5, 8, 20, 0.6);
  transition: all 0.25s ease;
  white-space: nowrap;
}

.nav-band a:hover {
  background: rgba(77, 243, 255, 0.15);
  border-color: #4df3ff;
  box-shadow: 0 0 12px rgba(77, 243, 255, 0.6);
  transform: translateY(-2px);
}

/* SECTION BLOCKS */
.section-block {
  max-width: 900px;
  margin: 40px auto;
  padding: 24px 20px 28px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.08);
  background: linear-gradient(135deg, rgba(10,10,30,0.85), rgba(0,0,0,0.95));
  box-shadow: 0 0 24px rgba(0,0,0,0.8);
}

.section-block h2 {
  margin-top: 0;
  font-size: 1.6rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #ffffff;
}

.section-block p {
  margin: 10px 0 18px;
  font-size: 1rem;
  color: #d0d0ff;
}

.section-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.section-links a {
  color: #ffffff;
  text-decoration: none;
  font-size: 0.9rem;
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid rgba(255,165,0,0.6);
  background: rgba(20,10,0,0.9);
  transition: 0.25s;
}

.section-links a:hover {
  border-color: #00ffff;
  color: #00ffff;
  box-shadow: 0 0 12px #00ffff;
}

/* FOOTER */
.footer {
  text-align: center;
  padding: 20px;
  font-size: 0.85rem;
  color: #8888aa;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .site-title {
    font-size: 1.8rem;
    letter-spacing: 0.12em;
  }

  .logo-block {
    padding: 20px 16px;
  }

  .section-block {
    margin: 24px 12px;
  }
}

/* FANTAZIA-STYLE SUBTLE GRID */
.grid-overlay {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 45vh;
  pointer-events: none;
  background:
    linear-gradient(to top, rgba(255,0,255,0.15), transparent),
    repeating-linear-gradient(
      to right,
      rgba(255,0,255,0.15) 0px,
      rgba(255,0,255,0.15) 2px,
      transparent 2px,
      transparent 40px
    ),
    repeating-linear-gradient(
      to top,
      rgba(255,0,255,0.15) 0px,
      rgba(255,0,255,0.15) 2px,
      transparent 2px,
      transparent 40px
    );
  transform: perspective(600px) rotateX(65deg);
  z-index: -2;
  opacity: 0.35;
}

/* FAINT COSMIC PLANETS */
.planet {
  position: fixed;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,0.15), rgba(0,0,0,0));
  filter: blur(4px);
  opacity: 0.25;
  animation: drift 40s linear infinite;
  z-index: -3;
}

.planet.p1 {
  width: 180px;
  height: 180px;
  top: 12%;
  left: 8%;
}

.planet.p2 {
  width: 260px;
  height: 260px;
  top: 55%;
  right: 12%;
}

.planet.p3 {
  width: 140px;
  height: 140px;
  bottom: 10%;
  left: 40%;
}

@keyframes drift {
  0% { transform: translateY(0); opacity: 0.25; }
  50% { transform: translateY(-30px); opacity: 0.35; }
  100% { transform: translateY(0); opacity: 0.25; }
}

/* ============================
   MEDIUM INTENSITY RAVE LASERS
   ============================ */

.laser-layer {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  overflow: hidden;
}

.laser {
  position: absolute;
  width: 2px;
  height: 140%;
  background: linear-gradient(
    to bottom,
    rgba(0,255,255,0) 0%,
    rgba(0,255,255,0.7) 40%,
    rgba(255,0,255,0.7) 60%,
    rgba(255,165,0,0.7) 80%,
    rgba(255,0,255,0) 100%
  );
  filter: blur(1px);
  opacity: 0.55;
  animation: sweep 9s linear infinite;
}

.laser.l1 {
  left: 20%;
  animation-delay: 0s;
}

.laser.l2 {
  left: 50%;
  animation-delay: 3s;
}

.laser.l3 {
  left: 80%;
  animation-delay: 6s;
}

@keyframes sweep {
  0% {
    transform: translateY(100%) rotate(12deg);
    opacity: 0.2;
  }
  40% {
    opacity: 0.55;
  }
  100% {
    transform: translateY(-100%) rotate(-12deg);
    opacity: 0.2;
  }
}
@media (max-width: 768px) {
  .book-card {
    flex-direction: column;
    text-align: center;
  }

  .book-cover {
    width: 220px;
    margin: 0 auto;
  }
}
/* BOOK COVER + CARD LAYOUT */
.book-card {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  padding: 32px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(100, 50, 150, 0.25) 0%, rgba(70, 30, 120, 0.2) 100%);
  box-shadow: 0 0 20px rgba(0,255,255,0.15);
}

.book-cover {
  width: 160px;
  height: 220px;
  object-fit: contain;
  object-position: center;
  display: block;
  padding: 8px;
  box-sizing: border-box;
  border-radius: 12px;
  background: rgba(10, 10, 30, 0.65);
  box-shadow: 0 0 25px rgba(255,0,255,0.35);
  transition: 0.3s;
}

.book-cover:hover {
  transform: scale(1.05);
  box-shadow: 0 0 35px #ff00ff, 0 0 55px #00ffff;
}

.book-info {
  flex: 1;
}
.icon-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 40px;
  padding: 40px;
  text-align: center;
}

.icon-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  color: #fff;
  transition: transform 0.2s ease, filter 0.2s ease;
}

.icon-item img {
  width: 120px;
  height: auto;
  border-radius: 10px;
}

.icon-item span {
  margin-top: 12px;
  font-size: 1.1rem;
  letter-spacing: 1px;
}

.icon-item:hover {
  transform: scale(1.08);
  filter: drop-shadow(0 0 12px #00aaff);
}
.home-card {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 10px;
}

.home-icon {
    width: 120px;
    height: auto;
    border-radius: 10px;
}

/* DJ TECH DIRECTORY */
.gear-hero,
.sub-hero {
  min-height: 42vh;
}

.intro-block {
  text-align: center;
}

.gear-grid {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px 30px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.gear-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 260px;
  padding: 20px 16px;
  color: #e0e0ff;
  text-align: center;
  text-decoration: none;
  border: 1px solid rgba(0,255,255,0.25);
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(100, 50, 150, 0.25) 0%, rgba(70, 30, 120, 0.2) 100%);
  transition: transform 0.25s, border-color 0.25s, box-shadow 0.25s;
}

.gear-card:hover {
  transform: translateY(-5px);
  border-color: #ff00ff;
  box-shadow: 0 0 22px rgba(0,255,255,0.3);
}

.gear-card img {
  width: 105px;
  height: 105px;
  object-fit: contain;
  border-radius: 12px;
}

.gear-card h2 {
  margin: 12px 0 4px;
  color: #fff;
  font-size: 1.2rem;
}

.gear-card p {
  margin: 4px 0 14px;
  font-size: 0.9rem;
}

.gear-card span,
.buy-link {
  display: inline-block;
  color: #fff;
  text-decoration: none;
  padding: 8px 14px;
  border: 1px solid rgba(255,165,0,0.6);
  border-radius: 999px;
  background: rgba(20,10,0,0.9);
}

.product-card {
  display: flex;
  align-items: flex-start;
  gap: 24px;
}

.product-image {
  width: 190px;
  height: 190px;
  object-fit: contain;
  border-radius: 12px;
  background: rgba(255,255,255,0.06);
  box-shadow: 0 0 25px rgba(255,0,255,0.25);
}

.product-card h2 {
  margin-bottom: 12px;
}

.buy-link {
  margin-top: 4px;
}

.category-heading,
.safety-note {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 20px;
}

.category-heading {
  color: #fff;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.safety-note {
  color: #ffd580;
  text-align: center;
}
.home-card {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 10px;
}

.home-icon {
    width: 120px;
    height: auto;
    border-radius: 10px;
}

/* Mobile enhancement */
@media (max-width: 600px) {
    .home-card {
        flex-direction: column;
        text-align: center;
    }

    .home-icon {
        margin-bottom: 10px;
    }

    .gear-grid {
      grid-template-columns: 1fr;
    }

    .product-card {
      flex-direction: column;
      text-align: center;
    }

    .product-image {
      width: 220px;
      height: 180px;
      margin: 0 auto;
    }
}

/* RAVE HEADER AND BANNER */
.rave-header {
  width: 100%;
  background: radial-gradient(circle at center, #0b1024 0%, #050814 60%, #02030a 100%);
  border-bottom: 2px solid rgba(77, 243, 255, 0.4);
  box-shadow: 0 0 20px rgba(77, 243, 255, 0.6);
  text-align: center;
  padding: 20px 0;
}

.rave-banner img {
  width: min(720px, 94vw);
  filter: drop-shadow(0 0 12px #4df3ff) drop-shadow(0 0 24px #ff00ff);
  transition: transform 0.3s ease, filter 0.3s ease;
}

.rave-banner img:hover {
  transform: scale(1.05);
  filter: drop-shadow(0 0 18px #4df3ff) drop-shadow(0 0 36px #ff00ff);
}
