:root {
  --neon-pink: #ff2a6d;
  --neon-purple: #d300c5;
  --neon-blue: #05d9e8;
  --neon-green: #00ff9d;
  --neon-yellow: #f9f002;
  --dark-bg: #0d0d0d;
  --darker-bg: #080808;
  --text-color: #e0e0e0;
  --glow-speed: 2s;
}

/* Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

body {
  font-family: 'Oxanium', sans-serif;
  background-color: var(--dark-bg);
  color: var(--text-color);
  line-height: 1.6;
  overflow-x: hidden;
  background-image: 
    radial-gradient(circle at 10% 20%, rgba(255, 42, 109, 0.05) 0%, transparent 20%),
    radial-gradient(circle at 90% 80%, rgba(5, 217, 232, 0.05) 0%, transparent 20%),
    linear-gradient(to bottom, rgba(13, 13, 13, 0.9), rgba(8, 8, 8, 0.95));
  background-attachment: fixed;
}

/* Cyberpunk Effects */
body::after {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    linear-gradient(rgba(18, 16, 16, 0) 50%, 
    rgba(0, 0, 0, 0.25) 50%),
    linear-gradient(90deg, rgba(255, 0, 0, 0.06), rgba(0, 255, 0, 0.02), rgba(0, 0, 255, 0.06));
  background-size: 100% 2px, 3px 100%;
  pointer-events: none;
  z-index: 1000;
  mix-blend-mode: overlay;
}

.cyber-grid {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    linear-gradient(rgba(255, 42, 109, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 42, 109, 0.05) 1px, transparent 1px);
  background-size: 50px 50px;
  pointer-events: none;
  z-index: -1;
}

/* Animations */
@keyframes glitch {
  0% { transform: translate(0); }
  20% { transform: translate(-3px, 3px); }
  40% { transform: translate(-3px, -3px); }
  60% { transform: translate(3px, 3px); }
  80% { transform: translate(3px, -3px); }
  100% { transform: translate(0); }
}

@keyframes neon-pulse {
  0%, 100% { text-shadow: 0 0 5px var(--neon-pink), 0 0 10px var(--neon-pink), 0 0 20px var(--neon-pink), 0 0 40px var(--neon-purple); }
  50% { text-shadow: 0 0 10px var(--neon-pink), 0 0 20px var(--neon-pink), 0 0 30px var(--neon-pink), 0 0 60px var(--neon-purple); }
}

@keyframes neon-blue-pulse {
  0%, 100% { text-shadow: 0 0 5px var(--neon-blue), 0 0 10px var(--neon-blue), 0 0 20px var(--neon-blue); }
  50% { text-shadow: 0 0 10px var(--neon-blue), 0 0 20px var(--neon-blue), 0 0 30px var(--neon-blue); }
}

@keyframes neon-green-pulse {
  0%, 100% { text-shadow: 0 0 5px var(--neon-green), 0 0 10px var(--neon-green), 0 0 20px var(--neon-green); }
  50% { text-shadow: 0 0 10px var(--neon-green), 0 0 20px var(--neon-green), 0 0 30px var(--neon-green); }
}

@keyframes floating {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
}

@keyframes flicker {
  0%, 19.999%, 22%, 62.999%, 64%, 64.999%, 70%, 100% { opacity: 1; }
  20%, 21.999%, 63%, 63.999%, 65%, 69.999% { opacity: 0.4; }
}

@keyframes shine {
  0% { left: -50%; }
  100% { left: 150%; }
}

/* Header & Navigation */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 1.5rem 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 100;
  background: linear-gradient(to bottom, rgba(13, 13, 13, 0.9), rgba(8, 8, 8, 0.7));
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 42, 109, 0.2);
}

.logo {
  height: 80px;
  filter: drop-shadow(0 0 5px var(--neon-pink));
  animation: flicker 3s infinite alternate;
  transition: transform 0.3s ease;
}

.logo:hover {
  transform: scale(1.05);
  filter: drop-shadow(0 0 10px var(--neon-pink));
}

/* Mobile Menu */
.mobile-menu-toggle {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 10px;
  z-index: 1000;
  position: relative;
}

.hamburger-line {
  display: block;
  width: 25px;
  height: 3px;
  background-color: var(--neon-pink);
  margin: 5px 0;
  transition: all 0.3s ease;
  box-shadow: 0 0 5px var(--neon-pink);
}

.main-nav {
  display: flex;
  align-items: center;
}

.nav-list {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-list li a {
  position: relative;
  color: var(--text-color);
  text-decoration: none;
  font-family: 'Orbitron', sans-serif;
  font-weight: 600;
  font-size: 1.1rem;
  letter-spacing: 1px;
  padding: 0.5rem 1rem;
  transition: all 0.3s ease;
}

.nav-list li a::before {
  content: attr(data-text);
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  color: var(--neon-pink);
  overflow: hidden;
  white-space: nowrap;
  transition: width 0.3s ease;
}

.nav-list li a:hover::before {
  width: 100%;
}

/* Main Content */
main {
  margin-top: 100px;
  padding: 2rem 5%;
}

section {
  padding: 4rem 0;
  border-bottom: 1px solid rgba(255, 42, 109, 0.1);
  position: relative;
}

section::before {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--neon-pink), transparent);
  opacity: 0;
  transition: opacity 0.5s ease;
}

section:hover::before {
  opacity: 1;
}

/* Typography with Glitch Effect */
h2 {
  font-family: 'Creepster', cursive;
  font-size: 3rem;
  margin-bottom: 2rem;
  color: var(--neon-pink);
  text-shadow: 
    0 0 3px #fff,
    0 0 6px var(--neon-pink),
    0 0 12px var(--neon-purple);
  position: relative;
  display: inline-block;
  letter-spacing: 2px;
  animation: glitch-horizontal 5s infinite alternate;
  transition: all 0.3s ease;
}

h2:hover {
  color: white;
  text-shadow: 
    0 0 6px #fff,
    0 0 12px var(--neon-pink),
    0 0 24px var(--neon-purple);
  transform: translateY(-2px);
  animation: glitch-horizontal 2s infinite alternate;
}

/* Horizontal Glitch Animation */
@keyframes glitch-horizontal {
  0%, 40%, 44%, 58%, 61%, 65%, 69%, 80%, 84%, 100% {
    transform: translateX(0);
  }
  41% {
    transform: translateX(-5px);
  }
  42% {
    transform: translateX(5px);
  }
  59% {
    transform: translateX(-3px);
  }
  60% {
    transform: translateX(3px);
  }
  63% {
    transform: translateX(-8px);
  }
  70% {
    transform: translateX(5px);
  }
  71% {
    transform: translateX(-5px);
  }
}

/* Enhanced Glitch Layers */
h2.glitch-text {
  position: relative;
  animation: none; /* Disable base animation when glitch-text is applied */
}

h2.glitch-text::before,
h2.glitch-text::after {
  content: attr(data-text);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.7;
}

h2.glitch-text::before {
  color: var(--neon-blue);
  z-index: -1;
  animation: 
    glitch-horizontal 3s infinite alternate,
    glitch-vertical 4s infinite alternate;
  text-shadow: 
    0 0 3px var(--neon-blue),
    0 0 6px var(--neon-blue);
  clip-path: polygon(0 0, 100% 0, 100% 45%, 0 45%);
}

h2.glitch-text::after {
  color: var(--neon-green);
  z-index: -2;
  animation: 
    glitch-horizontal 2s infinite reverse alternate,
    glitch-vertical 3s infinite reverse alternate;
  text-shadow: 
    0 0 3px var(--neon-green),
    0 0 6px var(--neon-green);
  clip-path: polygon(0 55%, 100% 55%, 100% 100%, 0 100%);
}

/* Vertical Glitch Animation */
@keyframes glitch-vertical {
  0%, 40%, 44%, 58%, 61%, 65%, 69%, 80%, 84%, 100% {
    transform: translateY(0);
  }
  41% {
    transform: translateY(-3px);
  }
  42% {
    transform: translateY(3px);
  }
  59% {
    transform: translateY(-2px);
  }
  60% {
    transform: translateY(2px);
  }
  63% {
    transform: translateY(-5px);
  }
  70% {
    transform: translateY(3px);
  }
  71% {
    transform: translateY(-3px);
  }
}
h3 {
  font-family: 'Orbitron', sans-serif;
  color: var(--neon-blue);
  margin: 1.5rem 0 1rem;
  text-shadow: 0 0 5px var(--neon-blue);
  animation: neon-blue-pulse 3s infinite alternate;
}

p {
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
  line-height: 1.7;
}

/* Music Player - Updated Version */
.player-container {
  background: rgba(13, 13, 13, 0.7);
  border-radius: 15px;
  padding: 2rem;
  margin: 2rem 0;
  box-shadow: 0 0 30px rgba(255, 42, 109, 0.2);
  border: 1px solid rgba(255, 42, 109, 0.3);
  position: relative;
  overflow: hidden;
}

.player-container::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent, rgba(255, 42, 109, 0.1), transparent);
  transform: rotate(45deg);
  animation: shine 3s infinite;
}

.player-banner {
    width: 100%;
    height: auto;
    overflow: hidden;
    position: relative; /* Not absolute or fixed */
}

.music-item {
  display: flex;
  align-items: center;
  gap: 15px;
  width: 100%;
  padding: 10px;
  text-align: left;
  background: transparent;
  border: none;
  color: inherit;
}

.music-item .img-cover {
  width: 100px;
  height: 100px;
  border-radius: 4px;
}

.item-info {
  flex: 1;
  overflow: hidden;
}

.item-title {
  font-weight: bold;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.item-artist {
  font-size: 0.8em;
  opacity: 0.7;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.music-item.playing {
  background-color: rgba(255, 255, 255, 0.1);
}
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 999;
  display: none;
}

.overlay.active {
  display: block;
}

[data-playlist] {
  position: fixed;
  top: 0;
  right: -300px;
  width: 300px;
  height: 100%;
  background: #111;
  z-index: 1000;
  transition: right 0.3s ease;
}

[data-playlist].active {
  right: 0;
}

.player-banner {
  display: flex;
  justify-content: center; /* Center horizontally */
  align-items: center; /* Center vertically */
  width: 100%;
  padding: 20px 0; /* Add some vertical padding */
}

.player-banner img {
  width: 350px;
  height: 350px;
  border-radius: 10px;
  object-fit: cover;
  box-shadow: 0 0 20px rgba(255, 42, 109, 0.4);
  border: 2px solid var(--neon-pink);
  transition: transform 0.3s ease;
}

/* Optional: Add hover effect */
.player-banner img:hover {
  transform: scale(1.02);
  box-shadow: 0 0 30px rgba(255, 42, 109, 0.6);
}

.player-content {
  text-align: center;
}

.player-progress {
  margin: 1.5rem 0;
}

.progress-bar {
  position: relative;
  height: 6px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 3px;
  margin-bottom: 0.5rem;
}

.player-seek {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
  z-index: 2;
}

.progress-fill {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  background: linear-gradient(90deg, var(--neon-pink), var(--neon-purple));
  border-radius: 3px;
  width: 0%;
}

.progress-time {
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
  color: var(--text-color);
}

.player-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  margin: 1.5rem 0;
}

.control-btn {
  background: transparent;
  border: none;
  color: var(--text-color);
  font-size: 1.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.control-btn:hover {
  color: var(--neon-pink);
  text-shadow: 0 0 10px var(--neon-pink);
  transform: translateY(-3px);
}

.play-btn {
  width: 60px;
  height: 60px;
  background: linear-gradient(45deg, var(--neon-pink), var(--neon-purple));
  color: white;
  border-radius: 50%;
  box-shadow: 0 0 20px rgba(255, 42, 109, 0.5);
}

.play-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 0 30px rgba(255, 42, 109, 0.8);
}

.player-volume {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1rem;
}

.volume-range {
  flex: 1;
  height: 4px;
  cursor: pointer;
  -webkit-appearance: none;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 3px;
}

.volume-range::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 15px;
  height: 15px;
  background: var(--neon-blue);
  border-radius: 50%;
  cursor: pointer;
}

/* Playlist */
.playlist-container {
  margin-top: 2rem;
}

.playlist-toggle {
  background: linear-gradient(45deg, var(--neon-green), var(--neon-blue));
  color: var(--dark-bg);
  border: none;
  padding: 0.8rem 2rem;
  font-family: 'Orbitron', sans-serif;
  font-weight: 600;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 0 15px rgba(0, 255, 157, 0.5);
  margin-bottom: 1rem;
}

.playlist-toggle:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 25px rgba(0, 255, 157, 0.8);
}

.playlist-sidebar {
  position: fixed;
  top: 0;
  right: -100%;
  width: 90%;
  max-width: 400px;
  height: 100vh;
  background: var(--dark-bg);
  z-index: 1000;
  transition: right 0.3s ease;
  padding: 2rem;
  overflow-y: auto;
  border-left: 1px solid var(--neon-pink);
}

.playlist-sidebar.active {
  right: 0;
}

.music-list {
  list-style: none;
  margin-top: 1rem;
}

.music-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.8rem;
  border-radius: 5px;
  transition: background 0.3s ease;
  width: 100%;
  background: transparent;
  border: none;
  color: var(--text-color);
  text-align: left;
  cursor: pointer;
}

.music-item.playing {
  background: rgba(255, 42, 109, 0.2);
}

.music-item img {
  width: 50px;
  height: 50px;
  border-radius: 5px;
}

/* Overlay */
[data-overlay] {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  z-index: 999;
  display: none;
}

[data-overlay].active {
  display: block;
}

/* Media Elements */
.album-artwork, .mini-logo {
  max-width: 75%;
  width: 800px;
  height: auto;
  border-radius: 5px;
  box-shadow: 0 0 20px rgba(255, 42, 109, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  margin-bottom: 2rem;
  border: 2px solid var(--neon-pink);
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.album-artwork:hover, .mini-logo:hover {
  transform: scale(1.02);
  box-shadow: 0 0 30px rgba(255, 42, 109, 0.5);
}

.streaming-icon-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  margin: 2rem auto;
  flex-wrap: wrap;
  width: fit-content;
  max-width: 100%;
  padding: 0 1rem;
}

.stream-icon {
  color: var(--text-color);
  font-size: 2.5rem;
  transition: all 0.3s ease;
  position: relative;
  display: inline-flex;
  text-decoration: none !important;
}

.stream-icon:hover {

  transform: translateY(-5px);
  text-decoration: none !important;
}

.stream-icon:nth-child(1):hover { color: #1DB954; } /* Spotify */
.stream-icon:nth-child(2):hover { color: #FC3C44; } /* Apple */
.stream-icon:nth-child(3):hover { color: #FF0000; } /* YouTube */
.stream-icon:nth-child(4):hover { color: #00A8E1; } /* Amazon */

.video-responsive {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  margin: 2rem 0;
  border: 2px solid var(--neon-purple);
  box-shadow: 0 0 20px rgba(211, 0, 197, 0.3);
  border-radius: 5px;
}

.video-responsive iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* Merch Section */
.merch-category {
  margin-bottom: 3rem;
}

.merch-images {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin: 1.5rem 0;
}

.merch-image {
  width: 100%;
  border-radius: 5px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
  border: 1px solid var(--neon-blue);
  box-shadow: 0 0 10px rgba(5, 217, 232, 0.2);
}

.merch-image:hover {
  transform: scale(1.05);
  box-shadow: 0 0 20px rgba(5, 217, 232, 0.4);
}

.buy-button-container {
  margin: 1.5rem 0;
}

.buy-button {
  display: inline-block;
  padding: 0.8rem 2rem;
  background: linear-gradient(45deg, var(--neon-pink), var(--neon-purple));
  color: white;
  text-decoration: none;
  font-family: 'Orbitron', sans-serif;
  font-weight: 600;
  border-radius: 30px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 0 15px rgba(255, 42, 109, 0.5);
  position: relative;
  overflow: hidden;
}

.buy-button::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transform: rotate(45deg);
  transition: all 0.5s ease;
}

.buy-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 25px rgba(255, 42, 109, 0.8);
}

.buy-button:hover::before {
  left: 100%;
}

/* Lightbox */
#lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  cursor: pointer;
}

#lightbox-img {
  max-width: 90%;
  max-height: 90%;
  border: 3px solid var(--neon-pink);
  box-shadow: 0 0 50px rgba(255, 42, 109, 0.7);
  animation: floating 3s ease-in-out infinite;
}

/* Newsletter */
#mc_embed_signup {
  background: rgba(13, 13, 13, 0.7);
  padding: 2rem;
  border-radius: 10px;
  border: 1px solid var(--neon-green);
  box-shadow: 0 0 20px rgba(0, 255, 157, 0.2);
  max-width: 600px;
  margin: 0 auto;
}

#mc_embed_signup input[type="email"],
#mc_embed_signup input[type="text"] {
  width: 100%;
  padding: 0.8rem;
  margin-bottom: 1rem;
  background: rgba(20, 20, 20, 0.8);
  border: 1px solid var(--neon-blue);
  color: white;
  font-family: 'Oxanium', sans-serif;
  border-radius: 5px;
  transition: all 0.3s ease;
}

#mc_embed_signup input[type="email"]:focus,
#mc_embed_signup input[type="text"]:focus {
  outline: none;
  border-color: var(--neon-pink);
  box-shadow: 0 0 10px rgba(255, 42, 109, 0.5);
}

#mc_embed_signup .button {
  background: linear-gradient(45deg, var(--neon-green), var(--neon-blue));
  color: var(--dark-bg);
  border: none;
  padding: 0.8rem 2rem;
  font-family: 'Orbitron', sans-serif;
  font-weight: 600;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 0 15px rgba(0, 255, 157, 0.5);
  width: 100%;
}

#mc_embed_signup .button:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 25px rgba(0, 255, 157, 0.8);
}

/* Social Media */
#social-media {
  text-align: center;
  padding: 2rem 0;
}

/* Footer */
footer {
  text-align: center;
  padding: 2rem;
  background: linear-gradient(to top, rgba(13, 13, 13, 0.9), rgba(8, 8, 8, 0.7));
  border-top: 1px solid rgba(255, 42, 109, 0.2);
}

footer p {
  font-family: 'Orbitron', sans-serif;
  letter-spacing: 1px;
  color: var(--neon-blue);
  animation: neon-blue-pulse 3s infinite alternate;
}

/* Go to Top Button */
.go-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: linear-gradient(45deg, var(--neon-pink), var(--neon-purple));
  color: white;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  font-size: 1.5rem;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.3s ease;
  z-index: 99;
  box-shadow: 0 0 15px rgba(255, 42, 109, 0.5);
}

.go-to-top.show-go-to-top {
  opacity: 1;
  transform: translateY(0);
}

.go-to-top:hover {
  transform: translateY(-5px) !important;
  box-shadow: 0 0 25px rgba(255, 42, 109, 0.8);
}

/* Floating Elements */
.floating-element {
  position: absolute;
  opacity: 0.3;
  z-index: -1;
  animation: floating 5s ease-in-out infinite;
}

.floating-element:nth-child(1) {
  top: 10%;
  left: 5%;
  font-size: 2rem;
  color: var(--neon-pink);
  animation-delay: 0s;
}

.floating-element:nth-child(2) {
  top: 30%;
  right: 8%;
  font-size: 1.5rem;
  color: var(--neon-blue);
  animation-delay: 1s;
}

.floating-element:nth-child(3) {
  bottom: 20%;
  left: 10%;
  font-size: 1.8rem;
  color: var(--neon-green);
  animation-delay: 2s;
}

/* Responsive Design */
@media (max-width: 768px) {
  header {
    padding: 0.5rem 2%;
    height: auto;
    flex-wrap: wrap;
  }
  
  .logo {
    height: 80px;
    margin: 0.5rem auto;
  }
  
  .mobile-menu-toggle {
    display: block;
  }
  
  .main-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 70%;
    height: 100vh;
    background: rgba(13, 13, 13, 0.95);
    backdrop-filter: blur(10px);
    flex-direction: column;
    justify-content: center;
    transition: right 0.3s ease-in-out;
    border-left: 1px solid var(--neon-pink);
  }
  
  .main-nav.active {
    right: 0;
  }
  
  .nav-list {
    flex-direction: column;
    gap: 1.5rem;
    width: 100%;
    padding: 0 20px;
  }
  
  .nav-list li a {
    font-size: 1.2rem;
    padding: 0.8rem;
    display: block;
    text-align: center;
    border-bottom: 1px solid rgba(255, 42, 109, 0.2);
  }
  
  .mobile-menu-toggle.active .hamburger-line:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  
  .mobile-menu-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
  }
  
  .mobile-menu-toggle.active .hamburger-line:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
  
  .nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 998;
    display: none;
  }
  
  .nav-overlay.active {
    display: block;
  }
  
  main {
    margin-top: 80px;
    padding: 1rem 3%;
  }
  
  section {
    padding: 2rem 0;
  }
  
  h2 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
  }
  
  h3 {
    font-size: 1.3rem;
  }
  
  p {
    font-size: 1rem;
    line-height: 1.6;
  }
  
  .album-artwork, .mini-logo {
    max-width: 100%;
    width: 100%;
  }
  
  .player-container {
    padding: 1rem;
    margin: 1rem 0;
  }
  
  .player-banner img {
    width: 250px;
    height: 250px;
  }
  
  .main-controls {
    gap: 0.8rem;
  }
  
  .control-btn {
    width: 30px;
    height: 30px;
    font-size: 1.1rem;
  }
  
  .play-btn {
    width: 45px;
    height: 45px;
  }
  
  .video-responsive {
    margin: 1rem 0;
  }
  
  .merch-images {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
  }
  
  .stream-icon {
    font-size: 1.5rem;
  }
  
  #mc_embed_signup {
    padding: 1rem;
  }
  
  footer {
    padding: 1rem;
  }
}

@media (max-width: 480px) {
  .nav-list {
    gap: 0.3rem;
  }
  
  .nav-list li a {
    font-size: 0.8rem;
    padding: 0.2rem 0.4rem;
  }
  
  h2 {
    font-size: 1.5rem;
  }
  
  .merch-images {
    grid-template-columns: 1fr;
  }
  
  .player-banner img {
    width: 200px;
    height: 200px;
  }
  
  .streaming-icon-container {
    justify-content: center;
  }
}

/* ===== CODENAME Album Section ===== */
#codename-album {
    position: relative;
    overflow: hidden;
    border: 1px solid transparent;
    border-image: linear-gradient(45deg, var(--neon-pink), var(--neon-blue), var(--neon-purple)) 1;
    animation: border-flicker 3s infinite alternate;
    padding: 4rem 0;
    background: radial-gradient(ellipse at center, rgba(255,42,109,0.05) 0%, rgba(13,13,13,0) 70%);
}

@keyframes border-flicker {
    0%, 19.999%, 22%, 62.999%, 64%, 64.999%, 70%, 100% {
        border-image: linear-gradient(45deg, var(--neon-pink), var(--neon-blue), var(--neon-purple)) 1;
    }
    20%, 21.999%, 63%, 63.999%, 65%, 69.999% {
        border-image: linear-gradient(45deg, transparent, transparent, transparent) 1;
    }
}

.section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Album Artwork */
.artwork-container {
    margin: 0 auto 3rem;
    max-width: 600px;
    position: relative;
}

.album-artwork {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 20px 50px rgba(255, 42, 109, 0.3);
    border: 3px solid var(--neon-pink);
    transition: transform 0.5s ease;
}

.glitch-image {
    position: relative;
    animation: glitch-effect 5s infinite alternate;
}

@keyframes glitch-effect {
    0% { 
        filter: drop-shadow(0 0 5px var(--neon-pink));
        transform: translate(0);
    }
    20% { 
        filter: drop-shadow(-5px 5px 5px var(--neon-blue));
        transform: translate(-2px, 2px);
    }
    40% { 
        filter: drop-shadow(5px -5px 5px var(--neon-purple));
        transform: translate(2px, -2px);
    }
    60% { 
        filter: drop-shadow(-5px -5px 5px var(--neon-green));
        transform: translate(-2px, -2px);
    }
    80% { 
        filter: drop-shadow(5px 5px 5px var(--neon-yellow));
        transform: translate(2px, 2px);
    }
    100% { 
        filter: drop-shadow(0 0 10px var(--neon-pink));
        transform: translate(0);
    }
}

/* Album Bio */
.album-bio {
    max-width: 800px;
    margin: 0 auto 4rem;
    padding: 0 1rem;
    text-align: center;
    font-size: 1.1rem;
    line-height: 1.8;
    position: relative;
}

.album-bio::before {
    content: "";
    position: absolute;
    top: -20px;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--neon-pink), transparent);
}

.album-bio p {
    margin-bottom: 1.8rem;
    position: relative;
}

.album-bio strong {
    color: var(--neon-pink);
    font-weight: 600;
    text-shadow: 0 0 5px rgba(255, 42, 109, 0.5);
    position: relative;
}

.highlight {
    font-size: 1.3rem;
    margin: 3rem 0;
    padding: 2rem;
    background: rgba(255, 42, 109, 0.1);
    border-left: 3px solid var(--neon-pink);
    border-right: 3px solid var(--neon-pink);
    position: relative;
    border-radius: 5px;
}

.highlight::before, .highlight::after {
    content: "✧";
    position: absolute;
    color: var(--neon-pink);
    font-size: 2rem;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.highlight::before { 
    top: -15px; 
    left: -15px;
    animation-delay: 0s;
}

.highlight::after { 
    bottom: -15px; 
    right: -15px;
    animation-delay: 0.5s;
}

.tagline {
    font-family: 'Orbitron', sans-serif;
    letter-spacing: 1px;
    margin-top: 3rem;
    color: var(--neon-blue);
    font-size: 1.2rem;
    position: relative;
}

.tagline::after {
    content: "";
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--neon-blue), transparent);
}

/* Release Info Grid */
.release-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin: 4rem 0;
}

.release-card {
    background: rgba(13, 13, 13, 0.8);
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.release-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255,42,109,0.05) 0%, rgba(5,217,232,0.05) 100%);
    z-index: -1;
}

.release-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(255, 42, 109, 0.2);
}

.date-card {
    border-color: var(--neon-pink);
}

.tracklist-card {
    border-color: var(--neon-blue);
}

.singles-card {
    border-color: var(--neon-purple);
}

.card-header {
    padding: 1.8rem;
    background: linear-gradient(90deg, rgba(255,42,109,0.2), transparent);
    display: flex;
    align-items: center;
    gap: 1.2rem;
    border-bottom: 1px solid;
}

.date-card .card-header {
    border-bottom-color: var(--neon-pink);
}

.tracklist-card .card-header {
    border-bottom-color: var(--neon-blue);
}

.singles-card .card-header {
    border-bottom-color: var(--neon-purple);
}

.card-header i {
    font-size: 1.8rem;
}

.card-header h3 {
    font-family: 'Orbitron', sans-serif;
    letter-spacing: 2px;
    margin: 0;
    font-size: 1.3rem;
}

.pulse-pink {
    animation: pulse 2s infinite;
    color: var(--neon-pink);
    text-shadow: 0 0 10px var(--neon-pink);
}

.pulse-blue {
    animation: pulse 2s infinite 0.5s;
    color: var(--neon-blue);
    text-shadow: 0 0 10px var(--neon-blue);
}

.pulse-purple {
    animation: pulse 2s infinite 1s;
    color: var(--neon-purple);
    text-shadow: 0 0 10px var(--neon-purple);
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.1); opacity: 0.7; }
}

.card-body {
    padding: 2rem;
}

/* Date Card Styles */
.release-date {
    text-align: center;
    margin: 1.5rem 0;
    font-family: 'Orbitron', sans-serif;
    position: relative;
}

.release-date::after {
    content: "";
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--neon-pink), transparent);
}

.date-day {
    font-size: 5rem;
    font-weight: 700;
    color: var(--neon-pink);
    line-height: 1;
    display: block;
    text-shadow: 0 0 15px var(--neon-pink);
}

.date-month {
    font-size: 2rem;
    color: var(--neon-blue);
    margin: 0 0.5rem;
    text-shadow: 0 0 10px var(--neon-blue);
}

.date-year {
    font-size: 1.5rem;
    color: var(--neon-purple);
    text-shadow: 0 0 8px var(--neon-purple);
}

.progress-bar {
    height: 12px;
    background: rgba(255,255,255,0.1);
    border-radius: 6px;
    margin-top: 3rem;
    position: relative;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    border-radius: 6px;
    background: linear-gradient(90deg, var(--neon-pink), var(--neon-purple));
    position: relative;
}

.progress-fill::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, 
        rgba(255,255,255,0.3) 0%, 
        rgba(255,255,255,0) 50%, 
        rgba(255,255,255,0.3) 100%);
    animation: progress-shine 3s infinite linear;
}

@keyframes progress-shine {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.progress-text {
    display: block;
    margin-top: 1rem;
    font-size: 0.9rem;
    text-align: center;
    color: var(--neon-blue);
    font-family: 'Orbitron', sans-serif;
}

/* Tracklist Styles */
.tracklist-grid {
    display: grid;
    gap: 1rem;
}

.track {
    display: grid;
    grid-template-columns: 40px 1fr auto;
    align-items: center;
    gap: 1.2rem;
    padding: 1rem;
    background: rgba(20,20,20,0.5);
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.track:hover {
    background: rgba(255,42,109,0.2);
    transform: translateX(5px);
}

.track::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 100%;
    background: var(--neon-purple);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.track:hover::before {
    opacity: 1;
}

.track[data-single="released"] {
    border-left: 3px solid var(--neon-blue);
}

.track[data-single="soon"] {
    border-left: 3px solid var(--neon-pink);
}

.track-number {
    font-family: 'Orbitron', sans-serif;
    color: var(--neon-purple);
    font-size: 1rem;
    font-weight: 700;
    text-align: center;
}

.track-name {
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    position: relative;
}

.track-name::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    color: var(--neon-pink);
    overflow: hidden;
    white-space: nowrap;
    transition: width 0.3s ease;
}

.track:hover .track-name::after {
    width: 100%;
}

.track-status {
    font-size: 0.75rem;
    padding: 0.3rem 0.6rem;
    background: var(--neon-blue);
    color: var(--dark-bg);
    border-radius: 15px;
    font-family: 'Orbitron', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.track[data-single="soon"] .track-status {
    background: var(--neon-pink);
}

/* Singles Styles */
.singles-grid {
    display: grid;
    gap: 2rem;
}

.single {
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 1.5rem;
    text-decoration: none;
    color: var(--text-color);
    transition: transform 0.3s ease;
    align-items: center;
}

.single:hover {
    transform: translateX(10px);
}

.single-artwork {
    aspect-ratio: 1;
    border-radius: 10px;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
    border: 2px solid var(--neon-purple);
    box-shadow: 0 5px 15px rgba(211, 0, 197, 0.3);
}

.single-artwork::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.4);
    transition: background 0.3s ease;
}

.single:hover .single-artwork::before {
    background: rgba(0,0,0,0.2);
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    background: rgba(255,42,109,0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
    box-shadow: 0 0 15px rgba(255, 42, 109, 0.5);
}

.play-button i {
    color: white;
    font-size: 1.2rem;
    margin-left: 2px;
}

.single:hover .play-button {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.1);
}

.single-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.single-title {
    font-weight: 700;
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--neon-pink);
    font-family: 'Orbitron', sans-serif;
    letter-spacing: 1px;
}

.single-date {
    font-size: 0.9rem;
    opacity: 0.8;
    margin-bottom: 1rem;
    font-family: 'Oxanium', sans-serif;
}

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

.platform-icons i {
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.platform-icons i:hover {
    transform: translateY(-3px);
}

.platform-icons i:nth-child(1) { 
    color: #FF0000;
    text-shadow: 0 0 5px #FF0000;
}
.platform-icons i:nth-child(2) { 
    color: #1DB954;
    text-shadow: 0 0 5px #1DB954;
}
.platform-icons i:nth-child(3) { 
    color: #FC3C44;
    text-shadow: 0 0 5px #FC3C44;
}

/* Platforms Section */
.platforms-section {
    margin: 3rem 0 1rem;
    text-align: center;
}

.platforms-section h4 {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    font-family: 'Orbitron', sans-serif;
    color: var(--neon-blue);
}

.streaming-icon-container {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin: 1.5rem auto;
    flex-wrap: wrap;
}

.stream-icon {
    color: var(--text-color);
    font-size: 2.5rem;
    transition: all 0.3s ease;
}

.stream-icon:hover {
    transform: translateY(-5px) scale(1.1);
}

.stream-icon:nth-child(1):hover { color: #1DB954; } /* Spotify */
.stream-icon:nth-child(2):hover { color: #FC3C44; } /* Apple */
.stream-icon:nth-child(3):hover { color: #FF0000; } /* YouTube */
.stream-icon:nth-child(4):hover { color: #00A8E1; } /* Amazon */

/* Countdown */
.countdown-container {
    margin: 4rem 0 2rem;
    text-align: center;
    position: relative;
}

.countdown-container::before {
    content: "";
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--neon-blue), transparent);
}

.countdown {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.countdown-item {
    background: rgba(13, 13, 13, 0.7);
    padding: 1.5rem;
    min-width: 110px;
    border-radius: 10px;
    border: 1px solid var(--neon-blue);
    box-shadow: 0 0 20px rgba(5, 217, 232, 0.3);
    position: relative;
    overflow: hidden;
}

.countdown-item::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(5, 217, 232, 0.1), transparent);
    transform: rotate(45deg);
    animation: shine 3s infinite;
}

.countdown-number {
    font-family: 'Orbitron', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--neon-blue);
    text-shadow: 0 0 15px var(--neon-blue);
    animation: neon-blue-pulse 2s infinite alternate;
    display: block;
    line-height: 1;
}

.countdown-label {
    font-family: 'Oxanium', sans-serif;
    font-size: 1rem;
    color: var(--text-color);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 0.8rem;
    display: block;
}

/* Responsive Adjustments */
@media (max-width: 1024px) {
    .release-info-grid {
        grid-template-columns: 1fr;
    }
    
    .track {
        grid-template-columns: 30px 1fr auto;
    }
    
    .single {
        grid-template-columns: 80px 1fr;
    }
}

@media (max-width: 768px) {
    .section-container {
        padding: 0 1.5rem;
    }
    
    .album-bio {
        font-size: 1rem;
    }
    
    .highlight {
        font-size: 1.1rem;
        padding: 1.5rem;
    }
    
    .date-day {
        font-size: 4rem;
    }
    
    .date-month {
        font-size: 1.5rem;
    }
    
    .countdown {
        gap: 1rem;
    }
    
    .countdown-item {
        min-width: 80px;
        padding: 1rem;
    }
    
    .countdown-number {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .track {
        grid-template-columns: 25px 1fr auto;
        gap: 0.8rem;
        padding: 0.8rem;
    }
    
    .track-status {
        font-size: 0.65rem;
        padding: 0.2rem 0.4rem;
    }
    
    .single {
        grid-template-columns: 70px 1fr;
        gap: 1rem;
    }
    
    .single-title {
        font-size: 1.1rem;
    }
    
    .countdown-item {
        min-width: 70px;
        padding: 0.8rem;
    }
    
    .countdown-number {
        font-size: 1.8rem;
    }
    
    .countdown-label {
        font-size: 0.8rem;
    }
}
.release-info-stack {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
}

.tracklist-stack {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.singles-stack {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.track {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 10px;
}

.single {
    display: flex;
    gap: 15px;
    align-items: center;
}

/* ===== HORROR ENHANCEMENTS - OPTIMIZED FOR READABILITY ===== */
/* ===== HORROR ENHANCEMENTS - CLEAN & READABLE ===== */

/* Blood Splatter Effect - Very Subtle */
body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    radial-gradient(circle at 20% 30%, rgba(255, 42, 109, 0.03) 2px, transparent 25px),
    radial-gradient(circle at 80% 70%, rgba(5, 217, 232, 0.02) 1px, transparent 20px),
    radial-gradient(circle at 40% 80%, rgba(211, 0, 197, 0.03) 3px, transparent 30px);
  pointer-events: none;
  z-index: -1;
  mix-blend-mode: overlay;
}

/* Horror Typography Enhancements - Clean */
.horror-text {
  font-family: 'Creepster', cursive;
  color: #ffffff;
  text-shadow: 
    0 0 5px var(--neon-pink),
    0 0 10px var(--neon-pink),
    0 0 20px var(--neon-purple);
}

/* Pulsing Heartbeat Effect - Subtle */
.heartbeat {
  animation: heartbeat 3s ease-in-out infinite;
}

@keyframes heartbeat {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.01); }
}

/* Horror Glitch - Minimal */
.horror-glitch {
  position: relative;
}

.album-artwork.horror-glitch:hover {
  animation: horror-glitch 0.5s ease-in-out;
}

@keyframes horror-glitch {
  0%, 100% { transform: translate(0); }
  25% { transform: translate(-2px, 1px); }
  75% { transform: translate(2px, -1px); }
}

/* Clean Neon Effects */
.neon-blood {
  color: #ffffff;
  text-shadow: 
    0 0 5px var(--neon-pink),
    0 0 10px var(--neon-pink),
    0 0 20px var(--neon-purple);
}

/* Clean Button Effects - NO RED BACKGROUNDS */
.horror-button {
  position: relative;
  overflow: hidden;
  background: transparent !important; /* Remove all backgrounds */
  border: 1px solid var(--neon-pink);
  transition: all 0.3s ease;
}

.horror-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 42, 109, 0.2), transparent);
  transition: left 0.5s;
}

.horror-button:hover::before {
  left: 100%;
}

.horror-button:hover {
  background: transparent !important;
  box-shadow: 0 0 15px var(--neon-pink);
  transform: translateY(-2px);
}

/* Skull Decor - Very Subtle */
.horror-decor {
  position: absolute;
  opacity: 0.05;
  font-size: 2rem;
  z-index: -1;
  animation: float-skull 15s ease-in-out infinite;
  color: var(--neon-pink);
}

@keyframes float-skull {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-10px) rotate(180deg); }
}

/* Clean Audio Distortion */
.audio-distortion::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 4px,
    rgba(255, 42, 109, 0.02) 4px,
    rgba(255, 42, 109, 0.02) 8px
  );
  animation: distortion-wave 0.3s infinite linear;
  pointer-events: none;
  opacity: 0.2;
}

@keyframes distortion-wave {
  0% { transform: translateY(0); }
  100% { transform: translateY(-8px); }
}

/* Clean Progress Bar */
.horror-progress {
  background: linear-gradient(90deg, var(--neon-pink), var(--neon-purple));
  background-size: 200% 100%;
  animation: horror-progress-shimmer 4s infinite linear;
}

@keyframes horror-progress-shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

/* Ghostly Apparition - Clean */
.ghost-fade {
  animation: ghost-appear 6s ease-in-out infinite alternate;
}

@keyframes ghost-appear {
  0% { opacity: 0.7; }
  100% { opacity: 1; }
}

/* Enhanced Track List - Clean */
.track.horror-track {
  position: relative;
  border-left: 2px solid transparent;
  transition: all 0.3s ease;
  background: rgba(20, 20, 20, 0.5);
}

.track.horror-track:hover {
  border-left-color: var(--neon-pink);
  background: rgba(255, 42, 109, 0.05); /* Very subtle pink */
  transform: translateX(3px);
}

.track.horror-track::before {
  content: '♫';
  position: absolute;
  left: -20px;
  color: var(--neon-pink);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.track.horror-track:hover::before {
  opacity: 0.6;
}

/* Clean Album Art Hover */
.album-artwork.horror-cover {
  position: relative;
  overflow: hidden;
}

.album-artwork.horror-cover:hover::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, transparent, rgba(255, 42, 109, 0.1), transparent);
  animation: horror-shine 2s ease-in-out;
}

@keyframes horror-shine {
  0% { transform: translateX(-100%) translateY(-100%); }
  100% { transform: translateX(100%) translateY(100%); }
}

/* Clean Horror Cards - NO RED BACKGROUNDS */
.horror-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 42, 109, 0.3);
  box-shadow: 0 0 20px rgba(255, 42, 109, 0.1);
  background: rgba(13, 13, 13, 0.8) !important; /* Ensure dark background */
}

.horror-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(255, 42, 109, 0.02) 0%, rgba(5, 217, 232, 0.01) 100%);
  z-index: -1;
}

/* Clean Singles - NO RED BACKGROUNDS */
.horror-single {
  transition: all 0.3s ease;
  border-radius: 8px;
  padding: 8px;
  background: rgba(20, 20, 20, 0.5) !important; /* Dark background */
}

.horror-single:hover {
  background: rgba(255, 42, 109, 0.05) !important; /* Very subtle pink */
  transform: translateX(3px);
}

/* Clean Neon Colors */
.neon-blue {
  color: #ffffff;
  text-shadow: 
    0 0 5px var(--neon-blue),
    0 0 10px var(--neon-blue);
}

.neon-purple {
  color: #ffffff;
  text-shadow: 
    0 0 5px var(--neon-purple),
    0 0 10px var(--neon-purple);
}

.neon-blue-pulse {
  animation: neon-blue-pulse 5s infinite alternate;
}

.stream-icon {
  background: none !important;
  border: none !important;
  box-shadow: none !important;
  transition: all 0.3s ease;
}

.stream-icon:hover {
  transform: translateY(-5px) scale(1.1);
  text-shadow: 0 0 10px var(--neon-pink);
  border: none !important;
  background: none !important;
  box-shadow: none !important;
}

/* Keep hover colors only */
.stream-icon:hover .fa-spotify { color: #1DB954 !important; }
.stream-icon:hover .fa-apple { color: #FC3C44 !important; }
.stream-icon:hover .fa-youtube { color: #FF0000 !important; }
.stream-icon:hover .fa-amazon { color: #00A8E1 !important; }
.stream-icon:hover .fa-soundcloud { color: #FF3300 !important; }


/* Clean status indicators */
.track-status {
  font-size: 0.75rem;
  padding: 0.2rem 0.5rem;
  border-radius: 12px;
  font-family: 'Orbitron', sans-serif;
  text-transform: uppercase;
  letter-spacing: 1px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #ffffff;
}

.track[data-single="released"] .track-status {
  background: rgba(5, 217, 232, 0.1);
  border-color: var(--neon-blue);
  color: var(--neon-blue);
}

.track[data-single="soon"] .track-status {
  background: rgba(255, 42, 109, 0.1);
  border-color: var(--neon-pink);
  color: var(--neon-pink);
}

/* Ensure all text has proper contrast */
.horror-text,
.neon-blood,
.neon-blue,
.neon-purple,
.track-name,
.single-title,
.countdown-number {
  color: #ffffff !important; /* Force white text for readability */
}

/* Remove any remaining red backgrounds from existing elements */
.release-card,
.tracklist-card,
.singles-card,
.date-card,
.countdown-item {
  background: rgba(13, 13, 13, 0.8) !important;
}

/* Clean hover states */
.track:hover,
.single:hover {
  background: rgba(255, 42, 109, 0.05) !important; /* Very subtle pink */
}

/* ---- Streaming icons: no boxes, no outlines ---- */
.streaming-icon-container .stream-icon,
.platform-icons .stream-icon,
#social-media .stream-icon {
  background: none !important;
  border: none !important;
  box-shadow: none !important;
  outline: none !important;
  text-decoration: none !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;          /* make sure no padding looks like a box */
  line-height: 1;
}

.streaming-icon-container .stream-icon i,
.platform-icons .stream-icon i,
#social-media .stream-icon i {
  display: inline-block;
  line-height: 1;
  background: none !important;
  border: none !important;
  box-shadow: none !important;
}

/* Hover: keep motion/color only (no box) */
.streaming-icon-container .stream-icon:hover,
.platform-icons .stream-icon:hover,
#social-media .stream-icon:hover {
  transform: translateY(-5px) scale(1.1);
  background: none !important;
  border: none !important;
  box-shadow: none !important;
  text-decoration: none !important;
}

/* Optional focus style (accessible). Remove if you want zero focus ring. */
.streaming-icon-container .stream-icon:focus-visible,
.platform-icons .stream-icon:focus-visible,
#social-media .stream-icon:focus-visible {
  outline: 2px solid rgba(255,255,255,.25);
  outline-offset: 4px;
  border: none !important;
  box-shadow: none !important;
}

/* Keep your platform hover colors without adding borders */
.stream-icon:hover .fa-spotify   { color: #1DB954 !important; }
.stream-icon:hover .fa-apple     { color: #FC3C44 !important; }
.stream-icon:hover .fa-youtube   { color: #FF0000 !important; }
.stream-icon:hover .fa-amazon    { color: #00A8E1 !important; }
.stream-icon:hover .fa-soundcloud{ color: #FF3300 !important; }
