:root {
  --ink: #eee3d1;
  --void: #14100d;
  --accent: #d98c3d;
  /* --glass: rgba(20, 16, 13, 0.45); */
  --glass-border: rgba(238, 227, 209, 0.22);
  --safe-top: env(safe-area-inset-top, 0px);
  --safe-bottom: env(safe-area-inset-bottom, 0px);
}

* {
  box-sizing: border-box;
}

html, body {
  height: 100%;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: "Manrope", system-ui, sans-serif;
  overflow-x: hidden;
}

.bg {
  position: fixed;
  inset: 0;
  z-index: -2;
  background-image:
    url("assets/band-photo.jpg"),
    radial-gradient(120% 100% at 50% 15%, rgba(217, 140, 61, 0.16), transparent 60%),
    linear-gradient(160deg, #221a15 0%, #14100d 65%, #0c0a08 100%);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(14, 11, 9, 0.55) 0%, rgba(14, 11, 9, 0.72) 55%, rgba(14, 11, 9, 0.92) 100%);
}

.grain {
  position: fixed;
  inset: 0;
  z-index: -1;
  opacity: 0.5;
  mix-blend-mode: overlay;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.55'/%3E%3C/svg%3E");
}

.page {
  min-height: 100%;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.1rem;
  padding: calc(2.5rem + var(--safe-top)) 1.5rem calc(2rem + var(--safe-bottom));
  max-width: 30rem;
  margin: 0 auto;
  text-align: center;
}

.mark {
  position: relative;
  width: min(58vw, 210px);
  aspect-ratio: 1;
}

.mark__ring,
.mark__spokes {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.mark__circle {
  fill: none;
  stroke: var(--ink);
  stroke-width: 0.75;
  opacity: 0.55;
}

.mark__text {
  fill: var(--ink);
  font-family: "Unbounded", sans-serif;
  font-size: 24px;
  letter-spacing: 0.05em;
}

.mark__ring {
  animation: spin 26s linear infinite;
}

.mark__spokes {
  stroke: var(--accent);
  fill: none;
  stroke-width: 1.4;
  animation: spin-reverse 40s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

@keyframes spin-reverse {
  to { transform: rotate(-360deg); }
}

.tagline {
  font-size: 1.02rem;
  line-height: 1.55;
  color: var(--ink);
  opacity: 0.92;
  max-width: 26rem;
  margin: 0;
}

.links {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.link {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  width: 100%;
  padding: 0.95rem 1.3rem;
  border-radius: 999px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: var(--ink);
  text-decoration: none;
  font-family: "Unbounded", sans-serif;
  font-size: 0.9rem;
  letter-spacing: 0.02em;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.link:hover,
.link:focus-visible {
  transform: translateY(-2px);
  border-color: var(--accent);
  background: rgba(217, 140, 61, 0.12);
}

.link__icon {
  display: inline-flex;
  width: 1.35rem;
  height: 1.35rem;
  flex: none;
}

.link__icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.link__label {
  flex: 1;
  text-align: left;
}

.footer {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.45;
}

@media (min-width: 720px) {
  .page {
    gap: 2.6rem;
  }

  .link {
    padding: 1.05rem 1.5rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .mark__ring,
  .mark__spokes {
    animation: none;
  }
}
