/* Reset */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Perfectly Nineties font */
@font-face {
  font-family: 'Perfectly Nineties';
  src: url('/assets/fonts/PerfectlyNineties-Regular.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Perfectly Nineties';
  src: url('/assets/fonts/PerfectlyNineties-Bold.otf') format('opentype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

body {
  font-family: 'Perfectly Nineties', Georgia, serif;
  background-image: url("/assets/images/background.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  color: #111;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
}

.container {
  max-width: 560px;
  margin: 0 auto;
  padding: 60px 24px 80px;
}

/* Cover art */
.cover {
  margin-bottom: 24px;
}

.cover img {
  max-width: 100%;
  width: 220px;
  height: auto;
  border-radius: 22px;
}

/* Tagline */
.tagline {
  font-size: 2.1rem;
  color: #111;
  font-weight: 500;
  margin-bottom: 40px;
  line-height: 1.3;
}

/* Section headings */
h2 {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 20px;
  text-decoration: underline;
  text-underline-offset: 3px;
  color: #111;
}

/* Link buttons */
.links {
  margin-bottom: 40px;
}

.link-block {
  display: block;
  padding: 18px 20px;
  margin-bottom: 10px;
  border: 1.5px solid #FF69B6;
  border-radius: 6px;
  background: #FF69B6;
  text-decoration: none;
  color: #fff;
  font-weight: 700;
  font-size: 1.05rem;
  cursor: pointer;
  transition: transform 0.1s ease, opacity 0.2s ease;
  text-align: center;
}

.link-block:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

/* Responsive */
@media (min-width: 768px) {
  .container {
    padding: 80px 24px 100px;
  }
}

@media (min-width: 1024px) {
  .container {
    max-width: 600px;
    padding: 100px 24px 120px;
  }
}
