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

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: linear-gradient(135deg, #0a0e27 0%, #0a1428 100%);
  color: #e0e0e0;
  min-height: 100vh;
  padding: 0;
  margin: 0;
  overflow-x: hidden;
}

/* Onda neon diagonale */
.neon-wave {
  position: fixed;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    135deg,
    transparent 45%,
    rgba(0, 191, 255, 0.15) 48%,
    rgba(0, 191, 255, 0.4) 49.5%,
    rgba(0, 191, 255, 0.15) 51%,
    transparent 54%
  );
  animation: waveScroll 4s infinite linear;
  pointer-events: none;
  z-index: 2;
  filter: blur(1px);
}

@keyframes waveScroll {
  0% {
    transform: translate(-50%, -50%);
  }
  100% {
    transform: translate(50%, 50%);
  }
}

.container {
  padding: 20px;
}

/* Pulsante Admin floating */
.admin-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: rgba(0, 191, 255, 0.15);
  border: 2px solid rgba(0, 191, 255, 0.4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 50;
  box-shadow: 0 0 20px rgba(0, 191, 255, 0.2);
}

.admin-btn:hover {
  background: rgba(0, 191, 255, 0.3);
  border-color: #00bfff;
  box-shadow: 0 0 30px rgba(0, 191, 255, 0.6);
  transform: scale(1.1);
}

/* Fascia neon bassa */
.neon-banner {
  display: none; /* Nascondi per ora */
  width: 100%;
  height: 80px;
  background: linear-gradient(90deg, rgba(0, 191, 255, 0.15) 0%, rgba(0, 191, 255, 0.3) 50%, rgba(0, 191, 255, 0.15) 100%);
  border-top: 2px solid rgba(0, 191, 255, 0.5);
  border-bottom: 2px solid rgba(0, 191, 255, 0.5);
  overflow: hidden;
  align-items: center;
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 100;
}

.neon-text {
  display: flex;
  gap: 60px;
  animation: scrollNeon 30s linear infinite;
  white-space: nowrap;
  padding: 0 50px;
}

.neon-text-item {
  font-size: 1.4rem;
  font-weight: 900;
  color: #00bfff;
  text-transform: uppercase;
  letter-spacing: 3px;
  text-shadow: 0 0 10px rgba(0, 191, 255, 0.8),
               0 0 20px rgba(0, 191, 255, 0.6),
               0 0 30px rgba(139, 42, 255, 0.4);
}

@keyframes scrollNeon {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(-100%);
  }
}

.container {
  max-width: 1000px;
  margin: 0 auto;
}

/* Header */
.header {
  text-align: center;
  margin-bottom: 40px;
  padding: 30px;
  background: rgba(0, 191, 255, 0.05);
  border: 1px solid rgba(0, 191, 255, 0.2);
  border-radius: 12px;
}

.logo {
  width: 80px;
  height: auto;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 10px rgba(0, 191, 255, 0.5));
}

.header h1 {
  font-size: 2.5rem;
  color: #00bfff;
  text-shadow: 0 0 20px rgba(0, 191, 255, 0.6);
  margin-bottom: 10px;
  letter-spacing: 2px;
}

.header p {
  font-size: 1.1rem;
  color: #b0b0b0;
  letter-spacing: 1px;
}

/* Artist Section */
.artist {
  text-align: center;
  margin-bottom: 40px;
}

.artist-img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 0 40px rgba(0, 191, 255, 0.3);
  border: 2px solid rgba(0, 191, 255, 0.5);
}

/* Form Section */
.form-section {
  background: rgba(0, 191, 255, 0.08);
  border: 1px solid rgba(0, 191, 255, 0.2);
  padding: 30px;
  border-radius: 12px;
  margin-bottom: 40px;
}

.form-section h2 {
  color: #00bfff;
  margin-bottom: 20px;
  font-size: 1.5rem;
}

#trackForm {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 15px;
}

input {
  padding: 12px;
  background: rgba(10, 14, 39, 0.6);
  border: 1px solid rgba(0, 191, 255, 0.3);
  border-radius: 6px;
  color: #e0e0e0;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

input:focus {
  background: rgba(10, 14, 39, 0.8);
  border-color: #00bfff;
  box-shadow: 0 0 15px rgba(0, 191, 255, 0.3);
  outline: none;
}

button[type="submit"] {
  grid-column: 1 / -1;
  padding: 12px 30px;
  background: linear-gradient(135deg, #00bfff 0%, #00d4ff 100%);
  border: none;
  border-radius: 6px;
  color: #000;
  font-weight: 700;
  cursor: pointer;
  font-size: 1rem;
  transition: all 0.3s ease;
}

button[type="submit"]:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 25px rgba(0, 191, 255, 0.6);
}

/* Tracks Section */
.tracks-section {
  margin-bottom: 40px;
}

.tracks-section h2 {
  color: #00bfff;
  margin-bottom: 20px;
  font-size: 1.5rem;
}

.tracks-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 20px;
}

.track-card {
  background: rgba(0, 191, 255, 0.08);
  border: 1px solid rgba(0, 191, 255, 0.2);
  border-radius: 8px;
  padding: 15px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
}

.track-card:hover {
  border-color: #00bfff;
  box-shadow: 0 0 20px rgba(0, 191, 255, 0.3);
  transform: translateY(-5px);
}

.track-cover {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: 6px;
  margin-bottom: 10px;
  background: rgba(0, 191, 255, 0.1);
}

.track-title {
  font-weight: 700;
  margin-bottom: 5px;
  color: #e0e0e0;
}

.track-album {
  font-size: 0.9rem;
  color: #00bfff;
  margin-bottom: 5px;
}

.track-genre {
  font-size: 0.8rem;
  color: #b0b0b0;
}

/* Modal */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(10, 14, 39, 0.95);
  backdrop-filter: blur(5px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  animation: fadeIn 0.3s ease;
}

.modal.hidden {
  display: none;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.modal-content {
  background: linear-gradient(135deg, rgba(10, 14, 39, 0.95) 0%, rgba(10, 20, 40, 0.95) 100%);
  border: 1px solid rgba(0, 191, 255, 0.3);
  border-radius: 12px;
  padding: 40px;
  width: 100%;
  max-width: 500px;
  position: relative;
}

.close-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  color: #707070;
  font-size: 2rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.close-btn:hover {
  color: #00bfff;
  transform: rotate(90deg);
}

.player {
  text-align: center;
}

.player-cover {
  width: 100%;
  max-width: 300px;
  border-radius: 8px;
  margin-bottom: 20px;
  box-shadow: 0 0 30px rgba(0, 191, 255, 0.3);
}

.player h3 {
  font-size: 1.5rem;
  color: #e0e0e0;
  margin-bottom: 10px;
}

.player p {
  color: #b0b0b0;
  margin-bottom: 5px;
}

.player-controls {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: 30px;
}

.play-btn {
  padding: 15px 30px;
  background: linear-gradient(135deg, #00bfff 0%, #00d4ff 100%);
  border: none;
  border-radius: 6px;
  color: #000;
  font-weight: 700;
  cursor: pointer;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.play-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 0 25px rgba(0, 191, 255, 0.6);
}

.external-link {
  padding: 12px 30px;
  background: rgba(0, 191, 255, 0.1);
  border: 2px solid #00bfff;
  border-radius: 6px;
  color: #00bfff;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-block;
}

.external-link:hover {
  background: rgba(0, 191, 255, 0.2);
  box-shadow: 0 0 15px rgba(0, 191, 255, 0.4);
}

/* Responsive */
@media (max-width: 768px) {
  .header h1 {
    font-size: 1.8rem;
  }

  .form-section {
    padding: 20px;
  }

  #trackForm {
    grid-template-columns: 1fr;
  }

  .modal-content {
    padding: 20px;
    margin: 20px;
  }
}
