* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Arial', sans-serif;
}

body {
  background: linear-gradient(135deg, #0f0f0f, #1a1a1a);
  color: white;
  overflow-x: hidden;
}

header {
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  background: radial-gradient(circle at top, #111 0%, #000 100%);
}

header h1 {
  font-size: 4rem;
  color: #00ffe0;
  text-shadow: 0 0 20px #00ffe0, 0 0 40px #00a0ff;
  animation: pulse 3s infinite;
}

header p {
  font-size: 1.3rem;
  margin-top: 10px;
  color: #ccc;
}

@keyframes pulse {
  0% { text-shadow: 0 0 10px #00ffe0; }
  50% { text-shadow: 0 0 30px #00a0ff; }
  100% { text-shadow: 0 0 10px #00ffe0; }
}

section {
  padding: 60px 20px;
  text-align: center;
}

section h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #00ffe0;
  text-shadow: 0 0 10px #00a0ff;
}

.music iframe {
  border-radius: 12px;
  width: 90%;
  max-width: 600px;
  height: 166px;
}

.buttons a {
  display: inline-block;
  margin: 10px;
  padding: 12px 25px;
  border-radius: 30px;
  background: #00ffe0;
  color: #000;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s;
}

.buttons a:hover {
  background: #00a0ff;
  color: #fff;
}

footer {
  padding: 30px;
  text-align: center;
  background: #111;
  font-size: 0.9rem;
  color: #aaa;
}

.socials a {
  margin: 0 10px;
  color: #00ffe0;
  text-decoration: none;
  font-weight: bold;
}

.socials a:hover {
  color: #00a0ff;
}