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

body {
  font-family: 'Inter', sans-serif;
  background: #0a0c12;
  color: #eef2ff;
  line-height: 1.5;
}

/* Loading Overlay */
.loading-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #0a0c12;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  transition: opacity 0.4s;
}

.loading-spinner {
  text-align: center;
}

.loading-spinner i {
  font-size: 3.5rem;
  animation: spin 1s linear infinite;
  color: #1DB954;
}

.loading-spinner p {
  margin-top: 1rem;
  color: #8a8f9e;
  font-size: 0.9rem;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Header */
.header {
  background: rgba(10, 12, 18, 0.95);
  backdrop-filter: blur(12px);
  padding: 1rem 5%;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.3rem;
  font-weight: 600;
}

.logo i {
  color: #1DB954;
  font-size: 1.5rem;
}

.logo span {
  background: linear-gradient(135deg, #fff, #1DB954);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.nav-links {
  display: flex;
  gap: 2rem;
}

.nav-links a {
  color: #b0b5c4;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9rem;
  transition: color 0.2s;
}

.nav-links a:hover,
.nav-links a.active {
  color: #1DB954;
}

.menu-toggle {
  display: none;
  font-size: 1.4rem;
  cursor: pointer;
  color: #eef2ff;
}

.debug-btn {
  background: #1a1d2b;
  border: 1px solid #0f0;
  color: #0f0;
  padding: 0.45rem 1rem;
  border-radius: 40px;
  cursor: pointer;
  font-weight: 500;
  font-size: 0.75rem;
  transition: all 0.2s;
}

.debug-btn:hover {
  background: #0f0;
  color: #0a0c12;
}

/* Main Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 5%;
  min-height: 70vh;
}

/* Page Navigation */
.page {
  display: none;
  animation: fadeIn 0.3s ease;
}

.page.active-page {
  display: block;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Hero Section */
.hero-section {
  text-align: center;
  padding: 3rem 0;
}

.hero-content h1 {
  font-size: 3.5rem;
  font-weight: 700;
  background: linear-gradient(135deg, #fff, #1DB954);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 1rem;
}

.tagline {
  font-size: 1.2rem;
  color: #8a8f9e;
  margin-bottom: 2rem;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-primary, .btn-secondary {
  padding: 0.7rem 1.8rem;
  border-radius: 40px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.2s;
}

.btn-primary {
  background: #1DB954;
  color: #0a0c12;
}

.btn-primary:hover {
  background: #1a9e48;
  transform: translateY(-2px);
}

.btn-secondary {
  background: transparent;
  border: 1px solid #1DB954;
  color: #1DB954;
}

.btn-secondary:hover {
  background: rgba(29, 185, 84, 0.1);
  transform: translateY(-2px);
}

/* Card Sections */
.card-section {
  background: rgba(18, 21, 30, 0.6);
  border-radius: 24px;
  padding: 1.8rem;
  margin-bottom: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.section-header h2 {
  font-size: 1.3rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: #eef2ff;
}

.section-header h2 i {
  color: #1DB954;
}

/* Stats */
.stats-row {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
}

.stat-card {
  text-align: center;
  background: rgba(0, 0, 0, 0.3);
  padding: 1rem 1.5rem;
  border-radius: 16px;
  min-width: 100px;
}

.stat-card i {
  font-size: 1.5rem;
  color: #1DB954;
  display: block;
  margin-bottom: 0.5rem;
}

.stat-value {
  display: block;
  font-size: 1.8rem;
  font-weight: 700;
  color: #1DB954;
}

.stat-label {
  font-size: 0.7rem;
  color: #8a8f9e;
  text-transform: uppercase;
}

.artist-genres {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  margin-top: 1rem;
}

.artist-genres span {
  background: rgba(29, 185, 84, 0.15);
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  font-size: 0.75rem;
  color: #1DB954;
}

/* Spotify Container */
.spotify-container {
  border-radius: 16px;
  overflow: hidden;
}

.spotify-container iframe {
  border-radius: 16px;
}

/* Tracks List */
.tracks-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.track-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.8rem;
  background: rgba(0, 0, 0, 0.2);
  border-radius: 12px;
  transition: background 0.2s;
}

.track-item:hover {
  background: rgba(29, 185, 84, 0.08);
}

.track-number {
  width: 40px;
  font-weight: 700;
  color: #1DB954;
}

.track-info {
  flex: 1;
}

.track-info h4 {
  font-size: 0.95rem;
  margin-bottom: 0.2rem;
}

.track-info p {
  font-size: 0.7rem;
  color: #8a8f9e;
}

.play-btn {
  color: #1DB954;
  text-decoration: none;
  font-size: 0.8rem;
}

/* Albums Grid */
.albums-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1rem;
}

.album-card {
  background: rgba(0, 0, 0, 0.25);
  border-radius: 16px;
  padding: 1rem;
  text-align: center;
  transition: transform 0.2s;
}

.album-card:hover {
  transform: translateY(-3px);
  background: rgba(29, 185, 84, 0.05);
}

.album-art {
  width: 100%;
  aspect-ratio: 1;
  background: #1a1d2b;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.8rem;
  overflow: hidden;
}

.album-art i {
  font-size: 2rem;
  color: #1DB954;
}

.album-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.album-name {
  font-weight: 600;
  font-size: 0.85rem;
  margin-bottom: 0.2rem;
}

.album-type {
  font-size: 0.7rem;
  color: #1DB954;
  text-transform: capitalize;
}

/* Table */
.table-wrapper {
  overflow-x: auto;
}

.tracks-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.85rem;
}

.tracks-table th {
  text-align: left;
  padding: 0.8rem;
  background: rgba(0, 0, 0, 0.3);
  color: #1DB954;
}

.tracks-table td {
  padding: 0.8rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

/* Social Grid */
.social-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 1rem;
  margin-bottom: 2rem;
}

.social-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: rgba(0, 0, 0, 0.25);
  border-radius: 16px;
  text-decoration: none;
  transition: transform 0.2s;
}

.social-card:hover {
  transform: translateY(-3px);
}

.social-card i {
  font-size: 2rem;
  width: 50px;
}

.social-info h3 {
  font-size: 1rem;
  color: #eef2ff;
}

.social-info p {
  font-size: 0.7rem;
  color: #8a8f9e;
}

.social-card.instagram:hover { background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045); }
.social-card.tiktok:hover { background: #000; border: 1px solid #25f4ee; }
.social-card.spotify:hover { background: #1DB954; }
.social-card.deezer:hover { background: #A238FF; }

/* Mailing List */
.mailing-list {
  text-align: center;
  background: rgba(29, 185, 84, 0.05);
  padding: 2rem;
  border-radius: 20px;
}

.mailing-list h3 {
  margin-bottom: 0.5rem;
}

.mailing-list p {
  font-size: 0.85rem;
  color: #8a8f9e;
  margin-bottom: 1rem;
}

.email-signup {
  display: flex;
  gap: 0.8rem;
  justify-content: center;
  flex-wrap: wrap;
}

.email-signup input {
  padding: 0.7rem 1rem;
  background: #1a1d2b;
  border: 1px solid #2a2d3a;
  border-radius: 40px;
  color: white;
  width: 260px;
}

.email-signup button {
  background: #1DB954;
  border: none;
  padding: 0.7rem 1.5rem;
  border-radius: 40px;
  font-weight: 600;
  cursor: pointer;
}

/* Contact */
.contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}

.contact-info {
  flex: 1;
}

.contact-item {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1.5rem;
}

.contact-item i {
  font-size: 1.3rem;
  color: #1DB954;
  width: 36px;
}

.contact-item strong {
  display: block;
  font-size: 0.85rem;
}

.contact-item a, .contact-item span {
  color: #b0b5c4;
  text-decoration: none;
  font-size: 0.85rem;
}

.contact-form {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-form input, .contact-form textarea {
  padding: 0.8rem;
  background: #1a1d2b;
  border: 1px solid #2a2d3a;
  border-radius: 12px;
  color: white;
  font-family: inherit;
}

.contact-form button {
  background: #1DB954;
  border: none;
  padding: 0.8rem;
  border-radius: 12px;
  font-weight: 600;
  cursor: pointer;
}

/* About */
.about-content {
  max-width: 800px;
  margin: 0 auto;
}

.about-image {
  text-align: center;
  margin-bottom: 2rem;
}

.avatar-placeholder {
  width: 120px;
  height: 120px;
  background: linear-gradient(135deg, #1DB954, #0f6e36);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}

.avatar-placeholder i {
  font-size: 3rem;
  color: white;
}

.about-bio p {
  margin-bottom: 1rem;
  color: #c8cddf;
  line-height: 1.6;
}

.influence-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  justify-content: center;
  margin-top: 2rem;
}

.influence-tags span {
  background: rgba(29, 185, 84, 0.12);
  padding: 0.4rem 1rem;
  border-radius: 40px;
  font-size: 0.8rem;
  color: #1DB954;
}

/* Featured Track */
.featured-track {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: center;
}

.track-artwork {
  width: 120px;
  height: 120px;
  background: linear-gradient(135deg, #1DB954, #0f6e36);
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.track-artwork i {
  font-size: 3rem;
  color: white;
}

.track-info-large {
  text-align: center;
}

.track-info-large h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.wave-bars {
  display: flex;
  gap: 4px;
  justify-content: center;
  margin-top: 1rem;
}

.wave-bars span {
  width: 4px;
  height: 20px;
  background: #1DB954;
  animation: wave 0.8s infinite alternate;
}

.wave-bars span:nth-child(2) { animation-delay: 0.2s; height: 30px; }
.wave-bars span:nth-child(3) { animation-delay: 0.4s; height: 25px; }
.wave-bars span:nth-child(4) { animation-delay: 0.6s; height: 35px; }
.wave-bars span:nth-child(5) { animation-delay: 0.8s; height: 20px; }

@keyframes wave {
  0% { height: 12px; opacity: 0.5; }
  100% { height: 35px; opacity: 1; }
}

/* Footer */
.footer {
  text-align: center;
  padding: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  margin-top: 2rem;
}

.footer p {
  font-size: 0.75rem;
  color: #5a5f70;
}

.footer i {
  color: #1DB954;
}

/* Responsive */
@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 65px;
    left: 0;
    width: 100%;
    background: #0a0c12;
    flex-direction: column;
    padding: 1rem;
    gap: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  
  .nav-links.show {
    display: flex;
  }
  
  .menu-toggle {
    display: block;
  }
  
  .hero-content h1 {
    font-size: 2.5rem;
  }
  
  .stats-row {
    gap: 1rem;
  }
  
  .stat-card {
    min-width: 70px;
    padding: 0.8rem;
  }
  
  .stat-value {
    font-size: 1.2rem;
  }
}

/* Big Spotify Button */
.spotify-big-button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(135deg, #1DB954 0%, #1a9e48 100%);
  border-radius: 20px;
  padding: 1.5rem 2rem;
  text-decoration: none;
  transition: all 0.3s ease;
  gap: 1.5rem;
  flex-wrap: wrap;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(29, 185, 84, 0.3);
}

.spotify-big-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(29, 185, 84, 0.4);
  background: linear-gradient(135deg, #1ed760 0%, #1DB954 100%);
}

.spotify-big-button:active {
  transform: translateY(0);
}

.spotify-big-button i:first-child {
  font-size: 3rem;
  color: white;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 60px;
  padding: 0.8rem;
}

.spotify-big-button .spotify-button-text {
  flex: 1;
}

.spotify-big-button .spotify-button-title {
  display: block;
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
  margin-bottom: 0.25rem;
}

.spotify-big-button .spotify-button-subtitle {
  display: block;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.85);
}

.spotify-big-button i:last-child {
  font-size: 1.5rem;
  color: white;
  opacity: 0.8;
  transition: transform 0.3s ease;
}

.spotify-big-button:hover i:last-child {
  transform: translateX(5px);
  opacity: 1;
}

/* Responsive for Spotify Button */
@media (max-width: 768px) {
  .spotify-big-button {
    padding: 1.2rem 1.5rem;
    flex-direction: column;
    text-align: center;
  }
  
  .spotify-big-button i:first-child {
    font-size: 2.5rem;
    padding: 0.6rem;
  }
  
  .spotify-big-button .spotify-button-title {
    font-size: 1.2rem;
  }
  
  .spotify-big-button i:last-child {
    display: none;
  }
}

/* Profile Picture Circle */
.profile-image-container {
  display: flex;
  justify-content: center;
  margin-bottom: 2rem;
}

.profile-circle {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1DB954, #0f6e36);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  box-shadow: 0 8px 30px rgba(29, 185, 84, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden;
}

.profile-circle:hover {
  transform: scale(1.05);
  box-shadow: 0 12px 40px rgba(29, 185, 84, 0.4);
}

.profile-circle i {
  font-size: 5rem;
  color: white;
  transition: transform 0.3s ease;
}

.profile-circle:hover i {
  transform: scale(1.1);
}

.profile-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Pulse animation for the circle */
.profile-circle::before {
  content: '';
  position: absolute;
  top: -5px;
  left: -5px;
  right: -5px;
  bottom: -5px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1DB954, #1a9e48, #0f6e36);
  z-index: -1;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0% {
    opacity: 0.5;
    transform: scale(1);
  }
  50% {
    opacity: 0.8;
    transform: scale(1.05);
  }
  100% {
    opacity: 0.5;
    transform: scale(1);
  }
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .profile-circle {
    width: 140px;
    height: 140px;
  }
  
  .profile-circle i {
    font-size: 3.5rem;
  }
  
  .hero-section {
    padding: 1rem 0 2rem 0;
  }
}

.track-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.8rem;
  background: rgba(0, 0, 0, 0.2);
  border-radius: 12px;
  transition: background 0.2s;
  cursor: pointer;
}

.track-item:hover {
  background: rgba(29, 185, 84, 0.08);
}

.track-arrow {
  color: #1DB954;
  font-size: 1rem;
  opacity: 0;
  transition: opacity 0.2s, transform 0.2s;
}

.track-item:hover .track-arrow {
  opacity: 1;
  transform: translateX(5px);
}

.album-card {
  background: rgba(0, 0, 0, 0.25);
  border-radius: 16px;
  padding: 1rem;
  text-align: center;
  transition: transform 0.2s;
  cursor: pointer;
  position: relative;
}

.album-card:hover {
  transform: translateY(-3px);
  background: rgba(29, 185, 84, 0.05);
}

.album-arrow {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  color: #1DB954;
  font-size: 0.9rem;
  opacity: 0;
  transition: opacity 0.2s, transform 0.2s;
}

.album-card:hover .album-arrow {
  opacity: 1;
  transform: translateX(5px);
}

.clickable-track {
  cursor: pointer;
  transition: background 0.2s;
}

.clickable-track:hover {
  background: rgba(29, 185, 84, 0.08);
}

.clickable-track:hover i {
  opacity: 1;
  transform: translateX(5px);
}

.clickable-track i {
  color: #1DB954;
  opacity: 0;
  transition: opacity 0.2s, transform 0.2s;
}

.tracks-table td:last-child {
  width: 40px;
  text-align: center;
}

.loading-status {
  margin-top: 1rem;
  text-align: center;
}

.loading-status p {
  color: #eef2ff;
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

.loading-progress {
  display: inline-block;
  background: rgba(29, 185, 84, 0.2);
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  font-size: 0.8rem;
  color: #1DB954;
  font-weight: 600;
}

.loading-tracks {
  margin-top: 1rem;
  font-size: 0.75rem;
  color: #8a8f9e;
  text-align: center;
}

.about-genres {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.about-genres span {
  background: rgba(29, 185, 84, 0.15);
  padding: 0.4rem 1rem;
  border-radius: 40px;
  font-size: 0.8rem;
  color: #1DB954;
}