* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Roboto', sans-serif;
  background: linear-gradient(135deg, #000000, #000000);
  color: #222;
  padding: 20px;
  text-align: center;
}

header h1 {
  font-family: 'Orbitron', sans-serif;
  font-size: 3em;
  margin-bottom: 40px;
  color: #222;
  letter-spacing: 0.08em;
  text-shadow: 0 0 6px rgba(0, 123, 255, 0.6);
}

.album-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto 60px;
}

.album-card {
  background-color: #f9f9f9;
  border-radius: 12px;
  padding: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.album-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

.album-card img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

.album-title {
  font-size: 1.1em;
  margin: 10px 0 5px;
  font-weight: bold;
}

.release-date {
  font-size: 0.9em;
  color: #666;
}

.mv-slider {
  overflow: hidden;
  width: 100%;
  height: calc(50vw * 9 / 16);
  margin: 20px 0 50px;
  position: relative;
}

.mv-track {
  display: flex;
  width: max-content;
  animation: scroll 100s linear infinite;
}

.mv-track img {
  width: 40vw;
  height: calc(45vw * 9 / 16);
  object-fit: cover;
  margin-right: 0;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  cursor: pointer;
}

.artist-profile {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 60px 40px;
  background-color: #222;
  border-top: 1px solid #444;
  flex-wrap: wrap;
  color: #fff;
  max-width: 1200px;
  margin: 0 auto 60px;
  border-radius: 12px;
}

.profile-image {
  flex: 0 0 450px;
  margin-right: 50px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0, 123, 255, 0.6);
}

.profile-image img {
  width: 100%;
  height: auto;
  display: block;
}

.profile-text {
  flex: 1;
  max-width: 600px;
  padding-bottom: 70px;
  position: relative;
  text-align: left;
  color: #e0e7ff;
  font-size: 18px;
  line-height: 1.8;
}

.profile-text h2 {
  font-size: 32px;
  margin-bottom: 20px;
  font-family: 'Orbitron', sans-serif;
  color: #7ab8ff;
  letter-spacing: 0.1em;
}

.social-icons {
  position: absolute;
  bottom: 0;
  right: 0;
  display: flex;
  gap: 24px;
}

.social-icons a {
  display: inline-block;
  width: 52px;
  height: 52px;
  transition: transform 0.2s ease;
}

.social-icons a:hover {
  transform: scale(1.1);
}

.social-icons img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: brightness(90%) contrast(120%);
  transition: filter 0.2s ease;
}

.social-icons img:hover {
  filter: brightness(130%) contrast(140%);
}

header {
  margin: 0;
  padding: 0;
  width: 100vw;
}

.title-image {
  width: 100vw;  
  height: auto;  
  display: block;
  margin: 0 auto;  
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}