
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-family: 'Open Sans', sans-serif;
  background: linear-gradient(135deg, #0D0D1A, #1A1A2E, #0D0D1A);
  background-size: 600% 600%;
  animation: gradientShift 20s ease infinite;
  color: #FFFFFF;
  position: relative;
}
@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
nav {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(13,13,26,0.9);
  padding: 10px 0;
  z-index: 1000;
  text-align: center;
}
nav a {
  color: #FF5EDF;
  margin: 0 15px;
  font-weight: bold;
  text-decoration: none;
  font-family: 'Orbitron', sans-serif;
}
nav a:nth-child(2) { color: #00F0FF; }
nav a:nth-child(3) { color: #FFD369; }
nav a:nth-child(4) { color: #FFFFFF; }
nav a:nth-child(5) { color: #FF5EDF; }
nav a:nth-child(6) { color: #00F0FF; }
.social-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
}
.social-links a {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #00F0FF;
  font-size: 1.5rem;
  text-decoration: none;
}
.social-links img {
  height: 28px;
  width: 28px;
}
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #0D0D1A;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 1s ease;
}
.preloader.fade-out {
  opacity: 0;
  pointer-events: none;
}
.loader {
  border: 6px solid rgba(255, 255, 255, 0.2);
  border-top: 6px solid #FF5EDF;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: spin 1s linear infinite;
}
@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
header {
  background: radial-gradient(circle, #FF5EDF 20%, #00F0FF 80%);
  padding: 80px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
  margin-top: 50px;
}
header::before {
  content: "";
  position: absolute;
  top: -100px;
  left: -100px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(255,255,255,0.2) 0%, transparent 70%);
  animation: spin 12s linear infinite;
  border-radius: 50%;
  z-index: 0;
}
header h1, header p, .cta-button {
  position: relative;
  z-index: 1;
}
header h1 {
  font-family: 'Orbitron', sans-serif;
  font-size: 3rem;
  margin-bottom: 10px;
}
header p {
  font-size: 1.2rem;
  margin-bottom: 20px;
}
.cta-button {
  background: #FFD369;
  color: #000;
  padding: 12px 24px;
  border: none;
  font-weight: bold;
  cursor: pointer;
  border-radius: 5px;
  transition: background 0.3s;
}
.cta-button:hover {
  background: #FFB800;
}
section {
  padding: 60px 20px;
  max-width: 900px;
  margin: 0 auto;
}
section h2 {
  font-family: 'Orbitron', sans-serif;
  font-size: 2.5rem;
  margin-bottom: 30px;
  color: #FF5EDF;
  text-align: center;
}
.music-player {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.music-player .music-label {
  font-weight: bold;
  margin: 30px 0 10px;
  color: #FFD369;
  text-align: center;
}
.music-player iframe {
  width: 100%;
  max-width: 700px;
  margin-bottom: 20px;
  border: none;
}
form input[type="email"] {
  padding: 10px;
  width: 250px;
  border: none;
  border-radius: 5px;
  margin-right: 10px;
}
form button {
  padding: 10px 20px;
  border: none;
  background-color: #FFD369;
  color: #000;
  font-weight: bold;
  border-radius: 5px;
  cursor: pointer;
}
form button:hover {
  background-color: #FFB800;
}
.back-to-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #FF5EDF;
  color: #000;
  padding: 10px 16px;
  border-radius: 50px;
  font-weight: bold;
  text-decoration: none;
  font-size: 14px;
  z-index: 100;
  transition: background 0.3s;
}
.back-to-top:hover {
  background: #FFD369;
}
