@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat/Montserrat-Regular.ttf");
  font-display: swap;
}

/* Base */
*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: #0b0b0c;
  color: #e6e6e6;
  font-family: "Montserrat", sans-serif;
  line-height: 1.7;
}

main {
  padding: 50px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

/* Typography */
.section-title {
  text-align: center;
  margin-bottom: 30px;
  font-weight: 500;
  letter-spacing: 0.05em;
}

/* Hero */
.hero {
  text-align: center;
  padding: 80px 20px 40px;
}

.hero-avatar {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 30px;
}

.hero-title {
  font-size: 48px;
  letter-spacing: 0.08em;
  font-weight: 500;
  margin-bottom: 10px;
}

.hero-subtitle {
  font-size: 14px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  opacity: 0.6;
  margin-bottom: 40px;
}

/* Platforms */
.hero-listen {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 15px;
}

.hero-platform {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: inherit;
  font-size: 14px;
  background: #1a1a1a;
  padding: 8px 14px;
  border-radius: 8px;
  transition: background 0.2s ease;
}

.hero-platform:hover {
  background: #2a2a2a;
}

.hero-platform img {
  width: 20px;
  height: 20px;
}

.hero-note {
  font-size: 18px;
  opacity: 0.7;
}

/* Music */
.music {
  text-align: center;
}

.music-container-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.music-container {
  flex: 1 1 calc((100% / 3) - 20px);
  max-width: 350px;
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

.music-container iframe {
  width: 100%;
  height: 350px;
  border: 0;
}

/* About */
.about {
  margin-top: 80px;
}

.about-inner {
  display: flex;
  gap: 30px;
  align-items: flex-start;
  flex-wrap: wrap;
  justify-content: center;
}

.about-inner img {
  width: 130px;
  height: 130px;
  border-radius: 8px;
  object-fit: cover;
}

.about-inner div {
  flex: 1;
  min-width: 250px;
  max-width: 600px;
}

/* Contact */
.contact {
  text-align: center;
  margin-top: 80px;
}

.contact a {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

/* Tags */
.tags {
  text-align: center;
  margin-top: 80px;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.tag-list span {
  font-size: 12px;
  padding: 6px 12px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 20px;
  opacity: 0.6;
}

/* Footer */
footer {
  text-align: center;
  margin-top: 120px;
  padding: 40px 20px;
  font-size: 13px;
  opacity: 0.6;
}

.font-credit {
  margin-top: 8px;
  font-size: 11px;
  opacity: 0.4;
}

/* Responsive */
@media (max-width: 768px) {
  .music-container {
    flex: 1 1 calc((100% / 2) - 20px);
  }
}

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

  .hero-platform {
    width: 100%;
    justify-content: center;
  }

  .about-inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .music-container {
    flex: 1 1 100%;
  }

  .music-container iframe {
    width: 90%;
    height: 300px;
    border: 0;
  }
}