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

body {
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", "Inter", Arial, sans-serif;
  background-color: #FEF7FF;
  color: #5E5187;
  line-height: 1.6;
  overflow-x: hidden;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 30px;
  z-index: 1000;
  background-color: #FEF7FF;
  backdrop-filter: blur(10px);
}

.logo-link {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-decoration: none;
  color: #000;
  transition: opacity 0.3s ease;
}

.logo-link:hover {
  opacity: 0.6;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}

.nav-toggle span {
  width: 20px;
  height: 2px;
  background-color: #000;
  transition: all 0.3s ease;
}

.nav-list {
  display: flex;
  gap: 30px;
  list-style: none;
}

.nav-list a {
  font-size: 14px;
  text-decoration: none;
  color: #000;
  transition: opacity 0.3s ease;
}

.nav-list a:hover {
  opacity: 0.6;
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 100px 20px 120px;
}

.hero-content {
  text-align: center;
  max-width: 600px;
}

.hero-image-container {
  margin-bottom: 40px;
}

.hero-image {
  width: 100%;
  max-width: 450px;
  height: auto;
  border: 4px solid #5E5187;
  transition: transform 0.3s ease;
}

.hero-image:hover {
  transform: scale(1.02);
}

.hero-title {
  font-size: 32px;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 30px;
  line-height: 1.2;
}

.hero-subtitle {
  display: block;
  font-size: 32px;
}

.cta-button {
  display: inline-block;
  padding: 12px 40px;
  border: 2px solid #000;
  background-color: transparent;
  color: #000;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.cta-button:hover {
  background-color: #000;
  color: #FEF7FF;
}

/* Albums Section */
.albums {
  padding: 60px 0;
  background-color: #FEF7FF;
}

.albums-container {
  overflow: hidden;
}

.albums-scroll {
  display: flex;
  gap: 20px;
  padding: 0 30px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.albums-scroll::-webkit-scrollbar {
  display: none;
}

.album-card {
  flex: 0 0 auto;
  width: 300px;
  scroll-snap-align: start;
}

.album-card img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  transition: transform 0.3s ease, opacity 0.3s ease;
  cursor: pointer;
}

.album-card img:hover {
  transform: scale(1.05);
  opacity: 0.9;
}

/* Videos Section */
.videos {
  padding: 80px 30px;
  background-color: #FEF7FF;
}

.videos-title {
  font-size: 24px;
  font-weight: 600;
  text-align: center;
  margin-bottom: 40px;
  letter-spacing: 0.5px;
}

.videos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.video-card {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
}

.video-card iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* Audio Player */
.audio-player {
  position: fixed;
  bottom: 60px;
  left: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 16px;
  background-color: rgba(249, 248, 243, 0.95);
  border: 1px solid #000;
  z-index: 1000;
  font-size: 12px;
  backdrop-filter: blur(10px);
}

.play-button {
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  transition: opacity 0.3s ease;
}

.play-button:hover {
  opacity: 0.6;
}

.track-name {
  font-weight: 600;
  letter-spacing: 0.5px;
}

.track-time {
  color: #666;
}

/* Footer */
.footer {
  position: fixed;
  bottom: 0;
  right: 0;
  padding: 20px 30px;
  z-index: 1000;
  background-color: #FEF7FF;
  backdrop-filter: blur(10px);
}

.footer-links {
  display: flex;
  gap: 20px;
  align-items: center;
  font-size: 11px;
  letter-spacing: 0.5px;
}

.footer-links a {
  text-decoration: none;
  color: #000;
  transition: opacity 0.3s ease;
}

.footer-links a:hover {
  opacity: 0.6;
}

.copyright {
  color: #666;
}

/* Responsive Design */
@media (max-width: 768px) {
  .header {
    padding: 15px 20px;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-list {
    position: fixed;
    top: 60px;
    right: -100%;
    flex-direction: column;
    background-color: #f9f8f3;
    padding: 30px;
    gap: 20px;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
    transition: right 0.3s ease;
    min-width: 200px;
  }

  .nav-list.active {
    right: 0;
  }

  .hero {
    padding: 80px 20px 100px;
  }

  .hero-title {
    font-size: 24px;
  }

  .hero-subtitle {
    font-size: 24px;
  }

  .hero-image {
    max-width: 100%;
  }

  .album-card {
    width: 250px;
  }

  .album-card img {
    height: 250px;
  }

  .videos-grid {
    grid-template-columns: 1fr;
  }

  .audio-player {
    left: 10px;
    bottom: 50px;
    font-size: 11px;
    padding: 8px 12px;
  }

  .footer {
    position: relative;
    padding: 20px;
    text-align: center;
  }

  .footer-links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    font-size: 10px;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 20px;
  }

  .hero-subtitle {
    font-size: 20px;
  }

  .cta-button {
    padding: 10px 30px;
    font-size: 13px;
  }

  .album-card {
    width: 200px;
  }

  .album-card img {
    height: 200px;
  }
}
