* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: #0c0c10;
  color: #c8c8d0;
  font-family: "IBM Plex Mono", "Courier New", monospace;
  min-height: 100vh;
  line-height: 1.6;
  overflow-x: hidden;
}

/* subtle noise overlay */
.noise {
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 100;
}

/* navigation */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 48px;
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 0 28px;
  background: rgba(12, 12, 16, 0.85);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid #1e1e28;
  z-index: 50;
}

nav a {
  color: #666;
  text-decoration: none;
  font-size: 13px;
  letter-spacing: 0.06em;
  transition: color 0.2s;
}

nav a:hover,
nav a.active {
  color: #fff;
}

/* main content */
main {
  max-width: 580px;
  margin: 0 auto;
  padding: 140px 24px 100px;
  text-align: center;
}

/* logo */
.logo {
  font-size: clamp(4.8rem, 16vw, 9rem);
  font-weight: 700;
  letter-spacing: -0.06em;
  color: #fff;
  text-shadow: 
    0 0 60px rgba(160, 100, 255, 0.35),
    0 0 120px rgba(160, 100, 255, 0.15);
  animation: sway 3s ease-in-out infinite;
  transform-origin: center 70%;
  margin-bottom: 50px;
  user-select: none;
}

@keyframes sway {
  0%   { transform: rotate(-8deg); }
  50%  { transform: rotate(8deg); }
  100% { transform: rotate(-8deg); }
}

/* social links */
.socials {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 60px;
}

.socials a {
  color: #777;
  text-decoration: none;
  font-size: 12px;
  letter-spacing: 0.08em;
  padding: 7px 14px;
  border: 1px solid #2a2a36;
  transition: all 0.2s;
}

.socials a:hover {
  color: #fff;
  border-color: #a064ff;
  background: rgba(160, 100, 255, 0.08);
}

/* bio */
.bio {
  text-align: left;
  font-size: 14px;
  color: #999;
  border-top: 1px solid #1e1e28;
  padding-top: 28px;
}

.bio p {
  margin-bottom: 14px;
}

.bio p:last-child {
  margin-bottom: 0;
}

.bio strong {
  color: #c9a0ff;
  font-weight: 600;
}

/* music page */
.music-page h1 {
  font-size: 1.4rem;
  letter-spacing: 0.12em;
  color: #a064ff;
  margin-bottom: 50px;
  font-weight: 500;
}

.videos {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.video {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  background: #111116;
  border: 1px solid #1e1e28;
}

.video iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* mobile */
@media (max-width: 500px) {
  nav {
    padding: 0 18px;
    gap: 20px;
  }

  main {
    padding: 110px 18px 80px;
  }

  .logo {
    margin-bottom: 40px;
  }
}