/* Self-hosted Outfit font — no external DNS round-trip */
@font-face {
    font-family: 'Outfit';
    font-style: normal;
    font-weight: 400 700;
    font-display: swap;
    src: url('fonts/outfit-latin-ext.woff2') format('woff2');
    unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
    font-family: 'Outfit';
    font-style: normal;
    font-weight: 400 700;
    font-display: swap;
    src: url('fonts/outfit-latin.woff2') format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* ─────────────────────────────────────────────────────────────
   DESIGN TOKENS — change a value here, it updates everywhere.
───────────────────────────────────────────────────────────── */
:root {
    --black: #000000;
    --ink: #1a1a1a;
    /* body text: softer than pure black   */
    --white: #ffffff;
    --muted: #9ca3af;
    /* hover underlines + fact numbers     */
    --btn-hover: #1f2937;
    /* primary button hover                */
}

/* ─────────────────────────────────────────────────────────────
   RESET — normalise box model, remove default browser spacing.
───────────────────────────────────────────────────────────── */
*,
*::before,
*::after {
    box-sizing: border-box;
    letter-spacing: normal !important;
    word-spacing: normal !important;
    -webkit-tap-highlight-color: transparent;
}

/* Eliminate the 300ms tap delay on mobile browsers */
a, button, [role="button"], [tabindex] {
    touch-action: manipulation;
}

/* ─────────────────────────────────────────────────────────────
   BODY — flex column so pages fill the full viewport height.
   Padding: generous top so content clears the visual header
   zone; sides/bottom scale up at each breakpoint.
───────────────────────────────────────────────────────────── */
body {
    margin: 0;
    font-family: 'Outfit', sans-serif;
    background-color: var(--white);
    color: var(--ink);
    line-height: 1.6;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    padding: 4rem 1.5rem 1.5rem;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

@media (min-width: 640px) {
    body {
        padding: 4rem 2rem 2rem;
    }
}

@media (min-width: 768px) {
    body {
        padding: 7rem;
    }
}


/* ─────────────────────────────────────────────────────────────
   PAGE SYSTEM — only the div with .active is shown.
   JS calls showPage() to toggle between home, facts, thoughts.
───────────────────────────────────────────────────────────── */
.page {
    display: none;
    flex-direction: column;
    flex: 1;
    content-visibility: auto;
}

.page.active {
    display: flex;
    content-visibility: visible;
}

/* ─────────────────────────────────────────────────────────────
   HEADER — stacks vertically on mobile, row on tablet+.
───────────────────────────────────────────────────────────── */
header {
    margin-bottom: 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
}

@media (min-width: 640px) {
    header {
        margin-bottom: 4rem;
        flex-direction: row;
        align-items: center;
        gap: 1.5rem;
    }
}

@media (min-width: 768px) {
    header {
        margin-bottom: 4rem;
    }
}

/* ─────────────────────────────────────────────────────────────
   H1 — scales at each breakpoint. word-break prevents long
   titles overflowing on narrow screens.
───────────────────────────────────────────────────────────── */
h1 {
    margin: 0;
    font-size: 1.25rem;
    line-height: 1.75rem;
    font-weight: 700;
    overflow-wrap: break-word;
    word-break: break-word;
}

@media (min-width: 640px) {
    h1 {
        font-size: 1.5rem;
        line-height: 2rem;
    }
}

@media (min-width: 768px) {
    h1 {
        font-size: 1.875rem;
        line-height: 2.25rem;
    }
}

/* ─────────────────────────────────────────────────────────────
   SOCIAL LINKS (desktop header) — hidden on mobile; the
   #mobile-social-links version shows below content instead.
───────────────────────────────────────────────────────────── */
#social-links {
    display: none;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}

@media (min-width: 640px) {
    #social-links {
        display: flex;
        gap: 1rem;
    }
}

@media (min-width: 768px) {
    #social-links {
        gap: 1.25rem;
    }
}

/* ─────────────────────────────────────────────────────────────
   MAIN — max-width cap keeps long lines readable.
───────────────────────────────────────────────────────────── */
main {
    max-width: 56rem;
    width: 100%;
}

/* ─────────────────────────────────────────────────────────────
   SECTION — flex column; gap controls spacing between
   paragraphs instead of relying on paragraph margins.
───────────────────────────────────────────────────────────── */
section {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    section {
        gap: 2rem;
    }
}

/* ─────────────────────────────────────────────────────────────
   PARAGRAPHS — global margin reset. The first paragraph in
   a section uses a larger intro size; remaining ones are
   slightly smaller. :first-of-type is more reliable than
   :first-child when whitespace text nodes are present.
───────────────────────────────────────────────────────────── */
p {
    margin: 0;
    font-weight: 400;
}

section p:first-of-type {
    font-size: 1.125rem;
    line-height: 1.625;
}

@media (min-width: 640px) {
    section p:first-of-type {
        font-size: 1.25rem;
    }
}

@media (min-width: 768px) {
    section p:first-of-type {
        font-size: 1.5rem;
    }
}

section p:not(:first-of-type) {
    font-size: 1rem;
    line-height: 1.6;
}

@media (min-width: 640px) {
    section p:not(:first-of-type) {
        font-size: 1.125rem;
    }
}

@media (min-width: 768px) {
    section p:not(:first-of-type) {
        font-size: 1.25rem;
    }
}

/* ─────────────────────────────────────────────────────────────
   INLINE LINK — underline via border-bottom so the colour
   can be animated on hover without jumping layout.
───────────────────────────────────────────────────────────── */
.inline-link {
    color: inherit;
    text-decoration: none;
    border-bottom: 2px solid var(--black);
    transition: border-color 0.15s ease;
    cursor: pointer;
    padding: 0.25rem 0;
    /* Expanded touch target */
}

.inline-link:hover {
    border-color: var(--muted);
}

.inline-link:focus-visible {
    outline: 2px solid var(--ink);
    outline-offset: 2px;
}

/* ─────────────────────────────────────────────────────────────
   NAV LINKS — flex row injected by renderNavLinks().
   Same underline style as .inline-link.
───────────────────────────────────────────────────────────── */
#nav-links {
    margin-top: 2.5rem;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

@media (min-width: 640px) {
    #nav-links {
        margin-top: 3.5rem;
        gap: 1.5rem;
    }
}

@media (min-width: 768px) {
    #nav-links {
        margin-top: 4.5rem;
        gap: 2rem;
    }
}

.nav-link {
    font-size: 0.875rem;
    font-weight: 500;
    color: inherit;
    text-decoration: none;
    border-bottom: 2px solid var(--black);
    padding: 0.5rem 0;
    /* Expanded touch target */
    transition: border-color 0.15s ease;
}

.nav-link:hover {
    border-color: var(--muted);
}

.nav-link:focus-visible {
    outline: 2px solid var(--ink);
    outline-offset: 2px;
}

@media (min-width: 640px) {
    .nav-link {
        font-size: 1rem;
    }
}

@media (min-width: 768px) {
    .nav-link {
        font-size: 1.125rem;
    }
}

/* ─────────────────────────────────────────────────────────────
   MOBILE SOCIAL LINKS — shown below nav on mobile only.
───────────────────────────────────────────────────────────── */
#mobile-social-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 3rem;
    margin-bottom: 2rem;
}

@media (min-width: 640px) {
    #mobile-social-links {
        display: none;
    }
}

/* ─────────────────────────────────────────────────────────────
   SOCIAL ICON LINKS — inline-flex keeps icon vertically
   centred. Hover fades to 60% opacity.
───────────────────────────────────────────────────────────── */
.social-icon-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: var(--ink);
    transition: opacity 0.15s ease;
}

.social-icon-link:hover {
    opacity: 0.6;
}

.social-icon-link:focus-visible {
    outline: 2px solid var(--ink);
    outline-offset: 3px;
    border-radius: 2px;
}

.social-icon-link svg,
.social-icon-link img {
    width: 24px;
    height: 24px;
    color: var(--ink);
}

/* ─────────────────────────────────────────────────────────────
   LEGAL FOOTER — sits at the bottom of the home page.
───────────────────────────────────────────────────────────── */
#legal-footer {
    margin-top: auto;
    padding-top: 4rem;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.75rem;
    color: var(--muted);
}

.legal-link {
    color: inherit;
    text-decoration: none;
    transition: color 0.15s ease;
}

.legal-link:hover {
    color: var(--ink);
    text-decoration: underline;
}

.legal-separator {
    opacity: 0.5;
}

/* ─────────────────────────────────────────────────────────────
   WELCOME BOX — fixed bottom-right. Hidden (display:none)
   until JS adds .is-visible after a 1s timeout.
   z-index: 40 keeps it below modals (z-index: 50).
───────────────────────────────────────────────────────────── */
#welcome-box {
    display: none;
    position: fixed;
    bottom: 1.5rem;
    left: 1.5rem;
    right: 1.5rem;
    background-color: var(--black);
    color: var(--white);
    padding: 1rem;
    border-radius: 0.5rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    z-index: 40;
}

#welcome-box.is-visible {
    display: block;
}

@media (min-width: 640px) {
    #welcome-box {
        left: auto;
        /* Revert to bottom-right fixed on larger screens */
        bottom: 2rem;
        right: 2rem;
        padding: 1rem;
        max-width: 20rem;
    }
}


/* Scoped override — the global p { margin:0 } reset would
   remove the gap between the text and the button otherwise. */
#welcome-box p {
    margin: 0 0 0.5rem 0;
    font-size: 0.75rem;
    line-height: 1rem;
}

@media (min-width: 640px) {
    #welcome-box p {
        font-size: 0.875rem;
        line-height: 1.25rem;
    }
}

#welcome-box button {
    font-family: inherit;
    /* browsers default buttons to system font without this */
    font-size: 0.75rem;
    font-weight: 700;
    background: transparent;
    color: var(--white);
    border: 1px solid var(--white);
    padding: 0.25rem 0.5rem;
    cursor: pointer;
}

#welcome-box button:focus-visible {
    outline: 2px solid var(--white);
    outline-offset: 2px;
}

/* ─────────────────────────────────────────────────────────────
   MODALS — fixed full-screen overlay. display:none by default;
   .is-open switches to display:flex so the card centres.
   Backdrop click closes the modal (handled in JS).
───────────────────────────────────────────────────────────── */
.modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    align-items: center;
    justify-content: center;
    z-index: 50;
    padding: 1rem;
    overscroll-behavior: contain;
}

.modal.is-open {
    display: flex;
}

.modal-card {
    background-color: var(--white);
    color: var(--black);
    padding: 1.5rem;
    border-radius: 0.5rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    max-width: 100%;
    width: 100%;
    margin: auto;
    max-height: 90vh;
    max-height: 90dvh;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

@media (min-width: 640px) {
    .modal-card {
        padding: 2rem;
        max-width: 28rem;
    }
}

/* > p targets only direct paragraph children of the card,
   not nested ones inside .contact-links */
.modal-card>p {
    margin: 0 0 1.5rem 0;
    font-size: 0.75rem;
    line-height: 1.625;
}

@media (min-width: 640px) {
    .modal-card>p {
        font-size: 0.875rem;
    }
}

/* ─────────────────────────────────────────────────────────────
   BUTTONS
   .btn-primary   solid black  — main modal CTA
   .btn-secondary outlined     — dismiss / cancel
   .btn-tall      modifier     — extra padding for email links
───────────────────────────────────────────────────────────── */
.btn-primary {
    display: block;
    width: 100%;
    font-family: inherit;
    font-size: 0.875rem;
    font-weight: 700;
    line-height: 1.25rem;
    text-align: center;
    text-decoration: none;
    color: var(--white);
    background-color: var(--black);
    border: none;
    border-radius: 0.25rem;
    padding: 0.5rem 1rem;
    cursor: pointer;
    transition: background-color 0.15s ease;
}

.btn-primary:hover {
    background-color: var(--btn-hover);
}

.btn-primary:focus-visible {
    outline: 2px solid var(--ink);
    outline-offset: 2px;
}

.btn-secondary {
    display: block;
    width: 100%;
    font-family: inherit;
    font-size: 0.875rem;
    font-weight: 700;
    line-height: 1.25rem;
    color: var(--black);
    background-color: transparent;
    border: 2px solid var(--black);
    border-radius: 0.25rem;
    padding: 0.5rem 1rem;
    cursor: pointer;
    transition: background-color 0.15s ease, color 0.15s ease;
}

.btn-secondary:hover {
    background-color: var(--black);
    color: var(--white);
}

.btn-secondary:focus-visible {
    outline: 2px solid var(--ink);
    outline-offset: 2px;
}

.btn-tall {
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
}

.btn-stacked {
    margin-bottom: 0.75rem;
}

/* gap between stacked buttons in a modal */

.contact-links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

/* ─────────────────────────────────────────────────────────────
   FACTS PAGE — header mirrors the home header layout but is
   scoped to .facts-header so it doesn't conflict.
───────────────────────────────────────────────────────────── */
.facts-header {
    margin-bottom: 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
}

@media (min-width: 640px) {
    .facts-header {
        margin-bottom: 4rem;
        flex-direction: row;
        align-items: center;
        gap: 1.5rem;
    }
}

@media (min-width: 768px) {
    .facts-header {
        margin-bottom: 5rem;
    }
}

.back-link {
    font-size: 0.875rem;
    font-weight: 500;
    color: inherit;
    text-decoration: none;
    border-bottom: 2px solid var(--black);
    padding: 0.5rem 0;
    /* Expanded touch target */
    white-space: nowrap;
    cursor: pointer;
    transition: border-color 0.15s ease;
    display: inline-block;
    /* Essential to make vertical padding clickable */
}

.back-link:hover {
    border-color: var(--muted);
}

.back-link:focus-visible {
    outline: 2px solid var(--ink);
    outline-offset: 2px;
}

@media (min-width: 640px) {
    .back-link {
        font-size: 1rem;
    }
}

@media (min-width: 768px) {
    .back-link {
        font-size: 1.125rem;
    }
}

/* ─────────────────────────────────────────────────────────────
   FACTS PAGE — intro text, reduced 3px from home intro.
───────────────────────────────────────────────────────────── */
.facts-intro {
    font-size: 15px;
    /* 18px − 3px */
    line-height: 1.625;
    font-weight: 400;
    margin: 0 0 2.5rem 0;
}

@media (min-width: 640px) {
    .facts-intro {
        font-size: 17px;
        margin-bottom: 3rem;
    }
}

/* 20px − 3px */
@media (min-width: 768px) {
    .facts-intro {
        font-size: 21px;
    }
}

/* 24px − 3px */

/* ─────────────────────────────────────────────────────────────
   FACTS LIST — resets the ordered list, then lays each item
   out as a flex row with the number pinned on the left.
───────────────────────────────────────────────────────────── */
.facts-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

@media (min-width: 640px) {
    .facts-list {
        gap: 2rem;
    }
}

.fact-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    cursor: pointer;
    user-select: none;
    -webkit-user-select: none;
}

/* Number — muted grey, fixed width keeps text column aligned */
.fact-number {
    font-size: 14px;
    /* bumped for readability */
    font-weight: 700;
    color: var(--muted);
    min-width: 1.75rem;
    flex-shrink: 0;
    padding-top: 0.1rem;
    /* optical alignment with text */
}

@media (min-width: 640px) {
    .fact-number {
        font-size: 16px;
    }
}

@media (min-width: 768px) {
    .fact-number {
        font-size: 18px;
    }
}

.fact-text {
    font-size: 14px;
    /* bumped for readability */
    font-weight: 400;
    line-height: 1.6;
    margin: 0;
}

@media (min-width: 640px) {
    .fact-text {
        font-size: 16px;
    }
}

@media (min-width: 768px) {
    .fact-text {
        font-size: 18px;
    }
}

/* ─────────────────────────────────────────────────────────────
   SPOTIFY MODAL — two-button layout with icon header
───────────────────────────────────────────────────────────── */
.spotify-modal-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.spotify-modal-header svg {
    width: 28px;
    height: 28px;
    color: #1DB954;
    flex-shrink: 0;
}

.spotify-modal-header span {
    font-size: 1rem;
    font-weight: 700;
}

.spotify-modal-dismiss {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--muted);
    padding: 0.25rem;
    line-height: 1;
    font-size: 1.25rem;
    transition: color 0.15s ease;
}

.spotify-modal-dismiss:hover {
    color: var(--ink);
}

.spotify-modal-dismiss:focus-visible {
    outline: 2px solid var(--ink);
    outline-offset: 2px;
    border-radius: 2px;
}

.modal-card-relative {
    position: relative;
}

/* ─────────────────────────────────────────────────────────────
   SPOTIFY PAGE — playlist cards
───────────────────────────────────────────────────────────── */
.spotify-page-header {
    margin-bottom: 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
}

@media (min-width: 640px) {
    .spotify-page-header {
        margin-bottom: 4rem;
        flex-direction: row;
        align-items: center;
        gap: 1.5rem;
    }
}

.spotify-page-header-left {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.spotify-page-header-left svg {
    width: 28px;
    height: 28px;
    color: #1DB954;
    flex-shrink: 0;
}

@media (min-width: 640px) {
    .spotify-page-header-left svg {
        width: 32px;
        height: 32px;
    }
}

@media (min-width: 768px) {
    .spotify-page-header-left svg {
        width: 38px;
        height: 38px;
    }
}

.spotify-intro {
    font-size: 15px;
    line-height: 1.625;
    font-weight: 400;
    margin: 0 0 2.5rem 0;
}

@media (min-width: 640px) {
    .spotify-intro {
        font-size: 17px;
        margin-bottom: 3rem;
    }
}

@media (min-width: 768px) {
    .spotify-intro {
        font-size: 21px;
    }
}

.playlists-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

/* ── Link-based playlist card ── */
.playlist-link-card {
    display: flex;
    flex-direction: column;
    gap: 0.875rem;
    padding: 1.25rem 1.5rem;
    border: 1.5px solid #e5e7eb;
    border-radius: 12px;
    text-decoration: none;
    color: inherit;
    transition: border-color 0.15s ease;
}

.playlist-link-card:hover {
    border-color: var(--black);
}

.plc-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
}

.plc-name {
    font-size: 1.0625rem;
    font-weight: 600;
    color: var(--ink);
    line-height: 1.3;
}

.plc-icon {
    flex-shrink: 0;
    margin-top: 0.1rem;
}

.plc-icon svg {
    display: block;
    width: 20px;
    height: 20px;
    color: #1DB954;
}

.plc-desc {
    font-size: 0.9375rem;
    line-height: 1.75;
    color: var(--ink);
    margin: 0;
}

@media (min-width: 640px) {
    .plc-desc {
        font-size: 1rem;
    }
}

.plc-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding-top: 0.5rem;
    border-top: 1px solid #e5e7eb;
    margin-top: auto;
}

.plc-meta {
    font-size: 0.8125rem;
    color: var(--muted);
}

.plc-meta-stack {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.plc-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-shrink: 0;
}

.plc-cta {
    display: inline-flex;
    align-items: center;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--ink);
    text-decoration: none;
    border-bottom: 1.5px solid var(--black);
    padding-bottom: 0.05rem;
    white-space: nowrap;
    transition: border-color 0.15s ease, color 0.15s ease;
}

.plc-cta:hover {
    color: var(--muted);
    border-color: var(--muted);
}

/* Compact variant — borrowed playlists: entire card is the link, no bottom row */
a.playlist-link-card.plc--compact {
    gap: 0.75rem;
    padding: 1rem 1.25rem;
}

a.playlist-link-card.plc--compact:hover {
    background: #f9fafb;
}

/* ── Category description line ── */
.playlist-category-desc {
    font-size: 0.9375rem;
    color: var(--muted);
    margin: -1.5rem 0 2rem;
    font-style: italic;
}

/* ── Playlist category tabs ── */
.playlist-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 2.5rem;
}

.playlist-tab {
    padding: 0.45rem 1.1rem;
    font-family: inherit;
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: normal;
    text-transform: none;
    color: var(--muted);
    background: transparent;
    border: 1.5px solid #e5e7eb;
    border-radius: 999px;
    cursor: pointer;
    transition: color 0.15s ease, border-color 0.15s ease, background 0.15s ease;
}

.playlist-tab:hover {
    color: var(--ink);
    border-color: var(--ink);
}

.playlist-tab.is-active {
    color: var(--white);
    background: var(--black);
    border-color: var(--black);
}

.tab-count {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 500;
    color: var(--muted);
    margin-left: 0.25rem;
    vertical-align: middle;
}

.playlist-tab.is-active .tab-count {
    color: rgba(255,255,255,0.55);
}

/* 2-column grid for borrowed tab on wider screens */
#playlists-grid.is-borrowed {
    gap: 1rem;
}

@media (min-width: 640px) {
    #playlists-grid.is-borrowed {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }
}


.spotify-open-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0;
    margin-bottom: 2.5rem;
    font-family: inherit;
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--white);
    background-color: #1DB954;
    border: none;
    border-radius: 9999px;
    padding: 0.65rem 1.5rem;
    cursor: pointer;
    text-decoration: none;
    transition: background-color 0.15s ease, transform 0.1s ease;
}

.spotify-open-btn:hover {
    background-color: #17a349;
    transform: translateY(-1px);
}

.spotify-open-btn svg {
    width: 16px;
    height: 16px;
}
