.mct-mt-wrapper {
    margin: 20px 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}


.mct-mt-list {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.mct-mt-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 12px;
    border-radius: 12px;
}

.mct-mt-item:hover {
    background: #f7f7f7;
}

.mct-mt-item-active {
    background: #f3f3f3;
}

.mct-mt-play-btn {
    cursor: pointer;
    border: none;
    background: transparent;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 12px;
    text-align: left;
}

.mct-mt-cover img {
    width: 56px;
    height: 56px;
    border-radius: 8px;
    object-fit: cover;
    display: block;
}

.mct-mt-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.mct-mt-title {
    font-weight: 600;
    font-size: 16px;
    line-height: 1.1;
}

.mct-mt-artist {
    font-size: 13px;
    color: #777;
    margin-top: 4px;
}

.mct-mt-right {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 13px;
    color: #999;
}

.mct-mt-duration-cell {
    min-width: 48px;
    text-align: right;
}

.mct-mt-download-link {
    text-decoration: none;
}

.mct-mt-download-icon {
    width: 20px;
    height: 20px;
    display: block;
}

.mct-mt-download-text {
    color: #00a3d9;
}


.mct-mt-load-more-wrap {
    margin-top: 10px;
    text-align: center;
}

.mct-mt-load-more {
    padding: 6px 16px;
    border-radius: 999px;
    border: none;
    background: #f0f0f0;
    cursor: pointer;
    font-size: 14px;
}

.mct-mt-load-more:hover {
    background: #e0e0e0;
}


.mct-mt-bottom-player {
    position: fixed;
    left: 0;
    right: 0;
    bottom: -100px;
    height: 72px;
    background: #ffffff;
    box-shadow: 0 -2px 6px rgba(0,0,0,0.08);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px 8px;
    z-index: 9999;
    transition: bottom 0.25s ease-in-out;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.mct-mt-bottom-player-active {
    bottom: 0;
}

.mct-mt-bottom-left {
    display: flex;
    align-items: center;
    gap: 10px;
}

.mct-mt-bottom-cover img {
    width: 48px;
    height: 48px;
    object-fit: cover;
    border-radius: 4px;
    display: block;
}

.mct-mt-bottom-info {
    display: flex;
    flex-direction: column;
}

.mct-mt-bottom-title {
    font-weight: 600;
    font-size: 14px;
}

.mct-mt-bottom-artist {
    font-size: 12px;
    color: #777;
    margin-top: 2px;
}

.mct-mt-bottom-center {
    display: flex;
    align-items: center;
    gap: 12px;
}

.mct-mt-bottom-prev,
.mct-mt-bottom-play,
.mct-mt-bottom-next {
    border: none;
    background: transparent;
    cursor: pointer;
    padding: 0;
}

.mct-mt-bottom-prev-icon,
.mct-mt-bottom-play-icon,
.mct-mt-bottom-next-icon {
    display: block;
}

.mct-mt-bottom-right {
    min-width: 160px;
}

.mct-mt-bottom-volume {
    width: 100%;
}



.mct-mt-cover {
    position: relative;
    overflow: hidden;
}

.mct-mt-badge {
    position: absolute;
    top: 0;
    left: 0;
    width: 56px;
    height: 56px;
    background: #ff0000;
    transform: translate(-58%, -58%) rotate(-45deg);
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}

.mct-mt-badge-inner {
    font-size: 8px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #ffffff;
    transform: rotate(0deg) translateY(20px);
}

.mct-mt-item .mct-mt-cover,
.mct-mt-bottom-cover {
    position: relative;
}

.mct-mt-item.mct-mt-item-active .mct-mt-cover::before {
    border-radius: 5px !important;

    content: "";
    position: absolute;
    top: 2px;
    left: 2px;
    right: 2px;
    bottom: 2px;
    border-radius: 50%;
    border: 2px solid var(--mct-cover-ring-color, #00ff66);
    box-sizing: border-box;
    animation: mct-mt-cover-ring-spin 2s linear infinite;
    pointer-events: none;
}



.mct-mt-bottom-player {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
}

.mct-mt-progress-wrapper {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    height: 4px;
    background: rgba(0, 0, 0, 0.08);
    overflow: visible;
}

.mct-mt-progress-bar {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0;
    background-color: var(--mct-waveform-color, #ff0000);
}

.mct-mt-progress-time {
    position: absolute;
    right: 12px;
    top: 6px;
    font-size: 11px;
    color: var(--mct-time-color, #333333);
}

.mct-mt-bottom-right {
    min-width: 160px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.mct-mt-bottom-volume {
    width: 100%;
    accent-color: var(--mct-volume-color, #007bff);
}

.mct-mt-bottom-cover::before {
    display: none !important;
}

.mct-mt-bottom-player {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    height: 72px;
    background: #ffffff;
    box-shadow: 0 - 2px 6px rgba(0,0,0,0.08);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px 8px;
    z-index: 9999;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.mct-mt-bottom-left {
    display: flex;
    align-items: center;
    gap: 10px;

    min-width: 0;
    max-width: calc(50% - 120px);
    overflow: hidden;
}

.mct-mt-bottom-cover img {
    width: 48px;
    height: 48px;
    object-fit: cover;
    border-radius: 4px;
    display: block;
}

.mct-mt-bottom-info {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.mct-mt-bottom-title {
    font-weight: 600;
    font-size: 14px;

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

.mct-mt-bottom-artist {
    font-size: 12px;
    color: #777;
    margin-top: 2px;

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

.mct-mt-bottom-center {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);

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

    flex-shrink: 0;
}

.mct-mt-bottom-prev,
.mct-mt-bottom-play,
.mct-mt-bottom-next {
    border: none;
    background: transparent;
    cursor: pointer;
    padding: 0;
}

.mct-mt-bottom-prev-icon,
.mct-mt-bottom-play-icon,
.mct-mt-bottom-next-icon {
    display: block;
}

.mct-mt-bottom-right {
    min-width: 160px;
    max-width: calc(50% - 120px);
    display: flex;
    justify-content: flex-end;
    align-items: center;
    overflow: hidden;
}

.mct-mt-bottom-volume {
    width: 100%;
    accent-color: var(--mct-volume-color, #007bff);
}

.mct-mt-progress-wrapper {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    height: 4px;
    background: rgba(0, 0, 0, 0.08);
    overflow: visible;
}

.mct-mt-progress-bar {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0;
    background-color: var(--mct-waveform-color, #ff0000);
}

.mct-mt-progress-time {
    position: absolute;
    right: 12px;
    top: 6px;
    font-size: 11px;
    color: var(--mct-time-color, #333333);
}



.mct-mt-topbar {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 8px;
}

.mct-mt-topbar-right {
    display: flex;
    justify-content: flex-end;
}

.mct-mt-search {
    min-width: 220px;
    padding: 6px 12px;
    border-radius: 999px;
    border: 1px solid #ddd;
    font-size: 14px;
    outline: none;
}

.mct-mt-search:focus {
    border-color: #00a3d9;
    box-shadow: 0 0 0 1px rgba(0,163,217,0.25);
}


@media (max-width: 600px) {
    .mct-mt-wrapper {
        margin: 12px 0;
    }

    .mct-mt-item {
        padding: 8px 10px;
        border-radius: 10px;
    }

    .mct-mt-cover img {
        width: 44px;
        height: 44px;
        border-radius: 6px;
    }

    .mct-mt-title {
        font-size: 14px;
    }

    .mct-mt-artist {
        font-size: 11px;
    }

    .mct-mt-right {
        gap: 8px;
        font-size: 12px;
    }

    .mct-mt-duration-cell {
        min-width: 40px;
        font-size: 11px;
    }

    .mct-mt-topbar {
        justify-content: stretch;
    }

    .mct-mt-topbar-right {
        width: 100%;
    }

    .mct-mt-search {
        min-width: 0;
        width: 100%;
        font-size: 13px;
    }

    .mct-mt-bottom-player {
        padding: 10px 12px 6px;
        height: auto;
    }

    .mct-mt-bottom-left {
        max-width: 60%;
        gap: 8px;
    }

    .mct-mt-bottom-cover img {
        width: 40px;
        height: 40px;
    }

    .mct-mt-bottom-title {
        font-size: 13px;
    }

    .mct-mt-bottom-artist {
        font-size: 11px;
    }

    .mct-mt-bottom-center {
        gap: 10px;
    }

    .mct-mt-bottom-right {
        display: none;
    }

    .mct-mt-progress-time {
        font-size: 10px;
        right: 8px;
    }
}


.mct-mt-wrapper {
    padding-bottom: 80px;
}

.mct-mt-item {
    gap: 8px;
}

.mct-mt-play-btn {
    flex: 1;
    min-width: 0;
}

.mct-mt-text {
    min-width: 0;
}

.mct-mt-title,
.mct-mt-artist {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.mct-mt-title {
    color: #000000;
}

.mct-mt-artist {
    color: #777777;
}

.mct-mt-right {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

.mct-mt-duration-cell {
    min-width: 44px;
    text-align: right;
    font-variant-numeric: tabular-nums;
}

.mct-mt-download-icon {
    width: 20px;
    height: 20px;
    display: block;
    object-fit: contain;
}

.mct-mt-cover img,
.mct-mt-bottom-cover img {
    width: 56px;
    height: 56px;
    object-fit: cover;
    border-radius: 8px;
}

.mct-mt-bottom-player {
    position: fixed;
    left: 0;
    right: 0;
    bottom: -100px;
    height: 72px;
    background: #ffffff;
    box-shadow: 0 -2px 6px rgba(0,0,0,0.08);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px 8px;
    z-index: 9999;
    transition: bottom 0.25s ease-in-out;
}

.mct-mt-bottom-player-active {
    bottom: 0;
}

@media (max-width: 600px) {
    .mct-mt-wrapper {
        padding-bottom: 90px;
    }

    .mct-mt-cover img,
    .mct-mt-bottom-cover img {
        width: 44px;
        height: 44px;
        border-radius: 6px;
    }

    .mct-mt-title {
        font-size: 14px;
    }

    .mct-mt-artist {
        font-size: 11px;
    }

    .mct-mt-right {
        gap: 6px;
    }

    .mct-mt-duration-cell {
        min-width: 40px;
        font-size: 11px;
    }

    .mct-mt-bottom-right {
        display: none;
    }

    .mct-mt-bottom-player {
        padding: 10px 12px 6px;
        height: auto;
    }
}


.mct-mt-bottom-player {
    bottom: -100px !important;
}

.mct-mt-bottom-player.mct-mt-bottom-player-active {
    bottom: 0 !important;
}

.mct-mt-cover img,
.mct-mt-bottom-cover img {
    width: 56px !important;
    height: 56px !important;
    object-fit: cover;
    border-radius: 8px;
    display: block;
}

.mct-mt-title {
    color: #000000 !important;
}

.mct-mt-artist {
    color: #777777 !important;
}

.mct-mt-item {
    gap: 8px;
}

.mct-mt-play-btn {
    flex: 1;
    min-width: 0;
}

.mct-mt-text {
    min-width: 0;
}

.mct-mt-title,
.mct-mt-artist {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.mct-mt-right {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

.mct-mt-download-icon {
    width: 20px !important;
    height: 20px !important;
    object-fit: contain;
    display: block;
}

.mct-mt-wrapper {
    padding-bottom: 80px;
}

@media (max-width: 600px) {

    .mct-mt-wrapper {
        padding-bottom: 90px;
    }

    .mct-mt-bottom-player {
        flex-direction: column;
        align-items: stretch;
        padding: 8px 12px 6px;
        height: auto;
    }

    .mct-mt-bottom-left {
        display: flex;
        align-items: center;
        gap: 8px;
        max-width: 100%;
        margin-bottom: 4px;
    }

    .mct-mt-bottom-cover img {
        width: 44px !important;
        height: 44px !important;
        border-radius: 6px;
    }

    .mct-mt-bottom-info {
        min-width: 0;
    }

    .mct-mt-bottom-title {
        font-size: 13px;
    }

    .mct-mt-bottom-artist {
        font-size: 11px;
    }

    .mct-mt-bottom-title,
    .mct-mt-bottom-artist {
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .mct-mt-bottom-center {
        display: flex;
        justify-content: center;
        gap: 18px;
        margin-top: 4px;
    }

    .mct-mt-bottom-right {
        display: none !important;
    }
}


.mct-mt-cover {
    width: 56px !important;
    height: 56px !important;
    flex: 0 0 56px !important;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.mct-mt-bottom-cover {
    width: 56px !important;
    height: 56px !important;
    flex: 0 0 56px !important;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.mct-mt-cover img,
.mct-mt-bottom-cover img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover;
    display: block;
}

@media (max-width: 600px) {

    .mct-mt-bottom-player {
        display: flex !important;
        flex-direction: column !important;
        align-items: stretch !important;
        padding: 8px 12px 6px !important;
        height: auto !important;
    }

    .mct-mt-bottom-left {
        display: flex !important;
        align-items: center !important;
        gap: 8px !important;
        max-width: 100% !important;
        margin-bottom: 4px !important;
    }

    .mct-mt-bottom-center {
        display: flex !important;
        justify-content: center !important;
        gap: 18px !important;
        margin-top: 4px !important;
    }

    .mct-mt-bottom-info {
        min-width: 0 !important;
    }

    .mct-mt-bottom-title,
    .mct-mt-bottom-artist {
        white-space: nowrap !important;
        overflow: hidden !important;
        text-overflow: ellipsis !important;
    }

    .mct-mt-bottom-right {
        display: none !important;
    }
}


@media (max-width: 600px) {
    .mct-mt-bottom-player {
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: wrap !important;
        align-items: flex-start !important;
    }

    .mct-mt-bottom-left {
        order: 1 !important;
        flex: 0 0 100% !important;
        margin-bottom: 4px !important;
    }

    .mct-mt-bottom-center {
        order: 2 !important;
        flex: 0 0 100% !important;
        display: flex !important;
        justify-content: center !important;
        margin-top: 4px !important;
    }

    .mct-mt-bottom-right {
        display: none !important;
    }
}


@media (max-width: 600px) {
    .mct-mt-bottom-player {
        display: flex !important;
        flex-direction: column !important;
        align-items: stretch !important;
        justify-content: flex-start !important;
        padding: 8px 12px 6px !important;
        height: auto !important;
    }

    .mct-mt-bottom-left {
        order: 1 !important;
        display: flex !important;
        align-items: center !important;
        gap: 8px !important;
        width: 100% !important;
        margin-bottom: 4px !important;
    }

    .mct-mt-bottom-center {
        order: 2 !important;
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
        gap: 18px !important;
        width: 100% !important;
        margin-top: 4px !important;
    }

    .mct-mt-bottom-right {
        display: none !important;
    }

    .mct-mt-bottom-info {
        min-width: 0 !important;
    }

    .mct-mt-bottom-title,
    .mct-mt-bottom-artist {
        white-space: nowrap !important;
        overflow: hidden !important;
        text-overflow: ellipsis !important;
    }
}


.mct-mt-bottom-main {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

@media (max-width: 600px) {
    .mct-mt-bottom-main {
        flex-direction: column;
        align-items: stretch;
    }
}


@media (max-width: 600px) {

    .mct-mt-bottom-center {
        position: static !important;
        left: auto !important;
        top: auto !important;
        transform: none !important;
    }

    .mct-mt-bottom-player {
        display: flex !important;
        flex-direction: column !important;
        align-items: stretch !important;
        justify-content: flex-start !important;
        padding: 8px 12px 14px !important;
        height: auto !important;
    }

    .mct-mt-bottom-left {
        order: 1 !important;
        display: flex !important;
        align-items: center !important;
        gap: 8px !important;
        width: 100% !important;
        margin-bottom: 4px !important;
    }

    .mct-mt-bottom-center {
        order: 2 !important;
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
        gap: 18px !important;
        width: 100% !important;
        margin-top: 4px !important;
    }

    .mct-mt-bottom-right {
        display: none !important;
    }
}


.mct-mt-bottom-player {
    bottom: -200px !important;
}

.mct-mt-bottom-player.mct-mt-bottom-player-active {
    bottom: 0 !important;
}

@media (min-width: 601px) {
    .mct-mt-progress-time {
        top: 12px !important;  
        right: 24px !important; 
    }
}

@media (max-width: 600px) {
    .mct-mt-progress-time {
        top: 18px !important;
		right: 24px !important;
    }
}