/* NAV */

.y2k-nav {
  background-color: #10101a;
  border-right: 1px solid #ffffff;
  text-align: center;
}

.y2k-nav a {
  font-family: "Press Start 2P", cursive;
  font-size: 0.7rem;
  color: #a8d0ff;
  background-color: #05052a;
  border: 2px solid #1a1aff;
  text-shadow: 0 0 5px #0d00ff, 0 0 10px #0040ff;
  padding: 10px 5px;
  display: block;
}

.y2k-nav a:hover,
.y2k-nav a.active {
  background-color: #0d00ff;
  color: #ffffff;
  border-color: #66ccff;
  text-shadow: 0 0 10px #ffffff, 0 0 20px #66ccff, 0 0 30px #0d00ff;
  box-shadow: 0 0 12px #0d00ff, inset 0 0 6px #66ccff;
  transform: scale(1.05);
}

/* PULSING FX*/
.y2k-nav a.active {
  animation: y2kPulse 1.5s infinite alternate;
}

@keyframes y2kPulse {
  0% {
    box-shadow: 0 0 6px #0d00ff, inset 0 0 5px #5100ff;
  }
  100% {
    box-shadow: 0 0 14px #0b0080, inset 0 0 10px #5100ff;
  }
}

.logo-area {
  position: relative;
  z-index: 1;
}

.logo-area::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 250%;
  height: 250%;
  background: radial-gradient(
    circle,
    rgba(102, 204, 255, 0.1),
    transparent 70%
  );
  transform: translate(-50%, -50%);
  border-radius: 50%;
  z-index: -1;
  animation: pulseGlow 6s ease-in-out infinite;
}

@keyframes pulseGlow {
  0%,
  100% {
    opacity: 0.15;
    transform: translate(-50%, -50%) scale(1);
  }
  50% {
    opacity: 0.25;
    transform: translate(-50%, -50%) scale(1.05);
  }
}

.y2k-header {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
  background: linear-gradient(180deg, #3a3a3a 0%, #1a1a1a 100%);
  border-bottom: 2px solid #555;
  color: #ffffff;
  overflow: hidden;
}

.y2k-header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(#ffffff22 1px, transparent 1px);
  background-size: 4px 4px;
  opacity: 0.15;
  pointer-events: none;
}

/* Marquee */

.led-ticker {
  background: #000;
  color: #ddff00;
  font-family: "Courier New", monospace;
  font-weight: bold;
  text-shadow: 0 0 10px #00058b;
  padding: 8px 0;
  border-top: 2px solid #00058b;
  border-bottom: 2px solid #00058b;
  animation: ledGlow 2s infinite alternate;
}
.led-ticker span::after {
  content: " ✦ ";
  margin: 0 30px;
  color: #00058b;
}
@keyframes ledGlow {
  from {
    text-shadow: 0 0 10px #00058b;
  }
  to {
    text-shadow: 0 0 20px #00058b;
  }
}

/*  Visitor counter */

.visitor-counter {
  color: #002fd7;
}

.visitor-label {
  animation: flicker 3s infinite;
  color: #ccff00;
}

.visitor-number-inner span {
  background: linear-gradient(90deg, #001e8a, #0d00ff, #2700b5, #001797);
  text-shadow: 0 0 10px rgba(0, 153, 255, 0.5);
  font-weight: bold;
}

/*  Animations  */
@keyframes scrollRight {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}

.y2k-header h1 {
  position: relative;
  margin: 0;
  font-family: "Press Start 2P", cursive;
  font-size: 1.4rem;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: #eaf2ff;
  text-shadow: 0 0 4px #ffffff, 0 0 10px #dff4ff, 0 0 18px #000481,
    0 0 30px #0d00ff;
  -webkit-font-smoothing: antialiased;
  -webkit-text-stroke: 0.5px rgba(0, 0, 0, 0.25);
  z-index: 2;
  animation: neonFlicker 3.5s infinite;
}

/* soft bloom behind the text for extra neon feel */
.y2k-header h1::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 120%;
  height: 120%;
  border-radius: 8px;
  pointer-events: none;
  background: radial-gradient(
    circle,
    rgba(102, 204, 255, 0.12) 0%,
    transparent 40%
  );
  filter: blur(8px);
  z-index: 1;
  mix-blend-mode: screen;
  opacity: 0.9;
  transition: opacity 0.2s ease;
}

/* flicker + subtle pulse */
@keyframes neonFlicker {
  0%,
  5% {
    opacity: 1;
    text-shadow: 0 0 6px #ffffff, 0 0 12px #dff4ff, 0 0 20px #66ccff,
      0 0 34px #0d00ff;
    filter: brightness(1);
  }
  6% {
    opacity: 0.65;
    text-shadow: 0 0 2px #cfefff, 0 0 8px #99e0ff;
    filter: brightness(0.7);
  }
  7% {
    opacity: 1;
    text-shadow: 0 0 6px #ffffff, 0 0 14px #aee8ff, 0 0 26px #66ccff;
  }
  20% {
    opacity: 0.4;
    text-shadow: none;
    filter: brightness(0.3);
  }
  22% {
    opacity: 1;
    text-shadow: 0 0 8px #ffffff, 0 0 16px #bfefff, 0 0 28px #66ccff;
  }
  40% {
    opacity: 0.9;
    text-shadow: 0 0 6px #fff, 0 0 12px #cfeeff, 0 0 20px #66ccff;
  }
  60% {
    opacity: 1;
    text-shadow: 0 0 10px #ffffff, 0 0 20px #99e0ff, 0 0 36px #66ccff;
    filter: brightness(1.05);
  }
  80% {
    opacity: 0.7;
    text-shadow: 0 0 3px #e8f7ff, 0 0 10px #9fe0ff;
    filter: brightness(0.8);
  }
  100% {
    opacity: 1;
    text-shadow: 0 0 6px #ffffff, 0 0 12px #dff4ff, 0 0 20px #66ccff,
      0 0 34px #0d00ff;
  }
}

/* MAIN HOF CONTENT STYLE */

.hof-content {
  position: relative;
  background: radial-gradient(
    circle at top left,
    rgba(5, 5, 25, 0.95),
    rgba(0, 0, 10, 0.9)
  );
  border: 1px solid #0d00ff;
  box-shadow: 0 0 15px rgba(13, 0, 255, 0.4), inset 0 0 10px rgba(0, 0, 40, 0.8);
  color: #b5c6ff;
  text-shadow: 0 0 6px #0008, 0 0 8px #0010ff;
  padding: 40px 50px;
  border-radius: 12px;
  font-family: "Orbitron", sans-serif;
  font-size: 1.4rem !important;
  line-height: 1.8 !important;
  text-align: left !important;
  overflow: hidden;
}

/* === Decorative grid lines — faint scanlines for Y2K tech feel === */
.hof-content::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0.04) 0px,
    rgba(255, 255, 255, 0.04) 1px,
    transparent 2px
  );
  mix-blend-mode: overlay;
  opacity: 0.15;
  pointer-events: none;
}

/* === Subtle pulsing glow === */
.hof-content::after {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(13, 0, 255, 0.15), transparent 70%);
  animation: hofPulse 6s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
}

/* === Hover aura === */
.hof-content:hover {
  color: #ffffff;
  text-shadow: 0 0 8px #66ccff, 0 0 16px #0d00ff;
  transition: all 0.3s ease-in-out;
}

@keyframes hofPulse {
  0% {
    opacity: 0.3;
    transform: scale(1);
  }
  50% {
    opacity: 0.6;
    transform: scale(1.1);
  }
  100% {
    opacity: 0.3;
    transform: scale(1);
  }
}

/* === Adjust text shadow and increase readability === */
.hof-content p {
  text-shadow: 0 0 6px #0010ff, 0 0 8px #0d00ff;
  margin: 0;
}

/* === Adjust for the general description size and readability === */
.hof-content span,
.hof-content p {
  font-size: 1.4rem !important;
  line-height: 1.8 !important;
  text-align: justify !important;
  color: #e1e1e1 !important;
  margin-bottom: 20px;
}

/* === Make the description stand out more === */
.hof-content p {
  font-weight: 400 !important;
  text-shadow: 0 0 6px #0d00ff, 0 0 10px #66ccff;
}

/* Gallery */

#hof-gallery,
.hof-gallery {
  margin-top: 100px !important;
  padding-top: 40px;
}

#music-hof-title-wrapper {
  position: relative;
  display: inline-block;
  font-family: "Press Start 2P", cursive;
  font-size: 2.4rem;
  color: #ffffff;
  letter-spacing: 6px;
  text-transform: uppercase;
  text-align: center;
  padding: 20px 40px;
  margin: 0 auto 20px auto;
  user-select: none;
  text-shadow: 0 0 6px #0d00ff, 0 0 12px #eeff00, 0 0 24px #0d00ff;
  overflow: visible;
  width: fit-content;
  margin-top: 60px;
  margin-bottom: 60px;
}

#music-hof-title {
  position: relative;
  z-index: 2;
}

#music-hof-title-wrapper #music-hof-title {
  position: relative;
  z-index: 2;
}

#music-hof-stars {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

.hof-gallery {
  display: flex;
  flex-direction: column;
  gap: 60px;
  margin-top: 40px;
}

.hof-section-title {
  font-family: "Press Start 2P", monospace;
  font-size: 1rem;
  color: #ffffff;
  text-transform: uppercase;
  margin: 10px 0 20px 0;
  text-shadow: 0 0 4px #000000, 0 0 8px #002288;
  text-align: center;
}

.hof-item {
  display: flex;
  justify-content: space-between;
  background: #0b0b1f;
  border: 2px solid #66ccff;
  border-radius: 12px;
  padding: 30px;
  gap: 25px;
  min-height: 200px;
  max-width: 95%;
  margin: 0 auto 40px auto;
  overflow: hidden;
  box-shadow: 0 0 12px #001366, 0 0 24px #001bb5;
  cursor: pointer;
}

.hof-item .text-left {
  flex: 1;
  max-width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
}

.hof-item .text-left h4:first-child {
  color: #ffffff;
  font-weight: bold;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hof-item .text-left h4:nth-child(2) {
  font-size: 1.3rem;
  color: #ffffff;
  text-shadow: 0 0 6px #6666ff, 0 0 12px #003366;
  font-size: 1.3rem;
  color: #ffffff;
  text-shadow: 0 0 6px #66ccff, 0 0 12px #003366;
  margin-bottom: 12px;
  position: relative;
}

.hof-item .text-left h4::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background: #ffffff;
  opacity: 0.6;
  margin-top: 10px;
}

.hof-item .text-left p {
  font-size: 0.9rem;
  color: #d0dfff;
  line-height: 1.5rem;
  overflow: hidden;
}

.hof-item .images-right {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 25px;
}

.hof-item .images-right img {
  max-height: 170px;
  border: 1px solid #ffffff;
  border-radius: 5px;
  object-fit: cover;
}

.hof-item:hover {
  transform: scale(1.02);
  box-shadow: 0 0 20px #354cff;
}

.featured-title {
  display: none;
}

.featured-him {
  box-shadow: 0 0 10px #fff176, 0 0 15px #ffea00;
  border-color: #ffea00;
}

.featured-him:hover {
  box-shadow: 0 0 30px #fff176, 0 0 10px #ffea00;
  transform: scale(1.02);
}

/* CMDNR Info Box */

#cmdnr-info {
  flex: 0 0 auto;
  align-self: flex-start;
  width: 260px;
  max-width: 32%;
  height: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 16px;
  border-radius: 10px;
  background: linear-gradient(145deg, #0a0a1f 0%, #00000d 100%);
  border: 2px solid #0d00ff;
  box-shadow: 0 0 18px #0d00ff, inset 0 0 12px rgba(13, 0, 255, 0.15);
  position: relative;
  overflow: visible;
  transition: all 0.2s ease-in-out;
}

/* Image – classic blue border */
#cmdnr-info img {
  width: 150px;
  height: auto;
  border-radius: 6px;
  border: 2px solid #0d00ff;
  box-shadow: 0 0 12px #0d00ff;
  flex-shrink: 0;
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}
#cmdnr-info img:hover {
  transform: scale(1.05);
  box-shadow: 0 0 25px #0d00ff, 0 0 40px rgba(13, 0, 255, 0.7);
}

/* Subtle background pulse – dark blue only */
#cmdnr-info::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(13, 0, 255, 0.1), transparent 70%);
  animation: cmdnrPulse 7s ease-in-out infinite;
  z-index: 0;
}
@keyframes cmdnrPulse {
  0% {
    opacity: 0.08;
    transform: scale(1);
  }
  50% {
    opacity: algae0.18;
    transform: scale(1.07);
  }
  100% {
    opacity: 0.08;
    transform: scale(1);
  }
}

/* Text container */
#cmdnr-info .info-text {
  width: 100%;
  box-sizing: border-box;
  text-align: center;
  padding: 0 4px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  z-index: 1;
}

/* Title */
#cmdnr-info .info-text h3 {
  margin: 0 0 8px 0;
  font-size: 1.3rem;
  font-family: "Orbitron", sans-serif;
  color: #0d00ff;
  text-shadow: 0 0 5px #0d00ff, 0 0 10px #0d00ff, 2px 2px 0 #ffffff,
    -2px -2px 0 #ffffff;
  animation: glitchEffect 2.5s infinite;
}

/* Description */
#cmdnr-info .info-text p {
  margin: 0;
  line-height: 1.5;
  font-size: 0.95rem;
  color: #fbff00;
  text-shadow: 0 0 6px #eaff00;
  animation: textGlow 2s infinite alternate;
}

@keyframes glitchEffect {
  0%,
  100% {
    text-shadow: 2px 2px 0 #0d00ff, -2px -2px 0 #ffffff, 1px -1px 0 #0d00ff,
      -1px 1px 0 #ffffff;
  }
  25% {
    text-shadow: -2px -2px 0 #0d00ff, 2px 2px 0 #ffffff, -1px 1px 0 #0d00ff,
      1px -1px 0 #ffffff;
  }
  50% {
    text-shadow: 2px -2px 0 #0d00ff, -2px 2px 0 #ffffff, 1px 1px 0 #0d00ff,
      -1px -1px 0 #ffffff;
  }
  75% {
    text-shadow: -2px 2px 0 #0d00ff, 2px -2px 0 #ffffff, -1px -1px 0 #0d00ff,
      1px 1px 0 #ffffff;
  }
}

@keyframes textGlow {
  0% {
    text-shadow: 0 0 5px #eaff00, 0 0 10px #5e6600;
  }
  100% {
    text-shadow: 0 0 10px #005313, 0 0 20px #00801a,
      0 0 30px rgba(13, 0, 255, 0.6);
  }
}

/* ————————————————————————
  ARTIST PAGES
   ———————————————————————— */

#artist-detail {
  margin-top: 40px;
  text-align: center;
}

.artist-name.glow {
  font-family: "Press Start 2P", cursive;
  font-size: 2.4rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #ffffff;
  text-shadow: 0 0 10px #0d00ff, 0 0 20px #66ccff, 0 0 40px #0d00ff,
    0 0 60px #66ccff;
  animation: neonFlicker 4s infinite;
  margin-bottom: 30px;
}

/* Portrait */
#artist-thumb {
  max-width: 340px;
  border: 3px double #66ccff;
  box-shadow: 0 0 20px #0d00ff, 0 0 40px rgba(102, 204, 255, 0.4);
  margin: 20px auto;
  display: block;
  transition: transform 0.3s ease;
}
#artist-thumb:hover {
  transform: scale(1.05);
}

#artist-bio {
  margin: 40px auto;
  max-width: 900px;
  background: rgba(5, 5, 25, 0.92);
  border: 2px solid #66ccff;
  box-shadow: 0 0 20px #0d00ff, inset 0 0 15px rgba(13, 0, 255, 0.2);
  padding: 30px;
  font-family: "Orbitron", sans-serif;
  font-size: 1.1rem;
  line-height: 1.9;
  color: #b5c6ff;
  text-shadow: 0 0 6px #0010ff;
  position: relative;
  overflow: hidden;
}

/* Scanlines inside bio */
#artist-bio::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    to bottom,
    transparent 0px,
    transparent 1px,
    rgba(102, 204, 255, 0.06) 1px,
    rgba(102, 204, 255, 0.06) 2px
  );
  pointer-events: none;
}

/* Pulsing border glow */
#artist-bio::after {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(13, 0, 255, 0.2), transparent 70%);
  animation: hofPulse 7s ease-in-out infinite;
  pointer-events: none;
}

/* Album grid */
.album-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 25px;
  margin: 50px auto;
  max-width: 1200px;
  padding: 0 20px;
}

.album-card {
  background: #0b0b1f;
  border: 2px solid #1a1aff;
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.3s ease;
  cursor: pointer;
}

.album-card:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 0 25px #66ccff, 0 0 40px #0d00ff;
  border-color: #66ccff;
}

.album-card img {
  width: 100%;
  height: auto;
  display: block;
  border-bottom: 1px solid #66ccff;
}

.album-card p {
  padding: 12px;
  margin: 0;
  font-family: "Press Start 2P", cursive;
  font-size: 0.75rem;
  color: #ffffff;
  text-shadow: 0 0 6px #0d00ff;
  background: rgba(5, 5, 25, 0.8);
}

.album-card .year {
  display: block;
  color: #ccff00;
  font-size: 0.65rem;
  margin-top: 6px;
}

.error {
  color: #ff00ff;
  font-family: "Press Start 2P", cursive;
  text-shadow: 0 0 10px #ff00ff;
  animation: flicker 0.5s infinite alternate;
}

@keyframes neonFlicker {
}
@keyframes hofPulse {
}
@keyframes flicker {
  from {
    opacity: 1;
  }
  to {
    opacity: 0.7;
    text-shadow: 0 0 20px #ff00ff;
  }
}

#email-cmndr {
  background: linear-gradient(90deg, #ffff00, #fff942);
  -webkit-background-clip: text;
  color: transparent;
}

#email-cmndr-title {
  color: #d0ff00;
}
