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

html, body {
  height: 100%;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: #000000;
  background-color: #ffffff;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.banner {
  width: 100%;
  padding: 1.5rem 2rem;
  border-bottom: 1px solid #e5e5e5;
}

.banner span {
  font-size: clamp(1rem, 2.2vw, 1.4rem);
  font-weight: 600;
  letter-spacing: 0.02em;
}

.content {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
}

.content h1 {
  font-size: clamp(2.75rem, 9vw, 7rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.02em;
}

.bandcamp-link {
  margin-top: 1.5rem;
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 500;
  color: #000000;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.bandcamp-link:hover {
  opacity: 0.7;
}
