:root {
    --ink: #ffffff;
    --dim: rgba(255, 255, 255, 0.6);
    --faint: rgba(255, 255, 255, 0.32);
    --glass: rgba(255, 255, 255, 0.08);
    --glass-hi: rgba(255, 255, 255, 0.16);
    --glass-brd: rgba(255, 255, 255, 0.16);
    --accent: #ff6f86;
    --display: 'Fraunces', 'Georgia', serif;
    --body: 'Manrope', system-ui, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    font-family: var(--body);
    color: var(--ink);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    padding: 54px 22px 46px;
    overflow-x: hidden;
    background: #050508;
    -webkit-font-smoothing: antialiased;
}

/* Fullscreen cinematic cover */
.stage {
    position: fixed;
    inset: 0;
    z-index: -2;
    background: url("cover.jpg") center/cover no-repeat;
    filter: blur(30px) brightness(0.46) saturate(1.15);
    transform: scale(1.18);
    animation: kenburns 34s ease-in-out infinite alternate;
}

.veil {
    position: fixed;
    inset: 0;
    z-index: -1;
    background: linear-gradient(180deg, rgba(5, 5, 8, 0.28) 0%, rgba(5, 5, 8, 0.5) 52%, rgba(5, 5, 8, 0.85) 100%);
}

@keyframes kenburns {
    from { transform: scale(1.16) translateY(1.5%); }
    to   { transform: scale(1.32) translateY(-2.5%); }
}

@media (prefers-reduced-motion: reduce) {
    .stage { animation: none; }
    .container { animation: none; }
}

.container {
    width: 100%;
    max-width: 428px;
    position: relative;
    z-index: 10;
    animation: rise 0.8s cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes rise { from { opacity: 0; transform: translateY(20px); } }

/* ---------- Header ---------- */
.header { text-align: center; margin-bottom: 38px; }

.cover-mini {
    width: 178px;
    height: 178px;
    object-fit: cover;
    border-radius: 26px;
    margin: 0 auto 26px;
    display: block;
    box-shadow: 0 34px 70px rgba(0, 0, 0, 0.7), 0 0 0 1px rgba(255, 255, 255, 0.14) inset;
    border: 1px solid rgba(255, 255, 255, 0.16);
}

.artist {
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--dim);
    margin-bottom: 12px;
    text-shadow: 0 1px 12px rgba(0, 0, 0, 0.5);
}

.title {
    font-family: var(--display);
    font-optical-sizing: auto;
    font-size: 2.35rem;
    font-weight: 600;
    line-height: 1.1;
    letter-spacing: -0.01em;
    text-shadow: 0 2px 30px rgba(0, 0, 0, 0.65);
    margin-bottom: 18px;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 16px;
    border-radius: 100px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}
.badge::before {
    content: "";
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--accent);
    box-shadow: 0 0 10px var(--accent);
}

/* ---------- Links ---------- */
.links { display: flex; flex-direction: column; gap: 12px; }

.link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 13px 15px;
    text-decoration: none;
    color: var(--ink);
    background: var(--glass);
    border: 1px solid var(--glass-brd);
    border-radius: 20px;
    backdrop-filter: blur(24px) saturate(1.3);
    -webkit-backdrop-filter: blur(24px) saturate(1.3);
    transition: background 0.22s ease, transform 0.16s ease, border-color 0.22s ease;
}

.link:hover {
    background: var(--glass-hi);
    border-color: rgba(255, 255, 255, 0.34);
    transform: translateY(-2px);
}
.link:active { transform: scale(0.985); }

.link-content { display: flex; align-items: center; gap: 14px; }

.icon-wrap {
    width: 44px; height: 44px;
    flex-shrink: 0;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: #fff;
    background: rgba(255, 255, 255, 0.13);
    border: 1px solid rgba(255, 255, 255, 0.2);
}
.icon-wrap svg { width: 22px; height: 22px; }

.label { font-size: 1.12rem; font-weight: 600; letter-spacing: -0.01em; }

.action {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    color: var(--faint);
    padding-right: 6px;
    transition: color 0.2s ease;
}
.link:hover .action { color: var(--ink); }

/* ---------- Footer ---------- */
.footer { margin-top: 40px; text-align: center; }
.legal {
    font-size: 0.72rem;
    color: var(--faint);
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.5);
}
.legal a {
    color: inherit; text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: color 0.2s ease, border-color 0.2s ease;
}
.legal a:hover { color: var(--dim); border-color: var(--faint); }
.legal .dot { margin: 0 8px; opacity: 0.6; }

@media (max-width: 480px) {
    body { padding: 40px 16px; }
    .title { font-size: 2rem; }
    .cover-mini { width: 160px; height: 160px; }
}
