/* =========================================================
   Maestro Music Archive - Public Song Collections
   Collections landing page + collection pages
   IMPORTANT: Do not style/modify the master music player here.
   ========================================================= */

/* ---------------------------------------------------------
   Main container
   --------------------------------------------------------- */

.mma-frontend .mma-collection-main {
    max-width: 1180px;
    margin: 0 auto;
    padding: 34px 22px 80px;
}


/* ---------------------------------------------------------
   Collection Hero
   --------------------------------------------------------- */

.mma-frontend .mma-collection-hero {
    position: relative;
    padding: 48px 0 34px;
}

.mma-frontend .mma-collection-hero::after {
    content: "";
    display: block;
    width: 72px;
    height: 3px;
    margin-top: 24px;
    background: #f1c40f;
    border-radius: 3px;
}

.mma-frontend .mma-collection-hero h1 {
    margin: 10px 0 14px;
    color: #fff;
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    line-height: 1.05;
    letter-spacing: -0.02em;
    font-weight: 700;
}

.mma-frontend .mma-collection-hero p {
    max-width: 720px;
    margin: 0;
    color: #aaa;
    font-size: 1.05rem;
    line-height: 1.75;
}

.mma-frontend .mma-movie-eyebrow {
    color: #f1c40f;
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .16em;
    text-transform: uppercase;
}


/* ---------------------------------------------------------
   Collection count
   --------------------------------------------------------- */

.mma-frontend .mma-collection-count {
    display: inline-flex;
    align-items: center;
    margin-top: 22px;
    padding: 8px 14px;
    border: 1px solid rgba(241, 196, 15, .28);
    border-radius: 999px;
    color: #f1c40f;
    background: rgba(241, 196, 15, .06);
    font-size: .88rem;
    font-weight: 600;
}


/* =========================================================
   COLLECTION LANDING PAGE
   ========================================================= */

.mma-frontend .mma-collection-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
    margin-top: 10px;
}


/* ---------------------------------------------------------
   Collection cards
   --------------------------------------------------------- */

.mma-frontend .mma-collection-card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 190px;
    padding: 26px;
    overflow: hidden;

    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 14px;

    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,.045),
            rgba(255,255,255,.015)
        ),
        #181818;

    color: inherit;
    text-decoration: none;

    transition:
        transform .22s ease,
        border-color .22s ease,
        background .22s ease,
        box-shadow .22s ease;
}


/* Gold accent line */

.mma-frontend .mma-collection-card::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 3px;
    background: #f1c40f;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .22s ease;
}


/* Background glow */

.mma-frontend .mma-collection-card::after {
    content: "";
    position: absolute;
    right: -45px;
    bottom: -55px;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: rgba(241,196,15,.035);
    pointer-events: none;
}


.mma-frontend .mma-collection-card:hover,
.mma-frontend .mma-collection-card:focus-visible {
    transform: translateY(-5px);

    border-color: rgba(241,196,15,.42);

    background:
        linear-gradient(
            145deg,
            rgba(241,196,15,.055),
            rgba(255,255,255,.02)
        ),
        #1b1b1b;

    box-shadow: 0 14px 35px rgba(0,0,0,.28);
}

.mma-frontend .mma-collection-card:hover::before,
.mma-frontend .mma-collection-card:focus-visible::before {
    transform: scaleX(1);
}


/* ---------------------------------------------------------
   Card icon
   --------------------------------------------------------- */

.mma-frontend .mma-collection-card-icon {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 48px;
    height: 48px;
    margin-bottom: 22px;

    border: 1px solid rgba(241,196,15,.22);
    border-radius: 12px;

    color: #f1c40f;
    background: rgba(241,196,15,.055);

    font-size: 23px;

    transition:
        background .22s ease,
        border-color .22s ease,
        transform .22s ease;
}

.mma-frontend .mma-collection-card:hover .mma-collection-card-icon {
    border-color: rgba(241,196,15,.45);
    background: rgba(241,196,15,.10);
    transform: scale(1.05);
}


/* ---------------------------------------------------------
   Card title
   --------------------------------------------------------- */

.mma-frontend .mma-collection-card-title {
    position: relative;
    z-index: 1;

    color: #fff;
    font-size: 1.18rem;
    line-height: 1.35;
    font-weight: 700;
}


/* ---------------------------------------------------------
   Card description
   --------------------------------------------------------- */

.mma-frontend .mma-collection-card-description {
    position: relative;
    z-index: 1;

    margin-top: 9px;

    color: #929292;
    font-size: .91rem;
    line-height: 1.55;
}


/* =========================================================
   INDIVIDUAL COLLECTION PAGE
   ========================================================= */

.mma-frontend .mma-collection-songs {
    margin-top: 18px;
}

.mma-frontend .mma-collection-section-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 20px;
    margin-bottom: 20px;
    padding-bottom: 14px;

    border-bottom: 1px solid rgba(255,255,255,.07);
}

.mma-frontend .mma-collection-section-heading h2 {
    margin: 0;
    color: #fff;
    font-size: 1.45rem;
    line-height: 1.3;
}

.mma-frontend .mma-collection-section-heading a {
    flex-shrink: 0;

    color: #f1c40f;
    text-decoration: none;

    font-size: .9rem;
    font-weight: 600;

    transition: color .18s ease;
}

.mma-frontend .mma-collection-section-heading a:hover,
.mma-frontend .mma-collection-section-heading a:focus-visible {
    color: #fff;
    text-decoration: underline;
}


/* ---------------------------------------------------------
   Song source links
   --------------------------------------------------------- */

.mma-frontend .mma-collection-songs .mma-song-source a {
    color: #999;
    text-decoration: none;
    transition: color .18s ease;
}

.mma-frontend .mma-collection-songs .mma-song-source a:hover,
.mma-frontend .mma-collection-songs .mma-song-source a:focus-visible {
    color: #f1c40f;
}


/* ---------------------------------------------------------
   Empty state
   --------------------------------------------------------- */

.mma-frontend .mma-collection-empty {
    padding: 55px 24px;
    text-align: center;

    border: 1px solid rgba(255,255,255,.07);
    border-radius: 14px;

    background: #181818;
    color: #999;
}

.mma-frontend .mma-collection-empty .dashicons {
    color: #f1c40f;

    width: 42px;
    height: 42px;

    font-size: 42px;
}

.mma-frontend .mma-collection-empty h3 {
    margin: 18px 0 8px;
    color: #fff;
    font-size: 1.15rem;
}

.mma-frontend .mma-collection-empty p {
    margin: 0;
    line-height: 1.6;
}


/* ---------------------------------------------------------
   Collection not found
   --------------------------------------------------------- */

.mma-frontend .mma-collection-not-found {
    margin-top: 25px;
}

.mma-frontend .mma-collection-not-found h1 {
    color: #fff;
}


/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 960px) {

    .mma-frontend .mma-collection-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

}


@media (max-width: 700px) {

    .mma-frontend .mma-collection-main {
        padding-top: 24px;
        padding-bottom: 60px;
    }

    .mma-frontend .mma-collection-hero {
        padding: 34px 0 28px;
    }

    .mma-frontend .mma-collection-hero h1 {
        font-size: clamp(2rem, 9vw, 3rem);
    }

    .mma-frontend .mma-collection-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .mma-frontend .mma-collection-card {
        min-height: 165px;
        padding: 22px;
    }

}


@media (max-width: 560px) {

    .mma-frontend .mma-collection-main {
        padding-left: 16px;
        padding-right: 16px;
    }

    .mma-frontend .mma-collection-section-heading {
        align-items: flex-start;
        flex-direction: column;
        gap: 9px;
    }

    .mma-frontend .mma-collection-section-heading a {
        font-size: .85rem;
    }

}
/* =========================================================
   Collection Cards - Image 2 Design
   Scoped only to Song Collection cards.
   Do NOT modify the master music player.
   ========================================================= */

.mma-frontend .mma-collection-card {
    position: relative;
    min-height: 205px;
    padding: 26px 26px 24px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 14px;
    background: linear-gradient(145deg, #1b1b1b 0%, #171717 100%);
    box-shadow: 0 10px 30px rgba(0,0,0,.18);
    transition:
        transform .22s ease,
        border-color .22s ease,
        box-shadow .22s ease,
        background .22s ease;
}

/* Decorative glow in bottom-right corner */
.mma-frontend .mma-collection-card::after {
    content: "";
    position: absolute;
    width: 150px;
    height: 150px;
    right: -65px;
    bottom: -75px;
    border-radius: 50%;
    background: rgba(241,196,15,.08);
    pointer-events: none;
    transition: transform .25s ease, opacity .25s ease;
}

.mma-frontend .mma-collection-card:hover {
    transform: translateY(-5px);
    border-color: rgba(241,196,15,.42);
    background: linear-gradient(145deg, #202020 0%, #181818 100%);
    box-shadow: 0 16px 38px rgba(0,0,0,.30);
}

.mma-frontend .mma-collection-card:hover::after {
    transform: scale(1.18);
}

/* Icon box */
.mma-frontend .mma-collection-card-icon {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    margin-bottom: 22px;
    border: 1px solid rgba(241,196,15,.35);
    border-radius: 11px;
    background: rgba(241,196,15,.06);
    color: #f1c40f;
    font-size: 25px;
}

/* Card title */
.mma-frontend .mma-collection-card-title {
    position: relative;
    z-index: 1;
    display: block;
    color: #fff;
    font-size: 1.18rem;
    font-weight: 700;
    line-height: 1.35;
}

/* Card description */
.mma-frontend .mma-collection-card-description {
    position: relative;
    z-index: 1;
    display: block;
    max-width: 330px;
    margin-top: 9px;
    color: #9d9d9d;
    font-size: .94rem;
    line-height: 1.55;
}

/* ---------------------------------------------------------
   Individual collection icon treatments
   --------------------------------------------------------- */

.mma-frontend .mma-collection-card-best-ilaiyaraaja-songs
.mma-collection-card-icon {
    color: #f1c40f;
    border-color: rgba(241,196,15,.38);
    background: rgba(241,196,15,.07);
}

.mma-frontend .mma-collection-card-evergreen-songs
.mma-collection-card-icon {
    color: #65d66f;
    border-color: rgba(101,214,111,.38);
    background: rgba(101,214,111,.07);
}

.mma-frontend .mma-collection-card-love-romantic-songs
.mma-collection-card-icon {
    color: #ff4f78;
    border-color: rgba(255,79,120,.38);
    background: rgba(255,79,120,.07);
}

.mma-frontend .mma-collection-card-melody-songs
.mma-collection-card-icon {
    color: #62a8ff;
    border-color: rgba(98,168,255,.38);
    background: rgba(98,168,255,.07);
}

.mma-frontend .mma-collection-card-popular-songs
.mma-collection-card-icon {
    color: #f1c40f;
    border-color: rgba(241,196,15,.38);
    background: rgba(241,196,15,.07);
}

/* ---------------------------------------------------------
   Mobile
   --------------------------------------------------------- */

@media (max-width: 560px) {

    .mma-frontend .mma-collection-card {
        min-height: 190px;
        padding: 22px;
    }

    .mma-frontend .mma-collection-card-icon {
        width: 44px;
        height: 44px;
        margin-bottom: 18px;
        font-size: 23px;
    }

}

/* ---------------------------------------------------------
   Collection Card Footer
   --------------------------------------------------------- */

.mma-frontend .mma-collection-card-footer {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-top: auto;
    padding-top: 20px;
}

.mma-frontend .mma-collection-card-song-count {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: #888;
    font-size: .86rem;
    font-weight: 600;
}

.mma-frontend .mma-collection-card-song-count .dashicons {
    width: 17px;
    height: 17px;
    color: #f1c40f;
    font-size: 17px;
}

.mma-frontend .mma-collection-card-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #f1c40f;
    font-size: 22px;
    line-height: 1;
    transition: transform .2s ease;
}

.mma-frontend .mma-collection-card:hover .mma-collection-card-arrow {
    transform: translateX(4px);
}
/* =========================================================
   Individual Collection - Playlist Design
   Collection pages only.
   Do NOT modify the master player here.
   ========================================================= */

.mma-frontend .mma-collection-songs .mma-song-list {
    border: 1px solid rgba(241,196,15,.20);
    border-radius: 12px;
    overflow: hidden;
    background: #171717;
    box-shadow: 0 10px 30px rgba(0,0,0,.16);
}

.mma-frontend .mma-collection-songs .mma-song-row {
    position: relative;
    min-height: 78px;
    padding: 16px 18px;
    gap: 18px;
    border-bottom: 1px solid rgba(255,255,255,.065);
    background: #181818;
    transition:
        background .18s ease,
        box-shadow .18s ease;
}

.mma-frontend .mma-collection-songs .mma-song-row:last-child {
    border-bottom: 0;
}

.mma-frontend .mma-collection-songs .mma-song-row:hover {
    background: #1d1d1d;
}

/* Track number */

.mma-frontend .mma-collection-songs .mma-song-track {
    width: 34px;
    flex: 0 0 34px;
    color: #777;
    font-size: .95rem;
    font-weight: 500;
    text-align: center;
    transition: color .18s ease;
}

/* Song information */

.mma-frontend .mma-collection-songs .mma-song-info {
    min-width: 0;
}

.mma-frontend .mma-collection-songs .mma-song-title {
    color: #f5f5f5;
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.35;
    transition: color .18s ease;
}

.mma-frontend .mma-collection-songs .mma-song-source {
    display: block;
    margin-top: 5px;
    color: #888;
    font-size: .82rem;
    line-height: 1.35;
}

.mma-frontend .mma-collection-songs .mma-song-source a {
    color: #888;
    transition: color .18s ease;
}

.mma-frontend .mma-collection-songs .mma-song-source a:hover,
.mma-frontend .mma-collection-songs .mma-song-source a:focus-visible {
    color: #f1c40f;
}

/* Duration */

.mma-frontend .mma-collection-songs .mma-song-duration {
    min-width: 42px;
    color: #aaa;
    font-size: .88rem;
    text-align: right;
    white-space: nowrap;
}

/* Play button */

.mma-frontend .mma-collection-songs .mma-song-play {
    min-width: 64px;
    padding: 8px 14px;
    border-radius: 6px;
    font-size: .82rem;
    font-weight: 700;
    transition:
        transform .18s ease,
        background .18s ease,
        border-color .18s ease;
}

.mma-frontend .mma-collection-songs .mma-song-play:hover {
    transform: translateY(-1px);
}

.mma-frontend .mma-collection-songs .mma-song-play:focus-visible {
    outline: 2px solid #f1c40f;
    outline-offset: 2px;
}

/* Active song — uses the existing player JS state */

.mma-frontend .mma-collection-songs .mma-song-row.is-playing {
    background: rgba(241,196,15,.085);
    box-shadow: inset 3px 0 0 #f1c40f;
}

.mma-frontend .mma-collection-songs .mma-song-row.is-playing .mma-song-track {
    color: #f1c40f;
    font-weight: 700;
}

.mma-frontend .mma-collection-songs .mma-song-row.is-playing .mma-song-title {
    color: #f1c40f;
}

.mma-frontend .mma-collection-songs .mma-song-row.is-playing .mma-song-source {
    color: #aaa;
}

/* Mobile */

@media (max-width: 760px) {

    .mma-frontend .mma-collection-songs .mma-song-row {
        display: grid;
        grid-template-columns: 34px minmax(0, 1fr) auto;
        gap: 10px 14px;
        padding: 15px;
    }

    .mma-frontend .mma-collection-songs .mma-song-track {
        grid-column: 1;
        grid-row: 1;
    }

    .mma-frontend .mma-collection-songs .mma-song-info {
        grid-column: 2;
        grid-row: 1;
    }

    .mma-frontend .mma-collection-songs .mma-song-duration {
        grid-column: 3;
        grid-row: 1;
        align-self: center;
    }

    .mma-frontend .mma-collection-songs .mma-song-play {
        grid-column: 2 / 4;
        grid-row: 2;
        justify-self: start;
        margin-left: 0;
    }
}
/* =========================================================
   COLLECTION PLAYLIST - STREAMING STYLE
   Collection pages ONLY
   Master player is untouched.
   ========================================================= */

.mma-frontend .mma-collection-songs .mma-song-list {
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 14px;
    overflow: hidden;
    background: #121212;
    box-shadow: 0 14px 40px rgba(0,0,0,.25);
}

.mma-frontend .mma-collection-songs .mma-song-row {
    display: grid;
    grid-template-columns: 42px minmax(0,1fr) auto 44px;
    align-items: center;
    gap: 18px;
    min-height: 82px;
    padding: 12px 18px;
    border-bottom: 1px solid rgba(255,255,255,.055);
    background: #171717;
    transition:
        background .2s ease,
        transform .2s ease;
}

.mma-frontend .mma-collection-songs .mma-song-row:last-child {
    border-bottom: 0;
}

.mma-frontend .mma-collection-songs .mma-song-row:hover {
    background: #202020;
}

/* Track number */

.mma-frontend .mma-collection-songs .mma-song-track {
    width: 42px;
    color: #777;
    font-size: .9rem;
    font-weight: 600;
    text-align: center;
}

/* Song information */

.mma-frontend .mma-collection-songs .mma-song-info {
    min-width: 0;
}

.mma-frontend .mma-collection-songs .mma-song-title {
    overflow: hidden;
    color: #f5f5f5;
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.4;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.mma-frontend .mma-collection-songs .mma-song-source {
    display: block;
    margin-top: 5px;
    overflow: hidden;
    color: #777;
    font-size: .8rem;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.mma-frontend .mma-collection-songs .mma-song-source a {
    color: #888;
}

/* Duration */

.mma-frontend .mma-collection-songs .mma-song-duration {
    color: #999;
    font-size: .82rem;
    white-space: nowrap;
}

/* Circular play button */

.mma-frontend .mma-collection-songs .mma-song-play {
    width: 42px;
    min-width: 42px;
    height: 42px;
    padding: 0;
    border: 1px solid rgba(241,196,15,.55);
    border-radius: 50%;
    background: transparent;
    color: #f1c40f;
    font-size: 0;
    line-height: 42px;
    text-align: center;
    transition:
        background .2s ease,
        color .2s ease,
        transform .2s ease,
        border-color .2s ease;
}

/* Play triangle */

.mma-frontend .mma-collection-songs .mma-song-play::before {
    content: "▶";
    display: block;
    font-size: 13px;
    line-height: 40px;
    margin-left: 2px;
}

/* Loading state */

.mma-frontend .mma-collection-songs .mma-song-play[data-player-state="loading"]::before {
    content: "…";
    font-size: 18px;
    margin-left: 0;
}

/* Hover */

.mma-frontend .mma-collection-songs .mma-song-play:hover {
    transform: scale(1.08);
    border-color: #f1c40f;
    background: #f1c40f;
    color: #111;
}

/* Currently playing */

.mma-frontend .mma-collection-songs .mma-song-row.is-playing {
    background: rgba(241,196,15,.075);
    box-shadow: inset 3px 0 0 #f1c40f;
}

.mma-frontend .mma-collection-songs .mma-song-row.is-playing .mma-song-track {
    color: #f1c40f;
}

.mma-frontend .mma-collection-songs .mma-song-row.is-playing .mma-song-title {
    color: #f1c40f;
}

/* Playing button */

.mma-frontend .mma-collection-songs .mma-song-play.is-playing {
    background: #f1c40f;
    border-color: #f1c40f;
    color: #111;
}

.mma-frontend .mma-collection-songs .mma-song-play.is-playing::before {
    content: "Ⅱ";
    font-size: 14px;
    margin-left: 0;
}

/* Unavailable */

.mma-frontend .mma-collection-songs .mma-song-play-disabled {
    opacity: .3;
}

/* Mobile */

@media (max-width: 700px) {

    .mma-frontend .mma-collection-songs .mma-song-row {
        grid-template-columns: 30px minmax(0,1fr) 42px;
        gap: 12px;
        min-height: 76px;
        padding: 12px 14px;
    }

    .mma-frontend .mma-collection-songs .mma-song-track {
        width: 30px;
    }

    .mma-frontend .mma-collection-songs .mma-song-duration {
        display: none;
    }

    .mma-frontend .mma-collection-songs .mma-song-play {
        grid-column: 3;
        grid-row: 1;
    }
}
/* =========================================================
   COLLECTION LANDING PAGE - FINAL POLISH
   Design only. Master player untouched.
   ========================================================= */

/* Hero spacing */

.mma-frontend .mma-collection-hero {
    padding-top: 24px;
    padding-bottom: 22px;
}

.mma-frontend .mma-collection-hero h1 {
    letter-spacing: -0.025em;
}

.mma-frontend .mma-collection-hero p {
    margin-top: 12px;
}

/* Collection grid */

.mma-frontend .mma-collection-grid {
    gap: 20px;
    margin-top: 34px;
}

/* Cards */

.mma-frontend .mma-collection-card {
    position: relative;
    min-height: 205px;
    padding: 26px;
    overflow: hidden;
    border-radius: 14px;
    background: linear-gradient(
        145deg,
        #1a1a1a 0%,
        #151515 100%
    );
    transition:
        transform .22s ease,
        border-color .22s ease,
        box-shadow .22s ease,
        background .22s ease;
}

/* Decorative glow */

.mma-frontend .mma-collection-card::after {
    content: "";
    position: absolute;
    width: 105px;
    height: 105px;
    right: -34px;
    bottom: -38px;
    border-radius: 50%;
    background: rgba(241,196,15,.055);
    pointer-events: none;
    transition:
        transform .25s ease,
        background .25s ease;
}

/* Hover */

.mma-frontend .mma-collection-card:hover,
.mma-frontend .mma-collection-card:focus-visible {
    transform: translateY(-4px);
    border-color: rgba(241,196,15,.38);
    background: linear-gradient(
        145deg,
        #1d1d1d 0%,
        #171717 100%
    );
    box-shadow: 0 14px 35px rgba(0,0,0,.25);
}

.mma-frontend .mma-collection-card:hover::after,
.mma-frontend .mma-collection-card:focus-visible::after {
    transform: scale(1.25);
    background: rgba(241,196,15,.08);
}

/* Icon */

.mma-frontend .mma-collection-card-icon {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    margin-bottom: 20px;
    border: 1px solid currentColor;
    border-radius: 11px;
    font-size: 22px;
    background: rgba(255,255,255,.025);
}

/* Card title */

.mma-frontend .mma-collection-card-title {
    position: relative;
    z-index: 1;
    display: block;
    font-size: 1.08rem;
    line-height: 1.35;
    letter-spacing: -0.01em;
}

/* Description */

.mma-frontend .mma-collection-card-description {
    position: relative;
    z-index: 1;
    max-width: 330px;
    margin-top: 9px;
    line-height: 1.55;
}

/* Footer */

.mma-frontend .mma-collection-card-footer {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    margin-top: auto;
    padding-top: 20px;
}

/* Song count */

.mma-frontend .mma-collection-card-song-count {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: #999;
    font-size: .82rem;
    font-weight: 500;
}

.mma-frontend .mma-collection-card-song-count .dashicons {
    width: 16px;
    height: 16px;
    color: #f1c40f;
    font-size: 16px;
}

/* Arrow */

.mma-frontend .mma-collection-card-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    color: #f1c40f;
    font-size: 20px;
    line-height: 1;
    transition: transform .2s ease;
}

.mma-frontend .mma-collection-card:hover .mma-collection-card-arrow,
.mma-frontend .mma-collection-card:focus-visible .mma-collection-card-arrow {
    transform: translateX(5px);
}

/* Individual collection page */

.mma-frontend .mma-collection-songs {
    margin-top: 38px;
}

.mma-frontend .mma-collection-section-heading {
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255,255,255,.08);
}

.mma-frontend .mma-collection-section-heading h2 {
    color: #fff;
    font-size: 1.25rem;
}

.mma-frontend .mma-collection-section-heading a {
    font-size: .9rem;
}

/* Mobile */

@media (max-width: 820px) {

    .mma-frontend .mma-collection-hero {
        padding-top: 18px;
    }

    .mma-frontend .mma-collection-grid {
        margin-top: 26px;
    }

    .mma-frontend .mma-collection-card {
        min-height: 190px;
        padding: 22px;
    }
}

@media (max-width: 560px) {

    .mma-frontend .mma-collection-hero {
        padding-top: 12px;
        padding-bottom: 12px;
    }

    .mma-frontend .mma-collection-grid {
        margin-top: 22px;
        gap: 14px;
    }

    .mma-frontend .mma-collection-card {
        min-height: 175px;
        padding: 20px;
    }

    .mma-frontend .mma-collection-card-icon {
        width: 44px;
        height: 44px;
        margin-bottom: 16px;
    }
}

/* =========================================================
   COLLECTION PAGE - MASTER PLAYER POSITIONING
   Collection pages only.
   ========================================================= */

.mma-frontend .mma-collection-main .mma-song-player {
    width: min(100%, 820px);
    margin: 24px auto 10px;
}

@media (max-width: 760px) {
    .mma-frontend .mma-collection-main .mma-song-player {
        width: 100%;
        margin-top: 20px;
    }
}


/* =========================================================
   COLLECTION PAGE - MASTER PLAYER POSITIONING
   Collection pages only.
   ========================================================= */

.mma-frontend .mma-collection-main .mma-song-player {
    width: min(100%, 820px);
    margin: 24px auto 10px;
}

@media (max-width: 760px) {
    .mma-frontend .mma-collection-main .mma-song-player {
        width: 100%;
        margin-top: 20px;
    }
}


/* =========================================================
   COLLECTION PLAYER - MOVIE POSTER
   ========================================================= */

.mma-frontend .mma-collection-player-poster {
    width: 82px;
    height: 108px;
    flex: 0 0 82px;
    overflow: hidden;
    border-radius: 6px;
    background: #111;
    box-shadow: 0 4px 14px rgba(0,0,0,.35);
}

.mma-frontend .mma-collection-player-poster[hidden] {
    display: none;
}

.mma-frontend .mma-collection-player-poster img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 560px) {
    .mma-frontend .mma-collection-player-poster {
        width: 64px;
        height: 84px;
        flex-basis: 64px;
    }
}


/* =========================================================
   COLLECTION PLAYER - POSTER / DETAILS SPACING
   ========================================================= */

.mma-frontend .mma-collection-main .mma-player-header {
    justify-content: flex-start;
    gap: 16px;
}

.mma-frontend .mma-collection-main .mma-collection-player-poster {
    margin-right: 2px;
}

.mma-frontend .mma-collection-main .mma-player-header > div:nth-child(2) {
    flex: 1;
    min-width: 0;
}

.mma-frontend .mma-collection-main .mma-player-close {
    margin-left: auto;
    flex: 0 0 auto;
}

@media (max-width: 560px) {
    .mma-frontend .mma-collection-main .mma-player-header {
        gap: 12px;
    }
}


/* =========================================================
   COLLECTION PLAYER - POSTER SIZE REFINEMENT
   ========================================================= */

.mma-frontend .mma-collection-main .mma-collection-player-poster {
    width: 90px;
    height: 120px;
    flex-basis: 90px;
}

.mma-frontend .mma-collection-main .mma-player-header > div:nth-child(2) {
    align-self: center;
}

@media (max-width: 560px) {
    .mma-frontend .mma-collection-main .mma-collection-player-poster {
        width: 72px;
        height: 96px;
        flex-basis: 72px;
    }
}


/* =========================================================
   COLLECTION SONG LIST - MODERN MUSIC ROW DESIGN
   Collection pages only.
   ========================================================= */

.mma-frontend .mma-collection-main .mma-song-list {
    border-radius: 12px;
    border-color: rgba(241,196,15,.20);
    background: #151515;
    box-shadow: 0 8px 24px rgba(0,0,0,.18);
}

.mma-frontend .mma-collection-main .mma-song-row {
    min-height: 68px;
    padding: 12px 16px;
    gap: 14px;
    transition: background .18s ease, box-shadow .18s ease;
}

.mma-frontend .mma-collection-main .mma-song-row:hover {
    background: rgba(255,255,255,.035);
}

.mma-frontend .mma-collection-main .mma-song-track {
    width: 34px;
    flex-basis: 34px;
    color: #777;
    font-size: .88rem;
    font-variant-numeric: tabular-nums;
}

.mma-frontend .mma-collection-main .mma-song-info {
    padding: 2px 0;
}

.mma-frontend .mma-collection-main .mma-song-title {
    font-size: .98rem;
    line-height: 1.35;
    letter-spacing: .01em;
}

.mma-frontend .mma-collection-main .mma-song-source {
    display: block;
    margin-top: 4px;
    font-size: .78rem;
    line-height: 1.3;
}

.mma-frontend .mma-collection-main .mma-song-duration {
    min-width: 44px;
    text-align: right;
    color: #888;
    font-size: .82rem;
    font-variant-numeric: tabular-nums;
}

.mma-frontend .mma-collection-main .mma-song-play {
    width: 38px;
    min-width: 38px;
    height: 38px;
    padding: 0;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0;
}

.mma-frontend .mma-collection-main .mma-song-play::before {
    content: "▶";
    font-size: 12px;
    line-height: 1;
    transform: translateX(1px);
}

.mma-frontend .mma-collection-main .mma-song-play.is-playing::before {
    content: "Ⅱ";
    font-size: 12px;
}

.mma-frontend .mma-collection-main .mma-song-play-disabled::before {
    content: "—";
    font-size: 13px;
}

.mma-frontend .mma-collection-main .mma-song-row.is-playing {
    background: rgba(241,196,15,.075);
    box-shadow: inset 3px 0 0 #f1c40f;
}

.mma-frontend .mma-collection-main .mma-song-row.is-playing .mma-song-track {
    color: #f1c40f;
}

.mma-frontend .mma-collection-main .mma-song-row.is-playing .mma-song-duration {
    color: #aaa;
}

@media (max-width: 760px) {

    .mma-frontend .mma-collection-main .mma-song-row {
        min-height: 64px;
        padding: 10px 12px;
        gap: 10px;
    }

    .mma-frontend .mma-collection-main .mma-song-track {
        width: 28px;
        flex-basis: 28px;
    }

    .mma-frontend .mma-collection-main .mma-song-duration {
        min-width: 40px;
        font-size: .78rem;
    }

    .mma-frontend .mma-collection-main .mma-song-play {
        width: 36px;
        min-width: 36px;
        height: 36px;
    }
}


/* =========================================================
   COLLECTION PLAYER - PROGRESS BAR
   ========================================================= */

.mma-frontend .mma-collection-main .mma-player-progress {
    width: calc(100% - 36px);
    height: 5px;
    margin: 8px 18px 14px;
    overflow: hidden;
    border-radius: 999px;
    background: rgba(255,255,255,.12);
}

.mma-frontend .mma-collection-main .mma-player-progress-bar {
    width: 0%;
    height: 100%;
    border-radius: inherit;
    background: #f1c40f;
    transition: width .15s linear;
}

@media (max-width: 560px) {
    .mma-frontend .mma-collection-main .mma-player-progress {
        width: calc(100% - 24px);
        margin-left: 12px;
        margin-right: 12px;
    }
}


/* =========================================================
   COLLECTION PLAYER - SEEKABLE PROGRESS SLIDER
   ========================================================= */

.mma-frontend .mma-collection-main input.mma-player-progress {
    display: block;
    width: calc(100% - 36px);
    height: 18px;
    margin: 6px 18px 12px;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: transparent;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
}

.mma-frontend .mma-collection-main input.mma-player-progress::-webkit-slider-runnable-track {
    height: 5px;
    border-radius: 999px;
    background: rgba(255,255,255,.14);
}

.mma-frontend .mma-collection-main input.mma-player-progress::-webkit-slider-thumb {
    width: 12px;
    height: 12px;
    margin-top: -3.5px;
    border: 0;
    border-radius: 50%;
    background: #f1c40f;
    appearance: none;
    -webkit-appearance: none;
}

.mma-frontend .mma-collection-main input.mma-player-progress::-moz-range-track {
    height: 5px;
    border-radius: 999px;
    background: rgba(255,255,255,.14);
}

.mma-frontend .mma-collection-main input.mma-player-progress::-moz-range-progress {
    height: 5px;
    border-radius: 999px;
    background: #f1c40f;
}

.mma-frontend .mma-collection-main input.mma-player-progress::-moz-range-thumb {
    width: 12px;
    height: 12px;
    border: 0;
    border-radius: 50%;
    background: #f1c40f;
    cursor: pointer;
}

.mma-frontend .mma-collection-main input.mma-player-progress:focus {
    outline: none;
}

@media (max-width: 560px) {
    .mma-frontend .mma-collection-main input.mma-player-progress {
        width: calc(100% - 24px);
        margin-left: 12px;
        margin-right: 12px;
    }
}




/* =========================================================
   COLLECTION PLAYER - FINAL REFERENCE PLAYER
   Same transport/player design as movie pages.
   ========================================================= */

.mma-frontend .mma-collection-main .mma-collection-player {


    z-index: 9999;

    width: min(820px, calc(100% - 32px));
    max-width: 820px;

    margin: 0;
    padding: 0;

    box-sizing: border-box;
}

.mma-frontend .mma-collection-main .mma-collection-player-inner {
    position: relative;

    display: flex;
    align-items: stretch;

    min-height: 160px;

    padding: 16px 18px;

    border: 1px solid rgba(241,196,15,.45);
    border-radius: 10px;

    background: #151515;

    box-shadow: 0 14px 40px rgba(0,0,0,.50);

    box-sizing: border-box;
}

/* Poster */

.mma-frontend .mma-collection-main .mma-collection-player-poster {
    width: 82px;
    height: 108px;

    flex: 0 0 82px;

    overflow: hidden;

    border-radius: 5px;

    background: #111;

    box-shadow: 0 5px 18px rgba(0,0,0,.4);
}

.mma-frontend .mma-collection-main .mma-collection-player-poster[hidden] {
    display: none;
}

.mma-frontend .mma-collection-main .mma-collection-player-poster img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;
}

/* Player content */

.mma-frontend .mma-collection-main .mma-collection-player-content {
    flex: 1;
    min-width: 0;

    margin-left: 16px;
    padding-right: 38px;

    display: flex;
    flex-direction: column;
}

.mma-frontend .mma-collection-main .mma-player-label {
    margin-top: 1px;
    margin-bottom: 4px;

    color: #f1c40f;

    font-size: .70rem;
    font-weight: 700;

    letter-spacing: .22em;
    text-transform: uppercase;
}

.mma-frontend .mma-collection-main .mma-player-title {
    color: #fff;

    font-size: 1.05rem;
    font-weight: 700;

    line-height: 1.25;

    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.mma-frontend .mma-collection-main .mma-player-status {
    margin-top: 5px;

    color: #999;

    font-size: .82rem;
}

/* Progress */

.mma-frontend .mma-collection-player-progress-row {
    display: flex;
    align-items: center;

    width: 100%;

    gap: 9px;

    margin-top: 12px;
}

.mma-frontend .mma-collection-main .mma-player-time {
    flex: 0 0 auto;

    color: #ddd;

    font-size: .78rem;

    font-variant-numeric: tabular-nums;

    white-space: nowrap;
}

.mma-frontend .mma-collection-main input.mma-player-progress {
    flex: 1;

    min-width: 100px;

    height: 18px;

    margin: 0;
    padding: 0;

    border: 0;

    background: transparent;

    cursor: pointer;

    appearance: none;
    -webkit-appearance: none;
}

.mma-frontend .mma-collection-main input.mma-player-progress::-webkit-slider-runnable-track {
    height: 5px;

    border-radius: 999px;

    background: rgba(255,255,255,.18);
}

.mma-frontend .mma-collection-main input.mma-player-progress::-webkit-slider-thumb {
    width: 13px;
    height: 13px;

    margin-top: -4px;

    border: 0;
    border-radius: 50%;

    background: #f1c40f;

    appearance: none;
    -webkit-appearance: none;
}

.mma-frontend .mma-collection-main input.mma-player-progress::-moz-range-track {
    height: 5px;

    border-radius: 999px;

    background: rgba(255,255,255,.18);
}

.mma-frontend .mma-collection-main input.mma-player-progress::-moz-range-progress {
    height: 5px;

    border-radius: 999px;

    background: #f1c40f;
}

.mma-frontend .mma-collection-main input.mma-player-progress::-moz-range-thumb {
    width: 13px;
    height: 13px;

    border: 0;
    border-radius: 50%;

    background: #f1c40f;

    cursor: pointer;
}

.mma-frontend .mma-collection-main input.mma-player-progress:focus {
    outline: none;
}

/* Previous / Play / Next */

.mma-frontend .mma-collection-player-transport {
    display: flex;

    align-items: center;
    justify-content: center;

    gap: 28px;

    margin-top: 8px;
}

.mma-frontend .mma-collection-main .mma-player-transport {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    width: 38px;
    height: 38px;

    padding: 0;

    border: 0;

    background: transparent;
    color: #fff;

    font-size: 15px;
    font-weight: 700;

    cursor: pointer;
}

.mma-frontend .mma-collection-main .mma-player-transport:hover {
    color: #f1c40f;
}

.mma-frontend .mma-collection-main .mma-player-playpause {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    width: 52px;
    min-width: 52px;
    height: 38px;

    margin: 0;
    padding: 0;

    border: 0;
    border-radius: 5px;

    background: #f1c40f;
    color: #111;

    font-size: .78rem;
    font-weight: 700;

    cursor: pointer;
}

/* Close */

.mma-frontend .mma-collection-main .mma-player-close {
    position: absolute;

    top: 50%;
    right: 16px;

    transform: translateY(-50%);

    display: flex;

    align-items: center;
    justify-content: center;

    width: 38px;
    height: 38px;

    margin: 0;
    padding: 0;

    border: 0;
    border-radius: 50%;

    background: #f1c40f;
    color: #111;

    font-size: 22px;
    font-weight: 700;

    cursor: pointer;
}

/* Hide actual YouTube / MP3 engine */

.mma-frontend .mma-collection-main .mma-player-body {
    position: absolute;

    width: 1px;
    height: 1px;

    overflow: hidden;

    opacity: 0;
    pointer-events: none;
}

.mma-frontend .mma-collection-main .mma-youtube-player,
.mma-frontend .mma-collection-main .mma-mp3-player {
    width: 1px;
    height: 1px;
}

/* Mobile */

@media (max-width: 760px) {

    .mma-frontend .mma-collection-main .mma-collection-player {



    }

    .mma-frontend .mma-collection-main .mma-collection-player-inner {
        min-height: 118px;

        padding: 12px 14px;
    }

    .mma-frontend .mma-collection-main .mma-collection-player-poster {
        width: 62px;
        height: 82px;

        flex-basis: 62px;
    }

    .mma-frontend .mma-collection-main .mma-collection-player-content {
        margin-left: 12px;
        padding-right: 32px;
    }

    .mma-frontend .mma-collection-main .mma-player-label {
        font-size: .60rem;
    }

    .mma-frontend .mma-collection-main .mma-player-title {
        font-size: .90rem;
    }

    .mma-frontend .mma-collection-player-progress-row {
        gap: 5px;
        margin-top: 8px;
    }

    .mma-frontend .mma-collection-main .mma-player-time {
        font-size: .66rem;
    }

    .mma-frontend .mma-collection-player-transport {
        gap: 15px;
        margin-top: 5px;
    }

    .mma-frontend .mma-collection-main .mma-player-transport {
        width: 32px;
        height: 32px;

        font-size: 12px;
    }

    .mma-frontend .mma-collection-main .mma-player-playpause {
        width: 48px;
        min-width: 48px;
        height: 32px;
    }

    .mma-frontend .mma-collection-main .mma-player-close {
        top: 10px;
        right: 9px;


        width: 30px;
        height: 30px;

        font-size: 18px;
    }

    .mma-frontend .mma-collection-main {
        padding-bottom: 165px;
    }
}


/* =========================================================

/* =========================================================
   COLLECTION PAGE - FINAL BOTTOM SPACING
   Footer-aware player handles its own positioning.
   ========================================================= */

.mma-frontend .mma-collection-main {
    padding-bottom: 20px;
}

@media (max-width: 760px) {
    .mma-frontend .mma-collection-main {
        padding-bottom: 20px;
    }
}


/* =========================================================
   COLLECTION PAGE - REMOVE GLOBAL PLAYER BOTTOM SPACE
   Footer-aware player handles its own positioning.
   ========================================================= */

.mma-frontend:has(.mma-collection-main) {
    padding-bottom: 0 !important;
}


/* =========================================================
   COLLECTION PLAYER - REDUCE GAP ABOVE FOOTER
   ========================================================= */

.mma-frontend .mma-collection-main .mma-song-player {
    bottom: 95px;
}

@media (max-width: 760px) {
    .mma-frontend .mma-collection-main .mma-song-player {
        bottom: 80px;
    }
}


/* =========================================================
   COLLECTION PLAYER - FINAL SPACING FIX
   JavaScript controls the player position.
   Remove artificial page/player spacing.
   ========================================================= */

.mma-frontend .mma-collection-main {
    padding-bottom: 0 !important;
}

.mma-frontend .mma-collection-main .mma-song-player {
}

@media (max-width: 760px) {
    .mma-frontend .mma-collection-main {
        padding-bottom: 0 !important;
    }

    .mma-frontend .mma-collection-main .mma-song-player {
    }
}


/* =========================================================
   COLLECTION PAGE - REMOVE EXCESS VIEWPORT HEIGHT
   Allow footer to follow the actual collection content.
   ========================================================= */

.mma-frontend:has(.mma-collection-main) {
    min-height: auto !important;
}



/* =========================================================
   COLLECTION CARDS - PREMIUM GOLD REFINEMENT
   Small visual enhancement only.
   Keeps the existing layout unchanged.
   ========================================================= */

/* Keep all collection icons within the archive gold palette. */
.mma-frontend .mma-collection-card-icon {
    color: #f1c40f !important;
    border-color: rgba(241,196,15,.30);
    background: rgba(241,196,15,.055);
}

/* Slightly stronger interactive state. */
.mma-frontend .mma-collection-card:hover,
.mma-frontend .mma-collection-card:focus-visible {
    border-color: rgba(241,196,15,.48);
    box-shadow:
        0 14px 35px rgba(0,0,0,.28),
        0 0 0 1px rgba(241,196,15,.06);
}

/* Subtle icon emphasis on hover. */
.mma-frontend .mma-collection-card:hover .mma-collection-card-icon,
.mma-frontend .mma-collection-card:focus-visible .mma-collection-card-icon {
    color: #f1c40f !important;
    border-color: rgba(241,196,15,.48);
    background: rgba(241,196,15,.09);
    box-shadow: 0 0 18px rgba(241,196,15,.08);
}

/* Make the song count slightly more prominent. */
.mma-frontend .mma-collection-card-song-count {
    color: #a5a5a5;
    font-weight: 600;
}

/* Keep the archive arrow clearly visible. */
.mma-frontend .mma-collection-card-arrow {
    color: #f1c40f;
}



/* =========================================================
   SINGER / LYRICIST INDEX PAGES
   ========================================================= */

.mma-frontend .mma-person-index-main {
    max-width: 1180px;
    margin: 0 auto;
    padding: 34px 22px 80px;
}

.mma-frontend .mma-person-index-hero {
    padding-bottom: 34px;
}


/* ---------------------------------------------------------
   Person index grid
   --------------------------------------------------------- */

.mma-frontend .mma-person-index-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    margin-top: 12px;
}


/* ---------------------------------------------------------
   Person cards
   --------------------------------------------------------- */

.mma-frontend .mma-person-index-card {
    position: relative;

    display: flex;
    align-items: center;
    gap: 16px;

    min-height: 76px;
    padding: 16px 18px;

    overflow: hidden;

    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 12px;

    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,.045),
            rgba(255,255,255,.015)
        ),
        #181818;

    color: inherit;
    text-decoration: none;

    transition:
        transform .22s ease,
        border-color .22s ease,
        background .22s ease,
        box-shadow .22s ease;
}


/* Gold top accent */

.mma-frontend .mma-person-index-card::before {
    content: "";

    position: absolute;
    left: 0;
    top: 0;

    width: 100%;
    height: 2px;

    background: #f1c40f;

    transform: scaleX(0);
    transform-origin: left;

    transition: transform .22s ease;
}


/* Subtle background glow */

.mma-frontend .mma-person-index-card::after {
    content: "";

    position: absolute;

    right: -35px;
    bottom: -45px;

    width: 110px;
    height: 110px;

    border-radius: 50%;

    background: rgba(241,196,15,.035);

    pointer-events: none;
}


/* Hover */

.mma-frontend .mma-person-index-card:hover,
.mma-frontend .mma-person-index-card:focus-visible {
    transform: translateY(-3px);

    border-color: rgba(241,196,15,.42);

    background:
        linear-gradient(
            145deg,
            rgba(241,196,15,.055),
            rgba(255,255,255,.02)
        ),
        #1b1b1b;

    box-shadow: 0 12px 30px rgba(0,0,0,.25);
}

.mma-frontend .mma-person-index-card:hover::before,
.mma-frontend .mma-person-index-card:focus-visible::before {
    transform: scaleX(1);
}


/* ---------------------------------------------------------
   Person icon
   --------------------------------------------------------- */

.mma-frontend .mma-person-index-icon {
    position: relative;
    z-index: 1;

    flex: 0 0 42px;

    display: flex;
    align-items: center;
    justify-content: center;

    width: 42px;
    height: 42px;

    border: 1px solid rgba(241,196,15,.22);
    border-radius: 10px;

    color: #f1c40f;
    background: rgba(241,196,15,.055);

    font-size: 20px;

    transition:
        background .22s ease,
        border-color .22s ease,
        transform .22s ease;
}

.mma-frontend .mma-person-index-card:hover .mma-person-index-icon,
.mma-frontend .mma-person-index-card:focus-visible .mma-person-index-icon {
    border-color: rgba(241,196,15,.45);
    background: rgba(241,196,15,.10);
    transform: scale(1.05);
}


/* ---------------------------------------------------------
   Person name
   --------------------------------------------------------- */

.mma-frontend .mma-person-index-name {
    position: relative;
    z-index: 1;

    flex: 1;

    color: #fff;

    font-size: 1rem;
    line-height: 1.35;
    font-weight: 600;
}


/* ---------------------------------------------------------
   Arrow
   --------------------------------------------------------- */

.mma-frontend .mma-person-index-arrow {
    position: relative;
    z-index: 1;

    flex: 0 0 auto;

    color: #666;

    font-size: 20px;
    line-height: 1;

    transition:
        color .22s ease,
        transform .22s ease;
}

.mma-frontend .mma-person-index-card:hover .mma-person-index-arrow,
.mma-frontend .mma-person-index-card:focus-visible .mma-person-index-arrow {
    color: #f1c40f;
    transform: translateX(4px);
}


/* ---------------------------------------------------------
   Empty state
   --------------------------------------------------------- */

.mma-frontend .mma-person-index-empty {
    margin-top: 20px;
}


/* ---------------------------------------------------------
   Responsive
   --------------------------------------------------------- */

@media (max-width: 900px) {

    .mma-frontend .mma-person-index-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

}


@media (max-width: 600px) {

    .mma-frontend .mma-person-index-main {
        padding-left: 16px;
        padding-right: 16px;
    }

    .mma-frontend .mma-person-index-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .mma-frontend .mma-person-index-card {
        min-height: 70px;
        padding: 14px 16px;
    }

}


/* =========================================================
   COLLECTION PLAYER - NATURAL DOCUMENT POSITION
   Player stays in the document flow and moves with scrolling.
   ========================================================= */

}


/* =========================================================
   SINGER / LYRICIST PAGES - PLAYER NATURAL MOVEMENT
   Player follows the document while scrolling.
   Does NOT affect collection pages.
   ========================================================= */

body.mma-singer-page .mma-collection-main .mma-song-player,
body.mma-singer-page .mma-collection-main .mma-collection-player,
body.mma-lyricist-page .mma-collection-main .mma-song-player,
body.mma-lyricist-page .mma-collection-main .mma-collection-player {
    position: relative !important;
    top: auto !important;
    bottom: auto !important;
    left: auto !important;
    right: auto !important;
    transform: none !important;
    z-index: 1 !important;
}


/* =========================================================
   SINGER / LYRICIST PAGES - PLAYER CLEARANCE
   Creates physical space between the last song and footer.
   Does NOT affect normal collection pages.
   ========================================================= */

body.mma-singer-page .mma-collection-main,
body.mma-lyricist-page .mma-collection-main {
    padding-bottom: 220px !important;
}

@media (max-width: 760px) {
    body.mma-singer-page .mma-collection-main,
    body.mma-lyricist-page .mma-collection-main {
        padding-bottom: 160px !important;
    }
}


/* =========================================================
   SINGER / LYRICIST PAGES - SPACE ABOVE FOOTER
   Step 1: create physical space between the last song
   and the footer.

   PLAYER POSITION IS NOT CHANGED HERE.
   ========================================================= */

@media (min-width: 761px) {
    body.mma-singer-page .mma-collection-main,
    body.mma-lyricist-page .mma-collection-main {
        padding-bottom: 150px !important;
    }
}

@media (max-width: 760px) {
    body.mma-singer-page .mma-collection-main,
    body.mma-lyricist-page .mma-collection-main {
        padding-bottom: 120px !important;
    }
}


/* =========================================================
   SINGER / LYRICIST PAGES - PLAYER-SIZED FOOTER GAP
   Gap is reserved equal to the player height.
   PLAYER POSITION IS NOT CHANGED IN THIS STEP.
   ========================================================= */

@media (min-width: 761px) {
    body.mma-singer-page .mma-collection-main,
    body.mma-lyricist-page .mma-collection-main {
        padding-bottom: 190px !important;
    }
}

@media (max-width: 760px) {
    body.mma-singer-page .mma-collection-main,
    body.mma-lyricist-page .mma-collection-main {
        padding-bottom: 118px !important;
    }
}


/* =========================================================
   SINGER / LYRICIST PAGES - GAP AFTER SONG LIST
   The gap is created directly after the song section.
   Player positioning is NOT changed here.
   ========================================================= */

@media (min-width: 761px) {
    body.mma-singer-page .mma-collection-main,
    body.mma-lyricist-page .mma-collection-main {
        padding-bottom: 0 !important;
    }

    body.mma-singer-page .mma-collection-main .mma-songs-section,
    body.mma-lyricist-page .mma-collection-main .mma-songs-section {
        margin-bottom: 190px !important;
    }
}

@media (max-width: 760px) {
    body.mma-singer-page .mma-collection-main,
    body.mma-lyricist-page .mma-collection-main {
        padding-bottom: 0 !important;
    }

    body.mma-singer-page .mma-collection-main .mma-songs-section,
    body.mma-lyricist-page .mma-collection-main .mma-songs-section {
        margin-bottom: 118px !important;
    }
}


/* =========================================================
   SINGER / LYRICIST - EXACT PLAYER SPACE BEFORE FOOTER
   Reserve exactly 190px between the song list and footer.
   ========================================================= */

body.mma-singer-page .mma-collection-main,
body.mma-lyricist-page .mma-collection-main {
    padding-bottom: 190px !important;
    box-sizing: border-box;
}


/* =========================================================
   SINGER / LYRICIST - 190PX SPACE BETWEEN SONGS AND FOOTER
   ========================================================= */

body.mma-singer-page .mma-collection-main .mma-songs-section,
body.mma-lyricist-page .mma-collection-main .mma-songs-section {
    margin-bottom: 190px !important;
}



/* =========================================================
   SINGER / LYRICIST - REAL SPACE FOR MOVING PLAYER
   Reserve physical document space after the song list.
   ========================================================= */

body.mma-singer-page .mma-collection-main,
body.mma-lyricist-page .mma-collection-main {
    padding-bottom: 190px !important;
}

/* =========================================================
   COLLECTION PLAYER - CLEAN DOCUMENT FLOW
   Final positioning test.
   Player stays directly after the song list.
   ========================================================= */

.mma-frontend .mma-collection-main .mma-collection-player {
    position: relative !important;
    top: auto !important;
    right: auto !important;
    bottom: auto !important;
    left: auto !important;

    width: min(820px, calc(100% - 32px)) !important;
    max-width: 820px !important;

    margin: 24px auto 24px !important;

    transform: none !important;
    z-index: 10 !important;

}

/* =========================================================
   COLLECTION PLAYER - MOVIE PLAYER BEHAVIOR
   Match the working movie-page player.
   ========================================================= */

.mma-frontend .mma-collection-main .mma-collection-player {
    position: fixed !important;
    left: 50% !important;
    bottom: 160px !important;
    top: auto !important;
    right: auto !important;

    transform: translateX(-50%) !important;

    width: min(820px, calc(100% - 32px)) !important;
    max-width: 820px !important;

    margin: 0 !important;
    z-index: 9999 !important;

    box-sizing: border-box;
}

@media (max-width: 760px) {
    .mma-frontend .mma-collection-main .mma-collection-player {
        width: calc(100% - 24px) !important;
        left: 50% !important;
        bottom: 80px !important;
        margin: 0 !important;
        transform: translateX(-50%) !important;
    }
}

/* =========================================================
   COLLECTION PLAYER - MOVIE PLAYER BEHAVIOR
   Final override.
   Collection player remains fixed while the page scrolls.
   ========================================================= */

.mma-frontend .mma-collection-main .mma-collection-player {
    position: fixed !important;
    left: 50% !important;
    right: auto !important;
    top: auto !important;
    bottom: 160px !important;

    transform: translateX(-50%) !important;

    width: min(820px, calc(100% - 32px)) !important;
    max-width: 820px !important;

    margin: 0 !important;
    padding: 0 !important;

    z-index: 9999 !important;
    box-sizing: border-box !important;
}

@media (max-width: 760px) {
    .mma-frontend .mma-collection-main .mma-collection-player {
        width: calc(100% - 24px) !important;
        left: 50% !important;
        bottom: 110px !important;
        margin: 0 !important;
    }
}


/* =========================================================
   COLLECTION PLAYER - FINAL FIX
   Behave exactly like the working movie player.
   Do NOT affect movie pages.
   ========================================================= */

.mma-frontend .mma-collection-main .mma-collection-player {
    position: fixed !important;
    left: 50% !important;
    right: auto !important;
    top: auto !important;
    bottom: 160px !important;

    transform: translateX(-50%) !important;

    width: min(820px, calc(100% - 32px)) !important;
    max-width: 820px !important;

    margin: 0 !important;
    z-index: 9999 !important;

    box-sizing: border-box !important;
}

@media (max-width: 760px) {
    .mma-frontend .mma-collection-main .mma-collection-player {
        width: calc(100% - 24px) !important;
        bottom: 100px !important;
    }
}


/* =========================================================
   COLLECTION PLAYER - ABSOLUTE FINAL OVERRIDE
   Must behave like the working movie player.
   ========================================================= */

.mma-frontend .mma-collection-main .mma-collection-player {
    position: fixed !important;
    top: auto !important;
    right: auto !important;
    bottom: 160px !important;
    left: 50% !important;

    transform: translateX(-50%) !important;

    width: min(820px, calc(100% - 32px)) !important;
    max-width: 820px !important;

    margin: 0 !important;
    z-index: 9999 !important;

    box-sizing: border-box !important;
}

@media (max-width: 760px) {
    .mma-frontend .mma-collection-main .mma-collection-player {
        width: calc(100% - 24px) !important;
        bottom: 100px !important;
    }
}
