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

body {
    font-family: 'Segoe UI', system-ui, sans-serif;
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 1.25rem 3rem;
    /* Solid dark fallback only. The photo + its shade both live on the fixed
       ::before layer below, so if iOS Safari's toolbar animation momentarily
       reveals a strip at the top/bottom during scroll, that strip is plain
       dark #111 — matching the shaded look — instead of a bright unshaded
       edge of the photo (the old bug: image on the scrolling body, shade on a
       separate fixed layer, the two coming apart during scroll). */
    background: #111;
}

body::before {
    content: '';
    position: fixed;
    inset: 0;
    /* Gradient shade stacked ON TOP of the photo, both on this one fixed
       layer so they always move together and cover the viewport. */
    background:
        radial-gradient(ellipse at center, rgba(0,0,0,0.45) 0%, rgba(0,0,0,0.72) 100%),
        #111 url('/popcore.jpg') center / cover no-repeat;
    pointer-events: none;
    z-index: 0;
}

main {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 460px;
    width: 100%;
}

.logo {
    width: 100%;
    max-width: 420px;
    height: auto;
    display: block;
    margin: 0 auto 0.6rem;
    filter: drop-shadow(0 2px 16px rgba(0,0,0,0.6));
}

.tagline {
    font-size: 0.82rem;
    font-style: italic;
    color: rgba(255,255,255,0.72);
    letter-spacing: 0.02em;
    text-shadow: 0 1px 4px rgba(0,0,0,0.6);
    margin-bottom: 2rem;
}

/* Featured remastered album card */
.featured {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 99, 71, 0.1);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 99, 71, 0.32);
    border-radius: 12px;
    padding: 1.4rem 1.5rem;
    text-decoration: none;
    color: #fff;
    margin-bottom: 1.25rem;
    transition: background 0.2s, border-color 0.2s, transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 0 40px rgba(255,99,71,0.1), 0 4px 20px rgba(0,0,0,0.3);
}
.featured:hover {
    background: rgba(255, 99, 71, 0.18);
    border-color: rgba(255, 99, 71, 0.55);
    transform: translateY(-2px);
    box-shadow: 0 0 60px rgba(255,99,71,0.18), 0 8px 32px rgba(0,0,0,0.4);
}
.featured__art {
    width: 72px;
    height: 72px;
    border-radius: 6px;
    object-fit: cover;
    flex-shrink: 0;
    box-shadow: 0 4px 16px rgba(0,0,0,0.4);
}

.featured__text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.3rem;
    text-align: left;
}

.featured__badge {
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #ff6347;
    background: rgba(255,99,71,0.15);
    border: 1px solid rgba(255,99,71,0.4);
    border-radius: 20px;
    padding: 0.2rem 0.65rem;
    margin-bottom: 0.15rem;
}
.featured__title {
    font-size: 1.2rem;
    font-weight: 600;
    letter-spacing: 0.04em;
}
.featured__sub {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.78);
    letter-spacing: 0.05em;
}

/* Streaming link buttons */
.links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.75rem;
}

.link-btn {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    background: rgba(255,255,255,0.11);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255,255,255,0.2);
    box-shadow: 0 4px 20px rgba(0,0,0,0.35), inset 0 1px 0 rgba(255,255,255,0.08);
    color: #fff;
    text-decoration: none;
    padding: 0.8rem 1rem 0.8rem 1.15rem;
    border-radius: 9px;
    font-size: 0.88rem;
    letter-spacing: 0.03em;
    transition: background 0.2s, transform 0.2s, box-shadow 0.2s, border-color 0.2s;
    text-align: left;
}
.link-btn:hover {
    background: rgba(255,255,255,0.17);
    border-color: rgba(255,255,255,0.32);
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(0,0,0,0.3), inset 0 1px 0 rgba(255,255,255,0.08);
}
.link-btn:active { transform: translateY(0); }
.link-btn .icon {
    width: 19px;
    height: 19px;
    flex-shrink: 0;
    opacity: 0.85;
    transition: opacity 0.2s;
}
.link-btn:hover .icon { opacity: 1; }
.link-btn span { flex: 1; }
.link-btn .arrow {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
    opacity: 0.4;
    transition: opacity 0.2s, transform 0.2s;
}
.link-btn:hover .arrow {
    opacity: 0.5;
    transform: translate(2px, -2px);
}

/* Social icons */
.socials {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.1rem;
}
.socials a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    color: rgba(255,255,255,0.65);
    text-decoration: none;
    transition: color 0.18s, background 0.18s, transform 0.18s;
}
.socials a:hover {
    background: rgba(255,255,255,0.08);
    transform: translateY(-2px);
}
.socials a[aria-label="SoundCloud"]:hover  { color: #ff5500; }
.socials a[aria-label="Twitter / X"]:hover { color: #e8e8e8; }
.socials a[aria-label="Instagram"]:hover   { color: #e1306c; }
.socials a[aria-label="Facebook"]:hover    { color: #1877f2; }
.socials a[aria-label="YouTube"]:hover     { color: #ff4444; }
.socials a svg {
    width: 20px;
    height: 20px;
}
