/* Favorite Button Styles */
.favorite-btn {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    width: 32px;
    height: 32px;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: #fff;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
}

.favorite-btn:hover {
    background: rgba(255, 140, 0, 0.8);
    border-color: #ff8c00;
    transform: scale(1.1);
}

.favorite-btn.active {
    background: linear-gradient(135deg, #ff8c00 0%, #ffa520 100%);
    border-color: #ff8c00;
}

.channel-item {
    position: relative;
}
