/* Estilos para Comentários e Seguidores */

.avatar-comentario {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--text-light) 0%, #c44569 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1.1rem;
    text-transform: uppercase;
}

.comentario-item {
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.comentario-item:hover {
    background: rgba(255, 255, 255, 0.02);
    border-radius: 8px;
    padding: 8px;
    margin: -8px;
}

/* Estatísticas da rádio */
.border.rounded {
    transition: all 0.3s ease;
}

.border.rounded:hover {
    background: rgba(233, 69, 96, 0.1);
    border-color: var(--text-light) !important;
    transform: translateY(-2px);
}

/* Layout específico - Glass */
body.layout-glass .avatar-comentario {
    background: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

body.layout-glass .comentario-item:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* Layout específico - Dark Pro */
body.layout-dark-pro .comentario-item:hover {
    background: #282828;
}

/* Layout específico - Classic Clean */
body.layout-classic-clean .comentario-item:hover {
    background: #f8f9fa;
}

body.layout-classic-clean .avatar-comentario {
    background: #1a73e8;
}

