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

:root {
  --bg-color: #1a1a2e;
  --bg-dark: #16213e;
  --bg-accent: #0f3460;
  --text-primary: #ffffff;
  --text-secondary: #e0e0e0;
  --pink: #ff2e63;
  --purple: #9d4edd;
  --blue: #00d9ff;
  --yellow: #ffd93d;
  --green: #6bcb77;
  --orange: #ff8a5c;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Space Mono', monospace;
  background-color: var(--bg-color);
  color: var(--text-primary);
  overflow-x: hidden;
  cursor: crosshair;
}

::selection {
  background: var(--pink);
  color: var(--bg-color);
}

.cursor-trail {
  position: fixed;
  width: 20px;
  height: 20px;
  border: 2px solid var(--pink);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transition: transform 0.1s ease, opacity 0.3s ease;
  box-shadow: 0 0 15px var(--pink);
}

.floating-nav {
  position: fixed;
  top: 50%;
  right: 30px;
  transform: translateY(-50%);
  z-index: 1000;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.nav-link {
  font-size: 11px;
  letter-spacing: 3px;
  color: var(--text-primary);
  text-decoration: none;
  padding: 8px 15px;
  position: relative;
  transition: all 0.3s ease;
  writing-mode: vertical-rl;
  text-orientation: mixed;
}

.nav-link::before {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--pink), var(--purple));
  transition: width 0.3s ease;
}

.nav-link:hover::before {
  width: 30px;
}

.nav-link:hover {
  color: var(--pink);
  text-shadow: 0 0 10px var(--pink);
}

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background: radial-gradient(ellipse at center, var(--bg-dark) 0%, var(--bg-color) 70%);
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 20% 80%, rgba(157, 78, 221, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(255, 46, 99, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 40% 40%, rgba(0, 217, 255, 0.1) 0%, transparent 40%);
  pointer-events: none;
}

.hero-content {
  text-align: center;
  z-index: 10;
}

.glitch-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(60px, 15vw, 180px);
  font-weight: 400;
  letter-spacing: -5px;
  position: relative;
  display: inline-block;
}

.letter {
  display: inline-block;
  animation: letterFloat 3s ease-in-out infinite;
  animation-delay: calc(var(--i) * 0.1s);
  transition: transform 0.3s ease, color 0.3s ease, text-shadow 0.3s ease;
}

.letter:nth-child(1) { color: var(--pink); }
.letter:nth-child(2) { color: var(--purple); }
.letter:nth-child(3) { color: var(--blue); }
.letter:nth-child(4) { color: var(--yellow); }
.letter:nth-child(6) { color: var(--green); }
.letter:nth-child(7) { color: var(--orange); }
.letter:nth-child(8) { color: var(--pink); }

.letter:hover {
  transform: scale(1.2) rotate(10deg);
  text-shadow: 0 0 30px currentColor;
}

.letter.number {
  font-family: 'Space Mono', monospace;
  font-weight: 700;
  color: var(--text-primary);
  text-shadow: 0 0 20px var(--blue), 0 0 40px var(--blue);
}

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

.tagline {
  font-size: 12px;
  letter-spacing: 8px;
  margin-top: 30px;
  opacity: 0.7;
  background: linear-gradient(90deg, var(--pink), var(--purple), var(--blue));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.floating-elements {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
}

.float-text {
  position: absolute;
  left: var(--x);
  top: var(--y);
  font-size: 14px;
  letter-spacing: 3px;
  opacity: 0.5;
  animation: floatDrift 8s ease-in-out infinite;
}

.float-text:nth-child(1) { color: var(--pink); }
.float-text:nth-child(2) { color: var(--blue); }
.float-text:nth-child(3) { color: var(--yellow); }
.float-text:nth-child(4) { color: var(--green); }
.float-text:nth-child(5) { color: var(--purple); }
.float-text:nth-child(6) { color: var(--orange); }
.float-text:nth-child(7) { color: var(--pink); }
.float-text:nth-child(8) { color: var(--blue); }
.float-text:nth-child(9) { color: var(--yellow); }
.float-text:nth-child(10) { color: var(--green); }

.float-symbol {
  position: absolute;
  left: var(--x);
  top: var(--y);
  font-size: 24px;
  opacity: 0.4;
  animation: floatDrift 8s ease-in-out infinite;
}

.float-symbol:nth-child(11) { color: var(--purple); }
.float-symbol:nth-child(12) { color: var(--orange); }
.float-symbol:nth-child(13) { color: var(--pink); }
.float-symbol:nth-child(14) { color: var(--blue); }
.float-symbol:nth-child(15) { color: var(--yellow); }
.float-symbol:nth-child(16) { color: var(--green); }

@keyframes floatDrift {
  0%, 100% {
    transform: translate(0, 0) rotate(0deg);
  }
  25% {
    transform: translate(10px, -20px) rotate(5deg);
  }
  50% {
    transform: translate(-15px, 10px) rotate(-3deg);
  }
  75% {
    transform: translate(5px, 15px) rotate(2deg);
  }
}

.section {
  min-height: 100vh;
  padding: 100px 50px;
  position: relative;
}

.section-header {
  margin-bottom: 60px;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(40px, 8vw, 100px);
  font-weight: 400;
  line-height: 0.9;
}

.title-line {
  display: block;
}

.title-line.accent {
  background: linear-gradient(90deg, var(--pink), var(--purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-style: italic;
}

.section-title.scattered {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}

.scatter-word {
  display: inline-block;
  transform: rotate(var(--rot));
}

.scatter-word:first-child {
  color: var(--blue);
  text-shadow: 0 0 20px var(--blue);
}

.scatter-word:last-child {
  color: var(--yellow);
  text-shadow: 0 0 20px var(--yellow);
}

.music-section {
  background: linear-gradient(180deg, var(--bg-color) 0%, var(--bg-dark) 50%, var(--bg-accent) 100%);
}

.album-showcase {
  max-width: 800px;
  margin: 0 auto 60px;
}

.album-embed {
  position: relative;
  border: 3px solid transparent;
  border-image: linear-gradient(135deg, var(--pink), var(--purple), var(--blue)) 1;
  padding: 20px;
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(10px);
}

.album-embed::before {
  content: 'NOW PLAYING';
  position: absolute;
  top: -12px;
  left: 30px;
  background: var(--bg-dark);
  padding: 0 15px;
  font-size: 11px;
  letter-spacing: 3px;
  color: var(--pink);
  text-shadow: 0 0 10px var(--pink);
}

.album-info {
  margin-top: 30px;
  text-align: center;
}

.album-decoration {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.deco-line {
  width: 50px;
  height: 2px;
  background: linear-gradient(90deg, var(--purple), var(--blue));
}

.deco-text {
  font-size: 11px;
  letter-spacing: 4px;
  opacity: 0.8;
  color: var(--blue);
}

.mystery-teaser {
  text-align: center;
  padding: 80px 20px;
}

.mystery-symbol {
  font-size: 80px;
  color: var(--purple);
  text-shadow: 0 0 40px var(--purple), 0 0 80px var(--pink);
  animation: pulse-glow 3s ease-in-out infinite;
  margin-bottom: 30px;
}

@keyframes pulse-glow {
  0%, 100% {
    opacity: 0.6;
    transform: scale(1);
    text-shadow: 0 0 40px var(--purple), 0 0 80px var(--pink);
  }
  50% {
    opacity: 1;
    transform: scale(1.1);
    text-shadow: 0 0 60px var(--purple), 0 0 120px var(--pink), 0 0 160px var(--blue);
  }
}

.mystery-text-link {
  text-decoration: none;
  display: inline-block;
  cursor: pointer;
  position: relative;
}

.mystery-text-link .mystery-text {
  transition: all 0.4s ease;
}

.mystery-text-link:hover .mystery-text {
  letter-spacing: 12px;
  text-shadow: 0 0 30px var(--pink), 0 0 60px var(--purple);
}

.mystery-text-link::after {
  content: '';
  position: absolute;
  bottom: 5px;
  left: 50%;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--pink), var(--purple));
  transition: all 0.4s ease;
  transform: translateX(-50%);
}

.mystery-text-link:hover::after {
  width: 60%;
}

.mystery-text {
  font-family: 'Playfair Display', serif;
  font-size: clamp(24px, 5vw, 40px);
  font-style: italic;
  letter-spacing: 8px;
  text-transform: lowercase;
  background: linear-gradient(135deg, var(--pink), var(--purple), var(--blue));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 30px;
}

.mystery-dots {
  display: flex;
  justify-content: center;
  gap: 15px;
}

.mystery-dots span {
  width: 8px;
  height: 8px;
  background: var(--pink);
  border-radius: 50%;
  animation: dot-pulse 1.5s ease-in-out infinite;
}

.mystery-dots span:nth-child(2) {
  animation-delay: 0.3s;
  background: var(--purple);
}

.mystery-dots span:nth-child(3) {
  animation-delay: 0.6s;
  background: var(--blue);
}

@keyframes dot-pulse {
  0%, 100% {
    opacity: 0.3;
    transform: scale(1);
  }
}

.single-showcase {
  text-align: center;
  padding: 40px 20px;
  max-width: 700px;
  margin: 0 auto;
}

.single-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(48px, 10vw, 80px);
  font-weight: 700;
  background: linear-gradient(135deg, var(--pink) 0%, #ff6b6b 50%, var(--pink) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 10px;
  letter-spacing: 4px;
}

.single-heart {
  font-size: 60px;
  color: #ff2e63;
  text-shadow: 0 0 30px #ff2e63, 0 0 60px #ff2e63;
  animation: heart-beat 1.5s ease-in-out infinite;
  margin-bottom: 30px;
}

@keyframes heart-beat {
  0%, 100% {
    transform: scale(1);
  }
  25% {
    transform: scale(1.1);
  }
  50% {
    transform: scale(1);
  }
  75% {
    transform: scale(1.15);
  }
}

.video-embed {
  margin-bottom: 30px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(255, 46, 99, 0.3);
  border: 2px solid rgba(255, 46, 99, 0.3);
}

.video-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
}

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

.stream-links {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.stream-btn {
  padding: 14px 28px;
  border-radius: 30px;
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: all 0.3s ease;
  font-family: 'Space Mono', monospace;
}

.stream-btn.spotify {
  background: #1DB954;
  color: #000;
}

.stream-btn.spotify:hover {
  box-shadow: 0 0 30px #1DB954;
  transform: translateY(-3px);
}

.stream-btn.apple {
  background: linear-gradient(135deg, #fc3c44, #fa2d55);
  color: #fff;
}

.stream-btn.apple:hover {
  box-shadow: 0 0 30px #fc3c44;
  transform: translateY(-3px);
}

.stream-btn.youtube {
  background: #FF0000;
  color: #fff;
}

.stream-btn.youtube:hover {
  box-shadow: 0 0 30px #FF0000;
  transform: translateY(-3px);
}

.music-links {
  text-align: center;
  margin-top: 80px;
}

.links-title {
  font-size: 11px;
  letter-spacing: 5px;
  margin-bottom: 30px;
  opacity: 0.6;
}

.platform-links {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.platform-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--text-primary);
  padding: 20px 30px;
  border: 1px solid transparent;
  transition: all 0.3s ease;
}

.platform-link:nth-child(1):hover {
  color: var(--green);
  border-color: var(--green);
  box-shadow: 0 0 20px rgba(107, 203, 119, 0.3);
  transform: translateY(-5px);
}

.platform-link:nth-child(2):hover {
  color: var(--pink);
  border-color: var(--pink);
  box-shadow: 0 0 20px rgba(255, 46, 99, 0.3);
  transform: translateY(-5px);
}

.platform-link:nth-child(3):hover {
  color: var(--orange);
  border-color: var(--orange);
  box-shadow: 0 0 20px rgba(255, 138, 92, 0.3);
  transform: translateY(-5px);
}

.platform-icon {
  font-size: 28px;
}

.platform-name {
  font-size: 12px;
  letter-spacing: 2px;
}

.visuals-section {
  background: linear-gradient(180deg, var(--bg-accent) 0%, var(--bg-dark) 100%);
}

.featured-image {
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
}

.featured-image img {
  width: 100%;
  height: auto;
  display: block;
  border: 3px solid transparent;
  border-image: linear-gradient(135deg, var(--pink), var(--purple), var(--blue), var(--yellow)) 1;
  box-shadow: 0 0 40px rgba(157, 78, 221, 0.3);
  transition: all 0.4s ease;
}

.featured-image img:hover {
  box-shadow: 0 0 60px rgba(255, 46, 99, 0.4), 0 0 80px rgba(0, 217, 255, 0.3);
  transform: scale(1.01);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.gallery-item {
  aspect-ratio: 1;
  border: 2px solid rgba(255,255,255,0.2);
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.4s ease;
}

.gallery-item.large {
  grid-column: span 2;
  aspect-ratio: 2;
}

.gallery-item:nth-child(1) {
  border-color: var(--pink);
}
.gallery-item:nth-child(2) {
  border-color: var(--purple);
}
.gallery-item:nth-child(3) {
  border-color: var(--blue);
}
.gallery-item:nth-child(4) {
  border-color: var(--yellow);
}

.gallery-item:hover {
  transform: scale(1.02);
}

.gallery-item:nth-child(1):hover {
  box-shadow: 10px 10px 0 var(--pink), 0 0 30px rgba(255, 46, 99, 0.3);
}
.gallery-item:nth-child(2):hover {
  box-shadow: 10px 10px 0 var(--purple), 0 0 30px rgba(157, 78, 221, 0.3);
}
.gallery-item:nth-child(3):hover {
  box-shadow: 10px 10px 0 var(--blue), 0 0 30px rgba(0, 217, 255, 0.3);
}
.gallery-item:nth-child(4):hover {
  box-shadow: 10px 10px 0 var(--yellow), 0 0 30px rgba(255, 217, 61, 0.3);
}

.item-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 15px;
  background: linear-gradient(135deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0.02) 100%);
  transition: background 0.3s ease;
}

.gallery-item:nth-child(1) .placeholder-icon { color: var(--pink); }
.gallery-item:nth-child(2) .placeholder-icon { color: var(--purple); }
.gallery-item:nth-child(3) .placeholder-icon { color: var(--blue); }
.gallery-item:nth-child(4) .placeholder-icon { color: var(--yellow); }

.gallery-item:hover .item-placeholder {
  background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.05) 100%);
}

.placeholder-icon {
  font-size: 48px;
  opacity: 0.8;
}

.placeholder-text {
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.albums-section {
  background: linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-color) 100%);
  overflow: hidden;
}

.album-carousel {
  width: 100%;
  overflow: hidden;
  padding: 40px 0;
  position: relative;
}

.album-carousel::before,
.album-carousel::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 150px;
  z-index: 2;
  pointer-events: none;
}

.album-carousel::before {
  left: 0;
  background: linear-gradient(90deg, var(--bg-dark) 0%, transparent 100%);
}

.album-carousel::after {
  right: 0;
  background: linear-gradient(-90deg, var(--bg-color) 0%, transparent 100%);
}

.carousel-track {
  display: flex;
  gap: 40px;
  animation: scroll var(--scroll-duration, 20s) linear infinite;
  width: max-content;
}

.carousel-track:hover {
  animation-play-state: paused;
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(var(--scroll-distance, -50%));
  }
}

.album-slide {
  flex-shrink: 0;
  width: 232px;
  height: 232px;
  position: relative;
  overflow: hidden;
  border: 3px solid rgba(255,255,255,0.1);
  transition: all 0.4s ease;
  display: block;
  text-decoration: none;
  background: rgba(0,0,0,0.3);
}

.album-slide:hover {
  border-color: var(--pink);
  transform: scale(1.05);
  box-shadow: 0 0 50px rgba(255, 46, 99, 0.4);
}

.album-slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.4s ease;
}

.album-slide:hover img {
  transform: scale(1.1);
}

.album-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px;
  background: linear-gradient(transparent, rgba(0,0,0,0.9));
  transform: translateY(100%);
  transition: transform 0.4s ease;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.album-slide:hover .album-overlay {
  transform: translateY(0);
}

.album-name {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--pink);
  letter-spacing: 2px;
}

.album-artist {
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  opacity: 0.7;
  color: var(--text-primary);
}

@media (max-width: 768px) {
  .album-slide {
    width: 160px;
    height: 160px;
  }
  
  .carousel-track {
    gap: 25px;
  }
  
  .album-carousel::before,
  .album-carousel::after {
    width: 50px;
  }
}

.behind-section {
  background: linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-color) 100%);
}

.behind-content {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.behind-quote {
  font-family: 'Playfair Display', serif;
  font-size: clamp(24px, 4vw, 40px);
  font-style: italic;
  line-height: 1.4;
  margin-bottom: 30px;
  background: linear-gradient(135deg, var(--pink), var(--purple), var(--blue));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.behind-description {
  font-size: 14px;
  line-height: 1.8;
  opacity: 0.8;
}

.behind-visuals {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.process-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 25px 30px;
  border: 2px solid rgba(255,255,255,0.2);
  transition: all 0.3s ease;
  cursor: pointer;
  background: rgba(255,255,255,0.02);
}

.process-card:nth-child(1) {
  border-color: var(--pink);
}
.process-card:nth-child(2) {
  border-color: var(--purple);
}
.process-card:nth-child(3) {
  border-color: var(--blue);
}

.process-card:nth-child(1):hover {
  background: var(--pink);
  color: var(--bg-color);
  transform: translateX(10px);
  box-shadow: 0 0 30px rgba(255, 46, 99, 0.4);
}
.process-card:nth-child(2):hover {
  background: var(--purple);
  color: var(--bg-color);
  transform: translateX(10px);
  box-shadow: 0 0 30px rgba(157, 78, 221, 0.4);
}
.process-card:nth-child(3):hover {
  background: var(--blue);
  color: var(--bg-color);
  transform: translateX(10px);
  box-shadow: 0 0 30px rgba(0, 217, 255, 0.4);
}

.card-number {
  font-size: 11px;
  letter-spacing: 2px;
  opacity: 0.5;
}

.card-title {
  font-size: 14px;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.contact-section {
  background: linear-gradient(180deg, var(--bg-color) 0%, var(--bg-dark) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.contact-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(50px, 12vw, 150px);
  font-weight: 400;
  margin-bottom: 60px;
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.word-scatter {
  display: inline-block;
}

.word-scatter:nth-child(1) {
  color: var(--yellow);
  text-shadow: 0 0 20px var(--yellow);
}
.word-scatter:nth-child(2) {
  color: var(--pink);
  text-shadow: 0 0 20px var(--pink);
}
.word-scatter:nth-child(3) {
  color: var(--blue);
  text-shadow: 0 0 20px var(--blue);
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 50px;
  margin-bottom: 60px;
}

.social-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--text-primary);
  transition: all 0.3s ease;
}

.social-link:nth-child(1):hover {
  transform: scale(1.1);
  color: var(--pink);
}
.social-link:nth-child(1):hover .social-icon {
  border-color: var(--pink);
  box-shadow: 0 0 20px var(--pink);
}

.social-link:nth-child(2):hover {
  transform: scale(1.1);
  color: var(--blue);
}
.social-link:nth-child(2):hover .social-icon {
  border-color: var(--blue);
  box-shadow: 0 0 20px var(--blue);
}

.social-link:nth-child(3):hover {
  transform: scale(1.1);
  color: var(--pink);
}
.social-link:nth-child(3):hover .social-icon {
  border-color: var(--pink);
  box-shadow: 0 0 20px var(--pink);
}

.social-icon {
  font-size: 24px;
  font-weight: 700;
  width: 60px;
  height: 60px;
  border: 2px solid currentColor;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.social-name {
  font-size: 11px;
  letter-spacing: 2px;
}

.contact-email {
  margin-top: 40px;
}

.email-label {
  display: block;
  font-size: 11px;
  letter-spacing: 3px;
  opacity: 0.6;
  margin-bottom: 15px;
}

.email-link {
  font-size: 18px;
  color: var(--text-primary);
  text-decoration: none;
  border-bottom: 2px solid var(--purple);
  padding-bottom: 5px;
  transition: all 0.3s ease;
}

.email-link:hover {
  color: var(--purple);
  text-shadow: 0 0 10px var(--purple);
}

.site-footer {
  padding: 30px 50px;
  background: linear-gradient(90deg, var(--bg-accent), var(--bg-dark));
  border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  font-style: italic;
  background: linear-gradient(90deg, var(--pink), var(--purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer-year {
  font-size: 12px;
  letter-spacing: 2px;
  color: var(--blue);
}

@media (max-width: 768px) {
  .floating-nav {
    top: auto;
    bottom: 20px;
    right: 50%;
    transform: translateX(50%);
    flex-direction: row;
    background: linear-gradient(90deg, rgba(255, 46, 99, 0.9), rgba(157, 78, 221, 0.9));
    padding: 10px 15px;
    border-radius: 30px;
    backdrop-filter: blur(10px);
    gap: 5px;
  }
  
  .nav-link {
    writing-mode: horizontal-tb;
    font-size: 9px;
    letter-spacing: 1px;
    padding: 5px 8px;
    color: var(--text-primary);
  }
  
  .nav-link::before {
    display: none;
  }
  
  .section {
    padding: 60px 15px;
    min-height: auto;
  }
  
  .section-header {
    margin-bottom: 40px;
  }
  
  .section-title {
    font-size: clamp(32px, 10vw, 60px);
  }
  
  .section-title.scattered {
    gap: 15px;
    justify-content: center;
  }
  
  .hero {
    padding: 80px 15px 120px;
  }
  
  .hero-name {
    font-size: clamp(36px, 12vw, 80px);
    flex-wrap: wrap;
    justify-content: center;
    gap: 5px;
  }
  
  .letter {
    margin: 0 2px;
  }
  
  .float-text {
    font-size: 10px;
    letter-spacing: 2px;
    opacity: 0.3;
  }
  
  .float-symbol {
    font-size: 16px;
    opacity: 0.25;
  }
  
  .mystery-teaser {
    padding: 50px 15px;
  }
  
  .mystery-symbol {
    font-size: 50px;
    margin-bottom: 20px;
  }
  
  .mystery-text {
    font-size: clamp(18px, 5vw, 28px);
    letter-spacing: 5px;
    margin-bottom: 20px;
  }
  
  .mystery-dots span {
    width: 6px;
    height: 6px;
  }
  
  .single-showcase {
    padding: 30px 15px;
  }
  
  .single-title {
    font-size: clamp(36px, 10vw, 60px);
  }
  
  .single-heart {
    font-size: 40px;
    margin-bottom: 20px;
  }
  
  .video-embed {
    margin-bottom: 20px;
  }
  
  .stream-links {
    gap: 12px;
  }
  
  .stream-btn {
    padding: 12px 20px;
    font-size: 11px;
    letter-spacing: 1px;
  }
  
  .music-links {
    margin-top: 50px;
  }
  
  .links-title {
    font-size: 10px;
    letter-spacing: 3px;
    margin-bottom: 20px;
  }
  
  .platform-links {
    gap: 15px;
  }
  
  .platform-link {
    padding: 15px 20px;
  }
  
  .platform-icon {
    font-size: 22px;
  }
  
  .platform-name {
    font-size: 10px;
    letter-spacing: 1px;
  }
  
  .featured-image {
    padding: 0 10px;
  }
  
  .featured-image img {
    border-width: 2px;
  }
  
  .album-carousel {
    padding: 30px 0;
  }
  
  .album-carousel::before,
  .album-carousel::after {
    width: 30px;
  }
  
  .carousel-track {
    gap: 20px;
  }
  
  .album-slide {
    width: 150px;
    height: 150px;
    border-width: 2px;
  }
  
  .album-overlay {
    padding: 12px;
  }
  
  .album-name {
    font-size: 12px;
    letter-spacing: 1px;
  }
  
  .album-artist {
    font-size: 9px;
    letter-spacing: 2px;
  }
  
  .gallery-item.large {
    grid-column: span 1;
    aspect-ratio: 1;
  }
  
  .behind-content {
    grid-template-columns: 1fr;
  }
  
  .contact-title {
    flex-direction: column;
    gap: 10px;
  }
  
  .social-links {
    gap: 30px;
  }
  
  .cursor-trail {
    display: none;
  }
}

@media (max-width: 480px) {
  .floating-nav {
    padding: 8px 10px;
    gap: 2px;
  }
  
  .nav-link {
    font-size: 8px;
    padding: 4px 6px;
    letter-spacing: 0.5px;
  }
  
  .hero-name {
    font-size: clamp(28px, 11vw, 50px);
  }
  
  .section {
    padding: 50px 12px;
  }
  
  .section-title {
    font-size: clamp(28px, 9vw, 45px);
  }
  
  .mystery-symbol {
    font-size: 40px;
  }
  
  .mystery-text {
    font-size: 16px;
    letter-spacing: 4px;
  }
  
  .platform-links {
    flex-direction: column;
    gap: 10px;
  }
  
  .platform-link {
    flex-direction: row;
    padding: 12px 20px;
    gap: 15px;
  }
  
  .album-slide {
    width: 120px;
    height: 120px;
  }
  
  .float-text,
  .float-symbol {
    display: none;
  }
}

@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

body::after {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 10% 20%, rgba(255, 46, 99, 0.03) 0%, transparent 20%),
    radial-gradient(circle at 90% 80%, rgba(0, 217, 255, 0.03) 0%, transparent 20%),
    radial-gradient(circle at 50% 50%, rgba(157, 78, 221, 0.02) 0%, transparent 30%);
  pointer-events: none;
  z-index: -1;
}

body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml,<svg viewBox="0 0 200 200" xmlns="http://www.w3.org/2000/svg"><filter id="noise"><feTurbulence type="fractalNoise" baseFrequency="0.9" numOctaves="4" stitchTiles="stitch"/></filter><rect width="100%" height="100%" filter="url(%23noise)"/></svg>');
  opacity: 0.02;
  pointer-events: none;
  z-index: 9998;
}