.lac-player {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 16px;
    padding: 20px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    box-shadow: 0 8px 32px rgba(31, 38, 135, 0.15);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    transition: all 0.3s ease;
    display: flex;
    gap: 20px;
    align-items: center;
}

.lac-player:hover {
    background: rgba(255, 255, 255, 0.12);
    box-shadow: 0 12px 40px rgba(31, 38, 135, 0.2);
}

.lac-content {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.lac-header {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.lac-title {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
    color: inherit;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.lac-counter {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    opacity: 0.85;
}

.lac-counter-icon {
    font-size: 16px;
}

.lac-play-count {
    font-weight: 700;
    transition: transform 0.3s ease;
}

.lac-controls {
    display: flex;
    align-items: center;
    gap: 12px;
}

.lac-play-btn {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border: none;
    border-radius: 50%;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.lac-play-btn:hover {
    transform: scale(1.08);
    background: rgba(255, 255, 255, 1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.lac-play-btn:active {
    transform: scale(0.95);
}

.lac-play-icon,
.lac-pause-icon {
    font-size: 18px;
    color: #333;
}

.lac-progress-container {
    flex: 1;
    min-width: 0;
}

.lac-progress-bar {
    background: rgba(255, 255, 255, 0.3);
    height: 6px;
    border-radius: 3px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(5px);
}

.lac-progress-fill {
    background: rgba(255, 255, 255, 0.95);
    height: 100%;
    width: 0%;
    border-radius: 3px;
    transition: width 0.1s linear;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.6);
}

.lac-time {
    display: flex;
    justify-content: space-between;
    font-size: 11px;
    margin-top: 6px;
    opacity: 0.75;
    font-weight: 500;
}

.lac-volume-control {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

.lac-volume-icon {
    font-size: 18px;
    cursor: pointer;
    transition: transform 0.2s;
}

.lac-volume-icon:hover {
    transform: scale(1.1);
}

.lac-volume-slider {
    width: 70px;
    height: 4px;
    -webkit-appearance: none;
    appearance: none;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 2px;
    outline: none;
}

.lac-volume-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

.lac-volume-slider::-moz-range-thumb {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    cursor: pointer;
    border: none;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

.lac-cover {
    flex-shrink: 0;
    width: 120px;
    height: 120px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
    background: rgba(255, 255, 255, 0.1);
    order: 2;
}

.lac-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Responsive */
@media (max-width: 768px) {
    .lac-player {
        flex-direction: column;
        gap: 15px;
    }
    
    .lac-cover {
        order: 0;
        width: 100%;
        height: 200px;
    }
    
    .lac-content {
        width: 100%;
    }
}

@media (max-width: 600px) {
    .lac-player {
        padding: 15px;
    }
    
    .lac-title {
        font-size: 16px;
    }
    
    .lac-volume-control {
        display: none;
    }
    
    .lac-play-btn {
        width: 44px;
        height: 44px;
    }
    
    .lac-cover {
        height: 180px;
    }
}

@media (max-width: 400px) {
    .lac-title {
        font-size: 14px;
    }
    
    .lac-counter {
        font-size: 12px;
    }
    
    .lac-cover {
        height: 160px;
    }
}
.lac-icon {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

.lac-icon-pause {
    display: none;
}

.lac-player.is-playing .lac-icon-play {
    display: none;
}

.lac-player.is-playing .lac-icon-pause {
    display: inline;
}
.lac-player {
    font-family: 'ABeeZee', -apple-system, BlinkMacSystemFont,
                 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    color: #ffffff;
}