/* Favorites System Styles */

.cover__favorite {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(0, 0, 0, 0.6);
    border: none;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.cover__favorite:hover {
    background: rgba(0, 0, 0, 0.8);
    transform: scale(1.1);
}

.cover__favorite.active {
    background: #dc3545;
}

.cover__favorite i {
    font-size: 18px;
}

/* Player controls */
.player-controls {
    display: flex;
    align-items: center;
    gap: 15px;
}

.player-controls button {
    background: transparent;
    border: none;
    color: inherit;
    font-size: 20px;
    cursor: pointer;
    padding: 8px;
    transition: all 0.3s ease;
}

.player-controls button:hover {
    opacity: 0.7;
    transform: scale(1.1);
}

#volume-slider {
    width: 100px;
}

/* Fullscreen player */
#player_container.fullscreen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 9999;
    background: rgba(0, 0, 0, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
}

#player_container.fullscreen .cover__image img {
    max-width: 500px;
    max-height: 500px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

/* Comments section */
.comment-item {
    transition: background-color 0.2s ease;
}

.comment-item:hover {
    background-color: rgba(0, 0, 0, 0.02);
}

.comment-actions .like-btn.liked {
    color: #dc3545;
    font-weight: 600;
}

/* Responsive */
@media (max-width: 768px) {
    .cover__favorite {
        width: 32px;
        height: 32px;
    }
    
    .cover__favorite i {
        font-size: 16px;
    }
    
    #volume-slider {
        width: 60px;
    }
}

