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

body {
  font-family: Helvetica, Arial, sans-serif;
  background: #f4f4f2;
  color: #111;
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
}

.nav {
  width: 100%;

  display: flex;
  justify-content: space-between;
  align-items: center;

  padding: 34px 54px;

  position: fixed;
  top: 0;
  left: 0;

  background: rgba(120, 120, 120, 0.78);
  backdrop-filter: blur(14px);

  z-index: 100;
}

.logo {
  font-size: 13px;
  letter-spacing: 1.2px;
}
.logo a {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.96);
}

nav a {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.92);

  margin-left: 26px;

  font-size: 13px;
  letter-spacing: 0.5px;

  transition: opacity 0.2s ease;
}

nav a:hover {
  opacity: 0.6;
}

.container {
  width: 100%;
  max-width: 760px;

  margin: 0 auto;

  padding-top: 150px;
  padding-left: 34px;
  padding-right: 34px;
  padding-bottom: 140px;
}

.hero h1 {
  font-size: 64px;
  font-weight: 500;

  margin-bottom: 42px;

  letter-spacing: -2px;
}

.hero img {
  width: 100%;
  display: block;

  margin-bottom: 18px;
}

.caption {
  font-size: 14px;
  color: #777;

  margin-bottom: 120px;
}

.updates {
  margin-bottom: 120px;
}

.update-item {
  margin-bottom: 54px;
}

.date {
  font-size: 12px;
  letter-spacing: 1px;
  color: #888;

  margin-bottom: 12px;
}

.update-item p {
  margin-bottom: 12px;

  font-size: 16px;
  color: #222;
}

.update-item a {
  color: #111;
}

.buttons {
  display: flex;
  flex-direction: row;
  gap: 12px;
  align-items: stretch;
}

.button {
  display: inline-block;
  flex: 0 0 auto;
  min-width: 280px;

  border: 1px solid #111;

  text-decoration: none;
  color: #111;

  padding: 14px 20px;

  font-size: 13px;
  letter-spacing: 0.8px;
  text-align: left;

  transition:
    background 0.2s ease,
    color 0.2s ease;
}

.button:hover {
  background: #111;
  color: white;
}

.discography-page {
  width: 100%;
  max-width: 860px;

  margin: 0 auto;

  padding-top: 150px;
  padding-left: 34px;
  padding-right: 34px;
  padding-bottom: 160px;
}

.page-title {
  font-size: 42px;
  font-weight: 500;
  letter-spacing: -1px;

  margin-bottom: 76px;
}

.album {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 44px;

  padding-bottom: 70px;
  margin-bottom: 70px;

  border-bottom: 1px solid rgba(0, 0, 0, 0.12);
}

.album-cover img {
  width: 100%;
  display: block;

  background: white;
}

.album-info {
  padding-top: 2px;
}

.album-info h2 {
  font-size: 19px;
  font-weight: 700;
  line-height: 1.45;

  margin-bottom: 4px;
}

.album-date {
  font-size: 13px;
  color: #777;

  margin-bottom: 28px;
}

.tracklist {
  font-size: 14px;
  line-height: 1.85;
  color: #222;

  margin-bottom: 30px;
}

.album-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.album-buttons a {
  display: inline-block;

  border: 1px solid #111;

  padding: 8px 13px;

  font-size: 11px;
  letter-spacing: 0.7px;
  line-height: 1.2;

  color: #111;
  text-decoration: none;

  transition:
    background 0.2s ease,
    color 0.2s ease,
    opacity 0.2s ease;
}

.album-buttons a:hover {
  background: #111;
  color: white;
}

@media (max-width: 700px) {

  .nav {
    padding: 24px 20px;
  }

  nav a {
    margin-left: 16px;
    font-size: 12px;
  }

  .container {
    padding-left: 20px;
    padding-right: 20px;
  }

  .buttons {
    flex-direction: column;
  }

  .button {
    text-align: left;
  }

  .hero h1 {
    font-size: 46px;
  }

  .update-item p {
    font-size: 15px;
  }

  .discography-page {
    padding-top: 130px;
    padding-left: 20px;
    padding-right: 20px;
  }

  .page-title {
    font-size: 32px;
    margin-bottom: 54px;
  }

  .album {
    grid-template-columns: 1fr;
    gap: 22px;

    padding-bottom: 58px;
    margin-bottom: 58px;
  }

  .album-cover {
    max-width: 260px;
  }

  .album-info h2 {
    font-size: 18px;
  }

  .tracklist {
    font-size: 14px;
  }
}

.about-page {
  width: 100%;
  max-width: 760px;
  margin: 0 auto;
  padding-top: 150px;
  padding-left: 34px;
  padding-right: 34px;
  padding-bottom: 140px;
}

.about-image {
  width: 100%;
  margin: 0 auto 42px auto;
  overflow: visible;
}

.about-image img {
  width: 100%;
  height: auto;
  max-height: none;
  object-fit: contain;
  object-position: center;
  display: block;
}

.about-text {
  max-width: 640px;
}

.about-text p {
  font-size: 15px;
  line-height: 2;
  margin-bottom: 36px;
}

.about-quote {
  font-size: 15px;
  line-height: 2.15;
  color: #333;
  padding-left: 22px;
  margin-bottom: 40px;
  border-left: 1px solid rgba(0, 0, 0, 0.25);
}

.about-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 34px;
}

.about-buttons a {
  display: inline-block;
  border: 1px solid #111;
  padding: 8px 13px;
  font-size: 11px;
  letter-spacing: 0.7px;
  line-height: 1.2;
  color: #111;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease;
}

.about-buttons a:hover {
  background: #111;
  color: white;
}

@media (max-width: 700px) {
  .about-page {
    padding-top: 130px;
    padding-left: 20px;
    padding-right: 20px;
  }

  .about-text p,
  .about-quote {
    font-size: 14px;
  }
}
/* --- More Page Styles --- */
.more-page {
  width: 100%;
  max-width: 760px;
  margin: 0 auto;
  padding-top: 150px;
  padding-left: 34px;
  padding-right: 34px;
  padding-bottom: 140px;
}

.more-content {
  width: 100%;
}

.more-text {
  font-size: 15px;
  line-height: 2;
  margin-bottom: 26px;
}

.more-text a {
  color: #111;
}

.more-gap {
  margin-top: 54px;
}

.more-cover {
  width: 100%;
  max-width: 560px;
  max-height: 560px;
  object-fit: cover;
  display: block;
  margin: 0 auto;
}

@media (max-width: 700px) {
  .more-page {
    padding-top: 130px;
    padding-left: 20px;
    padding-right: 20px;
  }

  .more-text {
    font-size: 14px;
  }

  .more-cover {
    max-width: 100%;
    max-height: none;
  }
}
/* --- Video Page Styles --- */
.video-page {
  width: 100%;
  max-width: 860px;
  margin: 0 auto;
  padding-top: 150px;
  padding-left: 34px;
  padding-right: 34px;
  padding-bottom: 140px;
}

.video-list {
  display: flex;
  flex-direction: column;
  gap: 42px;
}

.video-card {
  position: relative;
  width: 100%;
  max-width: 100%;
  margin: 0;
  overflow: hidden;
  cursor: pointer;
  background: #111;
}

.video-cover {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
}

.video-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 74px;
  height: 74px;
  border: 0;
  background: url('assets/images/play.png') center / cover no-repeat;
  cursor: pointer;
  opacity: 0.95;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.video-card:hover .video-play {
  opacity: 0.76;
  transform: translate(-50%, -50%) scale(1.04);
}

.video-title {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  padding: 10px 12px;
  background: rgba(0, 0, 0, 0.62);
  color: white;
  font-size: 15px;
  line-height: 1.3;
}

.video-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #111;
}

.video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

@media (max-width: 700px) {
  .video-page {
    padding-top: 130px;
    padding-left: 20px;
    padding-right: 20px;
  }

  .video-list {
    gap: 32px;
  }

  .video-play {
    width: 62px;
    height: 62px;
  }

  .video-title {
    font-size: 13px;
  }
}

nav a.active {
  color: #111;
  pointer-events: none;
}

/* 2005-2015 page */

.lyrics-page {
  max-width: 760px;
  margin: 0 auto;
  padding: 140px 24px 120px;
}

.lyrics-gallery {
  display: flex;
  gap: 18px;
  margin-bottom: 40px;
}

.lyrics-gallery img {
  width: 100%;
  display: block;
}

.lyrics-gallery a {
  flex: 1;
}

.lyrics-buttons {
  display: flex;
  gap: 14px;
  margin-bottom: 60px;
}

.lyrics-buttons a {
  border: 1px solid #111;
  padding: 10px 16px;
  font-size: 11px;
  letter-spacing: 0.08em;
  color: #111;
  text-decoration: none;
}

.lyrics-images {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.lyrics-images img {
  width: 100%;
  display: block;
}