/* 🌌 Dyl’s Cyber Space — 2025 Edition
   Clean | Futuristic | Personal | NeoCities vibes
*/

@import url('https://fonts.googleapis.com/css2?family=Share+Tech+Mono&display=swap');

body {
  background: linear-gradient(135deg, #0d0d0d 0%, #1a1a1a 40%, #001f2d 100%);
  color: #00ffe0;
  font-family: 'Share Tech Mono', monospace;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  margin: 0;
  padding: 40px 20px;
  min-height: 100vh;
}

h1 {
  font-size: 3rem;
  color: #00ffe0;
  text-shadow: 0 0 10px #00ffe0;
  margin-bottom: 10px;
  letter-spacing: 1px;
}

.subtitle {
  color: #a0fff6;
  font-size: 1.1rem;
  margin-bottom: 40px;
  text-align: center;
  opacity: 0.9;
}

p {
  color: #c8ffff;
  font-size: 1rem;
  line-height: 1.6;
  max-width: 750px;
  text-align: center;
  margin: 20px 0;
}

.btn-group {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
  margin: 40px 0;
}

a.btn {
  background: transparent;
  border: 2px solid #00ffe0;
  color: #00ffe0;
  padding: 12px 25px;
  text-decoration: none;
  font-size: 1rem;
  transition: all 0.3s ease;
  border-radius: 10px;
}

a.btn:hover {
  background: #00ffe0;
  color: #0a0a0a;
  box-shadow: 0 0 20px #00ffe0;
  transform: translateY(-3px);
}

.playlist-container {
  width: 350px;
  height: 350px;
  border: 2px solid #00ffe0;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 0 20px #00ffe0;
  margin: 40px 0 80px;
}

.playlist-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* Footer NeoCities link */
.footer {
  margin-top: 60px;
  text-align: center;
}

.footer img {
  width: 120px;
  transition: 0.3s;
}

.footer img:hover {
  filter: drop-shadow(0 0 10px #00ffe0);
  transform: scale(1.05);
}

/* Glow flicker effect */
@keyframes flicker {
  0%, 19%, 21%, 23%, 25%, 54%, 56%, 100% {
    text-shadow: 0 0 10px #00ffe0, 0 0 20px #00ffe0;
  }
  20%, 24%, 55% {
    text-shadow: none;
  }
}
