* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  min-height: 100vh;
  background: #000;
  color: #fff;
  font-family: Arial, Helvetica, sans-serif;
}

.home-page {
  position: relative;
  overflow: hidden;
}

.header {
  text-align: center;
  padding-top: 70px;
}

.header h1 {
  font-size: 82px;
  font-weight: 300;
  letter-spacing: 28px;
}

.header p {
  margin-top: 22px;
  font-size: 24px;
  font-weight: 300;
  letter-spacing: 14px;
  color: #2f2f2f;
}

.artists-grid {
  margin-top: 120px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 34px;
}

.artist-card {
  color: #b8b8b8;
  text-decoration: none;
  font-size: 24px;
  font-weight: 300;
  letter-spacing: 1px;
  transition: color 0.3s ease;
}

.artist-card:hover {
  color: #fff;
}

.footer {
  position: absolute;
  left: 60px;
  bottom: 60px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer a {
  color: #1f1f1f;
  text-decoration: none;
  font-size: 18px;
  font-weight: 300;
}

.artist-page {
  min-height: 100vh;
  max-width: 760px;
  margin: 0 auto;
  padding: 28px 30px 110px;
  position: relative;
  text-align: center;
}

.artist-topline {
  width: 100%;
  max-width: 560px;
  margin: 0 auto 110px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.back-button,
.artist-label {
  color: #9b9b9b;
  text-decoration: none;
  font-size: 14px;
  font-weight: 300;
  line-height: 24px;
  transition: color 0.3s ease;
}

.back-button:hover,
.artist-label:hover {
  color: #fff;
}

.artist-name {
  margin-bottom: 56px;
  color: #a7a7a7;
  font-size: 28px;
  font-weight: 300;
  letter-spacing: 1px;
}

.links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.links a {
  color: #fff;
  text-decoration: none;
  font-size: 24px;
  font-weight: 300;
  line-height: 1.2;
  transition: color 0.3s ease;
}

.links a:hover {
  color: #b8b8b8;
}

.meta-note {
  position: absolute;
  left: 50%;
  bottom: 24px;
  transform: translateX(-50%);
  width: calc(100% - 40px);
  color: #666;
  font-size: 12px;
  font-weight: 300;
  line-height: 1.4;
  text-align: center;
}

@media (max-width: 768px) {
  .home-page {
    overflow: auto;
  }

  .header {
    padding: 40px 20px 0;
  }

  .header h1 {
    font-size: 42px;
    letter-spacing: 10px;
  }

  .header p {
    font-size: 18px;
    letter-spacing: 6px;
  }

  .artists-grid {
    margin-top: 80px;
    gap: 24px;
    padding: 0 20px;
  }

  .artist-card {
    font-size: 20px;
    text-align: center;
  }

  .footer {
    position: static;
    margin-top: 80px;
    padding: 0 20px 30px;
  }

  .artist-page {
    padding: 24px 20px 100px;
  }

  .artist-topline {
    margin-bottom: 90px;
    gap: 16px;
  }

  .back-button,
  .artist-label {
    font-size: 13px;
  }

  .artist-name {
    margin-bottom: 42px;
    font-size: 24px;
  }

  .links {
    gap: 20px;
  }

  .links a {
    font-size: 20px;
  }

  .meta-note {
    bottom: 18px;
    font-size: 11px;
  }
}
