@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  background: linear-gradient(135deg, #1a1a2e, #0f0c29);
  background-size: 400% 400%;
  animation: bgFlow 30s ease infinite;
  color: #eeeeee;
  overflow-x: hidden;
  min-height: 100vh;
  line-height: 1.6;
}

@keyframes bgFlow {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* Navigation */
nav {
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(20px);
  padding: 1rem 0;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: background 0.3s ease;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
}

.logo {
  font-size: 1.5rem;
  font-weight: 600;
  background: linear-gradient(to right, #8ab4f8, #b388ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-links a {
  color: #eeeeee;
  text-decoration: none;
  transition: color 0.3s ease;
  font-weight: 500;
}

.nav-links a:hover {
  color: #8ab4f8;
}

/* Header */
header {
  text-align: center;
  padding: 120px 20px 60px;
  backdrop-filter: blur(20px);
  background: rgba(0, 0, 0, 0.4);
}

h1 {
  font-size: 3rem;
  font-weight: 600;
  background: linear-gradient(to right, #8ab4f8, #b388ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: glowText 4s ease-in-out infinite;
  margin-bottom: 1rem;
}

.subtitle {
  font-size: 1.2rem;
  color: #cccccc;
  max-width: 600px;
  margin: 0 auto;
}

@keyframes glowText {
  0%, 100% { text-shadow: 0 0 10px #8ab4f8; }
  50% { text-shadow: 0 0 20px #b388ff; }
}

/* AdSense Container */
.ad-container {
  margin: 20px auto;
  max-width: 728px;
  padding: 10px;
  text-align: center;
}

/* Main Content */
.main-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
}

.content-section {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  border-radius: 20px;
  padding: 40px;
  margin-bottom: 40px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.section-title {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #8ab4f8;
  font-weight: 600;
}

/* Article Grid */
.article-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.article-card {
  background: rgba(255, 255, 255, 0.03);
  border-radius: 15px;
  padding: 25px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.3s ease;
}

.article-card:hover {
  transform: translateY(-5px);
  border-color: rgba(138, 180, 248, 0.3);
  box-shadow: 0 10px 30px rgba(138, 180, 248, 0.1);
}

.article-title {
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: #ffffff;
  font-weight: 600;
}

.article-excerpt {
  color: #cccccc;
  line-height: 1.6;
  margin-bottom: 15px;
}

.read-more {
  color: #8ab4f8;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.read-more:hover {
  color: #b388ff;
}

/* About Artist */
.about-artist {
  background: rgba(255, 255, 255, 0.03);
  border-radius: 15px;
  padding: 30px;
  margin-top: 30px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.artist-bio {
  color: #cccccc;
  line-height: 1.7;
  font-size: 1.1rem;
  margin-bottom: 20px;
}

.artist-bio:last-child {
  margin-bottom: 0;
}

/* Music Container */
#music-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.song-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.4s ease;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
  position: relative;
  animation: floatCard 6s ease-in-out infinite;
}

@keyframes floatCard {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-6px); }
}

.song-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -75%;
  width: 150%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,0.1), transparent);
  transform: skewX(-25deg);
  transition: 0.4s;
  z-index: 2;
}

.song-card:hover::before {
  left: 100%;
  transition: left 0.6s ease-out;
}

.song-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 12px 32px rgba(138, 180, 248, 0.3);
}

.song-card.playing {
  border-color: #8ab4f8;
  box-shadow: 0 0 30px rgba(138, 180, 248, 0.4);
  animation: playingPulse 2s ease-in-out infinite;
}

@keyframes playingPulse {
  0%, 100% {
    transform: scale(1.02);
    box-shadow: 0 0 30px rgba(138, 180, 248, 0.3);
  }
  50% {
    transform: scale(1.05);
    box-shadow: 0 0 50px rgba(138, 180, 248, 0.5);
  }
}

.song-cover {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: all 0.3s ease;
}

.song-card:hover .song-cover {
  filter: brightness(1.1) contrast(1.1);
}

.song-info {
  padding: 20px;
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(10px);
}

.song-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: #eeeeee;
  margin-bottom: 10px;
}

.song-description {
  color: #cccccc;
  font-size: 0.9rem;
  line-height: 1.5;
}

/* Audio Player */
audio {
  margin-top:}
