.emp-music-player {
    --emp-accent-soft: rgba(201, 164, 92, 0.16);
    position: relative;
    width: 100%;
}

.emp-music-card {
    position: relative;
    overflow: hidden;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding: 34px 30px;
    border: 1px solid rgba(201, 164, 92, 0.25);
    border-radius: 28px;
    background: #fffaf4;
    box-shadow: 0 20px 55px rgba(72, 52, 31, 0.11);
}

.emp-music-card::before,
.emp-music-card::after {
    content: '';
    position: absolute;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(201, 164, 92, 0.18), rgba(201, 164, 92, 0));
    pointer-events: none;
}

.emp-music-card::before {
    top: -85px;
    left: -70px;
}

.emp-music-card::after {
    right: -85px;
    bottom: -95px;
}

.emp-ornament {
    position: absolute;
    inset: 14px;
    border: 1px solid rgba(201, 164, 92, 0.16);
    border-radius: inherit;
    pointer-events: none;
}

.emp-content {
    position: relative;
    z-index: 2;
}

.emp-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    margin-bottom: 12px;
    border-radius: 50%;
    background: rgba(201, 164, 92, 0.12);
    color: #c9a45c;
    font-size: 24px;
    line-height: 1;
}

.emp-title {
    margin: 0 0 8px;
    color: #3b3026;
    font-size: 26px;
    font-weight: 600;
    line-height: 1.2;
}

.emp-subtitle {
    max-width: 460px;
    margin: 0 auto 22px;
    color: rgba(59, 48, 38, 0.72);
    font-size: 15px;
    line-height: 1.7;
}

.emp-play-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 46px;
    padding: 13px 26px;
    border: 0;
    border-radius: 999px;
    background: #c9a45c;
    color: #ffffff;
    cursor: pointer;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.02em;
    line-height: 1;
    box-shadow: 0 12px 28px rgba(201, 164, 92, 0.32);
    transition: transform 0.25s ease, box-shadow 0.25s ease, opacity 0.25s ease;
}

.emp-play-button:hover,
.emp-play-button:focus {
    transform: translateY(-2px);
    box-shadow: 0 16px 34px rgba(201, 164, 92, 0.42);
    outline: none;
}

.emp-button-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 16px;
    font-size: 13px;
}

.emp-progress-wrap {
    max-width: 420px;
    margin: 22px auto 0;
}

.emp-progress-bar {
    width: 100%;
    height: 7px;
    overflow: hidden;
    border-radius: 999px;
    background: rgba(59, 48, 38, 0.12);
    cursor: pointer;
}

.emp-progress-bar span {
    display: block;
    width: 0;
    height: 100%;
    border-radius: inherit;
    background: #c9a45c;
    transition: width 0.12s linear;
}

.emp-time {
    display: flex;
    justify-content: space-between;
    margin-top: 8px;
    color: #c9a45c;
    font-size: 12px;
    opacity: 0.9;
}

.emp-native-audio {
    width: 100%;
    max-width: 420px;
    margin-top: 18px;
}

.emp-empty-notice {
    padding: 18px 20px;
    border: 1px dashed rgba(201, 164, 92, 0.6);
    border-radius: 16px;
    background: rgba(201, 164, 92, 0.08);
    color: #3b3026;
    text-align: center;
}

.emp-background-mode .emp-music-card {
    display: none;
}

.emp-floating-button {
    position: fixed;
    z-index: 9999;
    right: 24px;
    bottom: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 58px;
    height: 58px;
    border: 0;
    border-radius: 50%;
    background: #c9a45c;
    color: #fff;
    cursor: pointer;
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.18);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.emp-floating-button::before {
    content: '';
    position: absolute;
    inset: -7px;
    border: 1px solid rgba(201, 164, 92, 0.42);
    border-radius: inherit;
}

.emp-floating-button:hover,
.emp-floating-button:focus {
    transform: translateY(-2px) scale(1.03);
    outline: none;
}

.emp-floating-icon {
    font-size: 24px;
    line-height: 1;
}

.emp-is-playing .emp-icon,
.emp-is-playing .emp-floating-button {
    animation: empSoftPulse 1.8s ease-in-out infinite;
}

@keyframes empSoftPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.055); }
}

@media (max-width: 767px) {
    .emp-music-card {
        padding: 28px 22px;
    }

    .emp-title {
        font-size: 22px;
    }

    .emp-floating-button {
        right: 16px;
        bottom: 16px;
        width: 52px;
        height: 52px;
    }
}
