:root {
  color-scheme: dark;
  --bg: #070607;
  --panel: rgba(22, 16, 15, 0.78);
  --panel-strong: rgba(35, 25, 23, 0.92);
  --text: #fff7ef;
  --muted: #dccfc1;
  --gold: #e7b768;
  --rose: #b82045;
  --line: rgba(231, 183, 104, 0.22);
  --shadow: rgba(0, 0, 0, 0.48);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top, rgba(231, 183, 104, 0.18), transparent 24rem),
    radial-gradient(circle at 50% 34rem, rgba(184, 32, 69, 0.22), transparent 22rem),
    linear-gradient(180deg, #07100f 0%, #11070c 44%, #070607 100%);
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  width: min(100%, 480px);
  min-height: 100vh;
  margin: 0 auto;
  padding: 14px 12px 28px;
}

.hero {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #080808;
  box-shadow: 0 28px 70px var(--shadow);
}

.hero-photo {
  display: block;
  aspect-ratio: 4 / 5.4;
  background: linear-gradient(180deg, #101716, #090609);
}

.hero-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.hero::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(180deg, transparent 32%, rgba(5, 4, 4, 0.28) 58%, rgba(5, 4, 4, 0.95) 100%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.22), transparent 38%, rgba(0, 0, 0, 0.12));
  pointer-events: none;
}

.hero-overlay {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  padding: 120px 20px 24px;
  text-align: left;
}

.eyebrow,
.tag {
  margin: 0;
  color: var(--gold);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

h1,
h2,
p {
  margin-top: 0;
}

h1 {
  max-width: 7ch;
  margin: 7px 0 10px;
  font-size: clamp(4.2rem, 22vw, 6.2rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 0.78;
  text-shadow: 0 12px 36px rgba(0, 0, 0, 0.68);
}

.bio {
  max-width: 24rem;
  margin: 0;
  color: #f2e5d9;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.48;
  text-shadow: 0 6px 20px rgba(0, 0, 0, 0.82);
}

.now-playing {
  margin: 14px 0;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(184, 32, 69, 0.22), transparent 48%),
    var(--panel);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(16px);
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}

.section-head h2 {
  margin: 0;
  font-size: 1.18rem;
}

.video-box {
  position: relative;
  overflow: hidden;
  margin-bottom: 14px;
  border: 1px solid rgba(231, 183, 104, 0.24);
  border-radius: 8px;
  background: #050505;
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.32);
  aspect-ratio: 16 / 9;
}

.video-box iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.primary-link,
.links a,
.share button {
  min-height: 56px;
  border-radius: 8px;
  font-weight: 900;
}

.primary-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(135deg, #c42a4b, #e5a84e);
  color: #15080a;
  box-shadow: 0 18px 38px rgba(184, 32, 69, 0.28);
  transition: transform 160ms ease, filter 160ms ease;
}

.primary-link:hover,
.primary-link:focus-visible {
  filter: brightness(1.08);
  transform: translateY(-2px);
}

.links {
  display: grid;
  gap: 10px;
}

.links a {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
  overflow: hidden;
  padding: 11px 13px;
  border: 1px solid var(--line);
  background: rgba(18, 13, 13, 0.76);
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(12px);
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.links a::before {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(90deg, rgba(231, 183, 104, 0.14), transparent 45%);
  content: "";
  opacity: 0;
  transition: opacity 160ms ease;
}

.links a:hover,
.links a:focus-visible {
  border-color: rgba(231, 183, 104, 0.5);
  background: var(--panel-strong);
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.3);
  transform: translateY(-2px);
}

.links a:hover::before,
.links a:focus-visible::before {
  opacity: 1;
}

.icon {
  position: relative;
  z-index: 1;
  display: grid;
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid rgba(255, 232, 197, 0.28);
  border-radius: 999px;
  color: #fff7ef;
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.02em;
  transition: transform 160ms ease, border-color 160ms ease;
}

.music-icon {
  background: rgba(21, 8, 10, 0.14);
  color: #15080a;
  font-size: 1.1rem;
}

.link-copy {
  position: relative;
  z-index: 1;
  display: grid;
  flex: 1;
  gap: 1px;
}

.links a:hover .icon,
.links a:focus-visible .icon {
  border-color: rgba(255, 232, 197, 0.55);
  transform: scale(1.06);
}

.spotify .icon {
  background: linear-gradient(135deg, #1db954, #0a7d3b);
}

.youtube .icon {
  background: linear-gradient(135deg, #ff0033, #8c001c);
}

.instagram .icon {
  background: linear-gradient(135deg, #f58529, #dd2a7b 52%, #515bd4);
}

.tiktok .icon {
  background: linear-gradient(135deg, #111111, #25f4ee);
}

.apple .icon {
  background: linear-gradient(135deg, #f4f4f4, #75757c);
  color: #111111;
}

.facebook .icon {
  background: linear-gradient(135deg, #1877f2, #0b3d91);
}

.link-copy > span {
  font-size: 1rem;
}

.links small {
  color: var(--muted);
  font-size: 0.83rem;
  font-weight: 700;
}

.arrow {
  position: relative;
  z-index: 1;
  color: var(--gold);
  font-size: 1.75rem;
  line-height: 1;
  transition: transform 160ms ease;
}

.links a:hover .arrow,
.links a:focus-visible .arrow {
  transform: translateX(4px);
}

.primary-link:active,
.links a:active,
.share button:active {
  transform: scale(0.98);
}

.share {
  padding-top: 16px;
  text-align: center;
}

.share button {
  width: 100%;
  border: 0;
  background: rgba(255, 247, 239, 0.94);
  color: #15080a;
  cursor: pointer;
}

.share p {
  min-height: 1.4em;
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
}

@media (max-width: 380px) {
  .hero-photo {
    aspect-ratio: 4 / 5.7;
  }

  .hero-overlay {
    padding: 110px 17px 22px;
  }

  .icon {
    width: 38px;
    height: 38px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    transition-duration: 0.001ms !important;
  }
}
