@font-face {
  font-family: "Inter";
  src: url("assets/fonts/Inter_28pt-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src: url("assets/fonts/Inter_28pt-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src: url("assets/fonts/Inter_28pt-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src: url("assets/fonts/Inter_28pt-ExtraBold.ttf") format("truetype");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

:root {
  --bg-1: #12070b;
  --bg-2: #2a0f14;
  --bg-3: #5a1f20;

  --card-bg: rgba(20, 10, 14, 0.78);
  --card-border: rgba(255, 255, 255, 0.12);

  --text: #fff7ef;
  --muted: rgba(255, 247, 239, 0.72);
  --soft: rgba(255, 247, 239, 0.52);

  --accent: #f0b35a;
  --accent-2: #e25f3c;
  --accent-dark: #2a1208;

  --shadow: 0 28px 80px rgba(0, 0, 0, 0.45);
  --radius: 28px;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
}

body {
  margin: 0;
  min-height: 100%;
  font-family: "Inter", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(240, 179, 90, 0.26), transparent 32%),
    radial-gradient(circle at bottom right, rgba(226, 95, 60, 0.28), transparent 34%),
    linear-gradient(135deg, var(--bg-1), var(--bg-2) 48%, var(--bg-3));
  background-attachment: fixed;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: radial-gradient(circle at center, black, transparent 78%);
}

.page {
  width: min(100%, 720px);
  min-height: 100vh;
  margin: 0 auto;
  padding: 32px 18px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.card {
  position: relative;
  width: 100%;
  padding: 34px 24px 28px;
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.025)),
    var(--card-bg);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
  text-align: center;
  overflow: hidden;
}

.card::after {
  content: "";
  position: absolute;
  inset: auto 18% -90px;
  height: 160px;
  border-radius: 999px;
  background: rgba(240, 179, 90, 0.16);
  filter: blur(45px);
  pointer-events: none;
}

.hero-card,
.release-card {
  animation: rise 600ms ease-out both;
}

.logo {
  width: min(210px, 62vw);
  max-height: 145px;
  object-fit: contain;
  margin-bottom: 22px;
}

.cover {
  width: min(320px, 84vw);
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
  margin: 10px auto 24px;
  border-radius: 22px;
  box-shadow: 0 20px 54px rgba(0, 0, 0, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--accent);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  font-size: clamp(2.15rem, 9vw, 4.1rem);
  line-height: 0.96;
  letter-spacing: -0.055em;
}

.tagline {
  margin: 18px auto 0;
  max-width: 520px;
  color: var(--text);
  font-size: clamp(1.08rem, 3.8vw, 1.35rem);
  font-weight: 650;
  line-height: 1.35;
}

.artist {
  margin: 12px 0 0;
  color: var(--accent);
  font-size: 1.22rem;
  font-weight: 700;
}

.description {
  margin: 20px auto 0;
  max-width: 560px;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.65;
}

.links {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.button {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 14px 18px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.08);
  color: var(--text);
  font-size: 1rem;
  font-weight: 760;
  text-decoration: none;
  transition:
    transform 160ms ease,
    background 160ms ease,
    border-color 160ms ease,
    box-shadow 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.13);
  border-color: rgba(255, 255, 255, 0.24);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.22);
}

.button:active {
  transform: translateY(0);
}

.button.primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: var(--accent-dark);
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 14px 32px rgba(226, 95, 60, 0.24);
}

.button.primary:hover {
  box-shadow: 0 18px 42px rgba(226, 95, 60, 0.34);
}

.back-link {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--soft);
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
}

.back-link:hover {
  color: var(--text);
}

.small-note {
  position: relative;
  z-index: 1;
  margin: 20px auto 0;
  max-width: 440px;
  color: var(--soft);
  font-size: 0.92rem;
  line-height: 1.5;
}

.footer {
  padding: 18px 0 0;
  text-align: center;
  color: rgba(255, 247, 239, 0.48);
  font-size: 0.86rem;
}

.footer p {
  margin: 0;
}

.social-links {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 22px;
  color: var(--soft);
  font-size: 0.94rem;
  font-weight: 700;
}

.social-links a {
  color: var(--muted);
  text-decoration: none;
  transition: color 160ms ease, transform 160ms ease;
}

.social-links a:hover {
  color: var(--accent);
  transform: translateY(-1px);
}

.social-links span {
  color: rgba(255, 247, 239, 0.32);
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(14px) scale(0.985);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@media (min-width: 680px) {
  .page {
    padding: 48px 24px;
  }

  .card {
    padding: 42px 42px 34px;
  }

  .links {
    width: min(100%, 480px);
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 380px) {
  .card {
    padding: 28px 16px 24px;
    border-radius: 24px;
  }

  .button {
    min-height: 52px;
    font-size: 0.96rem;
  }
}